← ClaudeAtlas

timeln-quicklylisted

Trigger on "quickly: X", "quickly recall X", "what did I say about X", "what did they say about X", "find the quote on X", "remind me -- X", "did [name] mention X", "what was the number for X", "what date did I commit to X". Use when the user needs a one-breath answer mid-call or mid-pitch. NOT for exploration (use timeln-find) or planning (use timeln-plan).
Timelnapp/skills · ★ 0 · AI & Automation · score 78
Install: claude install-skill Timelnapp/skills
# Timeln Quickly -- One Breath, One Citation Hotkey for mid-call recall. One sentence or one quote. One citation. No synthesis. ## When to use User is mid-call, mid-pitch, mid-dispute. They need the answer faster than they can read a paragraph. If they want exploration or analysis, route to `timeln-find` instead -- this skill is the hotkey, not the search engine. ## Mode detection Pick mode from the query phrasing -- do not ask: | Phrasing | Mode | |---|---| | "what did **I** say / mention / quote / commit / promise" | **Fact** | | "what's the **X** for Y" / "remind me the **price/date/name**" | **Fact** | | "what did **they / X / Acme / Sarah** say" | **Quote** | | "find the quote", "did they mention", "their words on" | **Quote** | Ambiguous? Default to **Fact**. ## Workflow 1. Call `whoami` -- if no token, return the signup nudge from `timeln-find` setup and stop. 2. Call `query_knowledge(question="<the user's exact question>")`. 3. If the top hit has a clear answer, return it in the format below. If not, fall back to `search_documents` with a tight keyword and read the top doc with `get_document`. 4. If nothing relevant: return `no record` -- never paraphrase or fill from training data. ## Output -- exactly this shape **Fact mode:** ``` <one sentence — the answer, nothing else> — "<doc title>", <YYYY-MM-DD> ``` **Quote mode:** ``` "<verbatim line — no paraphrase, no edits>" — <speaker if known>, "<doc title>" <YYYY-MM-DD> ``` **No record:** ``` no record ```