[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-cline-cline-session-history":3,"mdc--3tw42w-key":33,"related-org-cline-cline-session-history":1441,"related-repo-cline-cline-session-history":1631},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"cline-session-history","search and browse Cline session history","Search and browse Cline session history. Use when the user asks to find, list, inspect, or export Cline sessions by time period, prompt content, status, model, provider, source, mode, workspace, or other criteria. Also use when the user wants to read a session transcript or export sessions to a directory. Trigger phrases include \"find my session\", \"search my session history\", \"show me past sessions\", \"what was that session where\", \"find the session that started with\", and any mention of past Cline conversations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"cline","Cline","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fcline.png",[12,16,19],{"name":13,"slug":14,"type":15},"Productivity","productivity","tag",{"name":17,"slug":18,"type":15},"History","history",{"name":20,"slug":21,"type":15},"Agents","agents",10,"https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills","2026-07-19T06:03:13.945151",null,4,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"A collection of skills used at Cline","https:\u002F\u002Fgithub.com\u002Fcline\u002Fskills\u002Ftree\u002FHEAD\u002Fskills\u002Fcline-session-search","---\nname: cline-session-history\ndescription: Search and browse Cline session history. Use when the user asks to find, list, inspect, or export Cline sessions by time period, prompt content, status, model, provider, source, mode, workspace, or other criteria. Also use when the user wants to read a session transcript or export sessions to a directory. Trigger phrases include \"find my session\", \"search my session history\", \"show me past sessions\", \"what was that session where\", \"find the session that started with\", and any mention of past Cline conversations.\n---\n\n# Cline Session History\n\nSearch and browse Cline session history stored on the local machine. Sessions live in `~\u002F.cline\u002Fdata\u002Fsessions\u002F` as individual JSON metadata files and conversation transcript (`.messages.json`) files. Older sessions may also be in a `sessions.db` SQLite database.\n\n## When to Use This Skill\n\n- \"Find my session from the last hour about...\"\n- \"Find my session that started with this prompt...\"\n- \"Find the session where I asked about...\"\n- \"Show me sessions that used model X\"\n- \"What sessions failed yesterday?\"\n- \"Show me the transcript for session \u003Cid>\"\n- \"Export sessions from last week to a folder\"\n- \"What was that session where...\"\n- Any request involving past Cline conversation history\n\n## How to Use\n\nThe search script lives alongside this file at `scripts\u002Fsearch_sessions.py`, relative to the skill's own directory. Resolve it against the directory that contains this `SKILL.md` — **not** the current working directory — so it works regardless of where the command is run from.\n\n**Script path:** `scripts\u002Fsearch_sessions.py` (relative to this skill's directory)\n\nThe examples below use `scripts\u002Fsearch_sessions.py`; prefix it with the skill directory's absolute path when running from elsewhere.\n\nAll filters are optional and combine with AND logic.\n\n### Quick Examples\n\n```sh\n# Sessions from the last 10 minutes\npython3 scripts\u002Fsearch_sessions.py --since 10m\n\n# Sessions between two dates with \"chatgpt\" in the prompt\npython3 scripts\u002Fsearch_sessions.py --since 2026-06-01 --until 2026-06-21 --prompt chatgpt\n\n# Find a session by its starting prompt (quoted substring match)\npython3 scripts\u002Fsearch_sessions.py --since 1d --prompt \"find some code that should be improved\" --full-prompt\n\n# Non-interactive sessions that failed\npython3 scripts\u002Fsearch_sessions.py --no-interactive --status failed\n\n# VS Code extension sessions using Claude models, full prompts\npython3 scripts\u002Fsearch_sessions.py --source vscode --model \"claude\" --full-prompt\n\n# Full transcript of a specific session\npython3 scripts\u002Fsearch_sessions.py --session-id 1781991507587_pozk0 --transcript\n\n# Export matching sessions to a directory\npython3 scripts\u002Fsearch_sessions.py --since 1d --export ~\u002Ftmp\u002Fexported-sessions\n```\n\n### Time Filters\n\nBoth `--since` and `--until` accept:\n\n- **Relative**: `10m`, `30min`, `2h`, `1d`, `1w` (minutes, hours, days, weeks)\n- **ISO 8601**: `2026-06-20`, `2026-06-20T21:30:00Z`, `2026-06-20T21:30:00+00:00`\n\n### All Available Filters\n\n| Filter | Description |\n|--------|-------------|\n| `--since \u003Ctime>` | Sessions started after this time |\n| `--until \u003Ctime>` | Sessions started before this time |\n| `--prompt \u003Ctext>` | Case-insensitive substring search in prompt |\n| `--prompt-regex \u003Cpattern>` | Regex search in prompt (case-insensitive) |\n| `--status \u003Cstatus>` | `running`, `idle`, `completed`, `cancelled`, `failed` |\n| `--source \u003Csource>` | `cli`, `vscode`, etc. (exact match) |\n| `--provider \u003Cname>` | Provider name, exact match (e.g. `cline`) |\n| `--model \u003Ctext>` | Model name substring, case-insensitive (e.g. `claude`) |\n| `--mode \u003Cmode>` | `plan` or `act` |\n| `--cwd \u003Cpath>` | Working directory substring match |\n| `--session-id \u003Cid>` | Exact session ID lookup |\n| `--interactive` \u002F `--no-interactive` | Filter by interactive flag |\n| `--team-only` \u002F `--no-team` | Filter by team session flag |\n| `--subagents` \u002F `--no-subagents` | Include\u002Fexclude subagent sessions |\n\n### Output Options\n\n| Option | Description |\n|--------|-------------|\n| `--full-prompt` | Show full prompt text instead of truncated |\n| `--transcript` | Print full conversation transcript |\n| `--max-messages \u003Cn>` | Limit messages in transcript output |\n| `--content-types \u003Ctypes>` | Comma-separated: `text,thinking,tool_use,tool_result,image` |\n| `--export \u003Cdir>` | Copy matching session files to a directory |\n| `--limit \u003Cn>` | Max number of sessions to return |\n| `--json` | Output as JSON |\n\n### Data Source Options\n\n| Option | Description |\n|--------|-------------|\n| `--sessions-dir \u003Cpath>` | Custom sessions directory (default: `~\u002F.cline\u002Fdata\u002Fsessions`) |\n| `--db-path \u003Cpath>` | Custom sessions.db path |\n| `--no-db` | Skip SQLite DB, only scan JSON files |\n\n## Workflow\n\n1. Start by running the search with the user's criteria to get a list of matching sessions.\n2. If the user wants to see details, use `--full-prompt` or `--transcript`.\n3. For transcript inspection, consider `--max-messages` and `--content-types` to focus on relevant parts.\n4. For bulk export, use `--export \u003Cdir>` to copy session files.\n\n## Session Data Structure\n\nEach session on disk has:\n- `\u003Csession_id>.json` — Metadata: session_id, started_at, status, source, provider, model, cwd, prompt, metadata (mode, systemPrompt, cost, usage), etc.\n- `\u003Csession_id>.messages.json` — Full conversation transcript with messages containing content blocks (text, thinking, tool_use, tool_result, image).\n\nThe SQLite `sessions.db` may contain older sessions with similar fields plus `transcript_path`, `hook_path`, `parent_session_id`, `agent_id`, `is_subagent`.\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,46,77,84,140,146,175,192,204,209,216,581,587,608,687,693,1051,1057,1203,1209,1287,1293,1352,1358,1363,1388,1435],{"type":39,"tag":40,"props":41,"children":42},"element","h1",{"id":4},[43],{"type":44,"value":45},"text","Cline Session History",{"type":39,"tag":47,"props":48,"children":49},"p",{},[50,52,59,61,67,69,75],{"type":44,"value":51},"Search and browse Cline session history stored on the local machine. Sessions live in ",{"type":39,"tag":53,"props":54,"children":56},"code",{"className":55},[],[57],{"type":44,"value":58},"~\u002F.cline\u002Fdata\u002Fsessions\u002F",{"type":44,"value":60}," as individual JSON metadata files and conversation transcript (",{"type":39,"tag":53,"props":62,"children":64},{"className":63},[],[65],{"type":44,"value":66},".messages.json",{"type":44,"value":68},") files. Older sessions may also be in a ",{"type":39,"tag":53,"props":70,"children":72},{"className":71},[],[73],{"type":44,"value":74},"sessions.db",{"type":44,"value":76}," SQLite database.",{"type":39,"tag":78,"props":79,"children":81},"h2",{"id":80},"when-to-use-this-skill",[82],{"type":44,"value":83},"When to Use This Skill",{"type":39,"tag":85,"props":86,"children":87},"ul",{},[88,94,99,104,109,114,125,130,135],{"type":39,"tag":89,"props":90,"children":91},"li",{},[92],{"type":44,"value":93},"\"Find my session from the last hour about...\"",{"type":39,"tag":89,"props":95,"children":96},{},[97],{"type":44,"value":98},"\"Find my session that started with this prompt...\"",{"type":39,"tag":89,"props":100,"children":101},{},[102],{"type":44,"value":103},"\"Find the session where I asked about...\"",{"type":39,"tag":89,"props":105,"children":106},{},[107],{"type":44,"value":108},"\"Show me sessions that used model X\"",{"type":39,"tag":89,"props":110,"children":111},{},[112],{"type":44,"value":113},"\"What sessions failed yesterday?\"",{"type":39,"tag":89,"props":115,"children":116},{},[117,119],{"type":44,"value":118},"\"Show me the transcript for session ",{"type":39,"tag":120,"props":121,"children":122},"id",{},[123],{"type":44,"value":124},"\"",{"type":39,"tag":89,"props":126,"children":127},{},[128],{"type":44,"value":129},"\"Export sessions from last week to a folder\"",{"type":39,"tag":89,"props":131,"children":132},{},[133],{"type":44,"value":134},"\"What was that session where...\"",{"type":39,"tag":89,"props":136,"children":137},{},[138],{"type":44,"value":139},"Any request involving past Cline conversation history",{"type":39,"tag":78,"props":141,"children":143},{"id":142},"how-to-use",[144],{"type":44,"value":145},"How to Use",{"type":39,"tag":47,"props":147,"children":148},{},[149,151,157,159,165,167,173],{"type":44,"value":150},"The search script lives alongside this file at ",{"type":39,"tag":53,"props":152,"children":154},{"className":153},[],[155],{"type":44,"value":156},"scripts\u002Fsearch_sessions.py",{"type":44,"value":158},", relative to the skill's own directory. Resolve it against the directory that contains this ",{"type":39,"tag":53,"props":160,"children":162},{"className":161},[],[163],{"type":44,"value":164},"SKILL.md",{"type":44,"value":166}," — ",{"type":39,"tag":168,"props":169,"children":170},"strong",{},[171],{"type":44,"value":172},"not",{"type":44,"value":174}," the current working directory — so it works regardless of where the command is run from.",{"type":39,"tag":47,"props":176,"children":177},{},[178,183,185,190],{"type":39,"tag":168,"props":179,"children":180},{},[181],{"type":44,"value":182},"Script path:",{"type":44,"value":184}," ",{"type":39,"tag":53,"props":186,"children":188},{"className":187},[],[189],{"type":44,"value":156},{"type":44,"value":191}," (relative to this skill's directory)",{"type":39,"tag":47,"props":193,"children":194},{},[195,197,202],{"type":44,"value":196},"The examples below use ",{"type":39,"tag":53,"props":198,"children":200},{"className":199},[],[201],{"type":44,"value":156},{"type":44,"value":203},"; prefix it with the skill directory's absolute path when running from elsewhere.",{"type":39,"tag":47,"props":205,"children":206},{},[207],{"type":44,"value":208},"All filters are optional and combine with AND logic.",{"type":39,"tag":210,"props":211,"children":213},"h3",{"id":212},"quick-examples",[214],{"type":44,"value":215},"Quick Examples",{"type":39,"tag":217,"props":218,"children":223},"pre",{"className":219,"code":220,"language":221,"meta":222,"style":222},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Sessions from the last 10 minutes\npython3 scripts\u002Fsearch_sessions.py --since 10m\n\n# Sessions between two dates with \"chatgpt\" in the prompt\npython3 scripts\u002Fsearch_sessions.py --since 2026-06-01 --until 2026-06-21 --prompt chatgpt\n\n# Find a session by its starting prompt (quoted substring match)\npython3 scripts\u002Fsearch_sessions.py --since 1d --prompt \"find some code that should be improved\" --full-prompt\n\n# Non-interactive sessions that failed\npython3 scripts\u002Fsearch_sessions.py --no-interactive --status failed\n\n# VS Code extension sessions using Claude models, full prompts\npython3 scripts\u002Fsearch_sessions.py --source vscode --model \"claude\" --full-prompt\n\n# Full transcript of a specific session\npython3 scripts\u002Fsearch_sessions.py --session-id 1781991507587_pozk0 --transcript\n\n# Export matching sessions to a directory\npython3 scripts\u002Fsearch_sessions.py --since 1d --export ~\u002Ftmp\u002Fexported-sessions\n","sh","",[224],{"type":39,"tag":53,"props":225,"children":226},{"__ignoreMap":222},[227,239,265,275,283,324,332,341,386,394,402,429,437,446,490,498,507,534,542,551],{"type":39,"tag":228,"props":229,"children":232},"span",{"class":230,"line":231},"line",1,[233],{"type":39,"tag":228,"props":234,"children":236},{"style":235},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[237],{"type":44,"value":238},"# Sessions from the last 10 minutes\n",{"type":39,"tag":228,"props":240,"children":242},{"class":230,"line":241},2,[243,249,255,260],{"type":39,"tag":228,"props":244,"children":246},{"style":245},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[247],{"type":44,"value":248},"python3",{"type":39,"tag":228,"props":250,"children":252},{"style":251},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[253],{"type":44,"value":254}," scripts\u002Fsearch_sessions.py",{"type":39,"tag":228,"props":256,"children":257},{"style":251},[258],{"type":44,"value":259}," --since",{"type":39,"tag":228,"props":261,"children":262},{"style":251},[263],{"type":44,"value":264}," 10m\n",{"type":39,"tag":228,"props":266,"children":268},{"class":230,"line":267},3,[269],{"type":39,"tag":228,"props":270,"children":272},{"emptyLinePlaceholder":271},true,[273],{"type":44,"value":274},"\n",{"type":39,"tag":228,"props":276,"children":277},{"class":230,"line":26},[278],{"type":39,"tag":228,"props":279,"children":280},{"style":235},[281],{"type":44,"value":282},"# Sessions between two dates with \"chatgpt\" in the prompt\n",{"type":39,"tag":228,"props":284,"children":286},{"class":230,"line":285},5,[287,291,295,299,304,309,314,319],{"type":39,"tag":228,"props":288,"children":289},{"style":245},[290],{"type":44,"value":248},{"type":39,"tag":228,"props":292,"children":293},{"style":251},[294],{"type":44,"value":254},{"type":39,"tag":228,"props":296,"children":297},{"style":251},[298],{"type":44,"value":259},{"type":39,"tag":228,"props":300,"children":301},{"style":251},[302],{"type":44,"value":303}," 2026-06-01",{"type":39,"tag":228,"props":305,"children":306},{"style":251},[307],{"type":44,"value":308}," --until",{"type":39,"tag":228,"props":310,"children":311},{"style":251},[312],{"type":44,"value":313}," 2026-06-21",{"type":39,"tag":228,"props":315,"children":316},{"style":251},[317],{"type":44,"value":318}," --prompt",{"type":39,"tag":228,"props":320,"children":321},{"style":251},[322],{"type":44,"value":323}," chatgpt\n",{"type":39,"tag":228,"props":325,"children":327},{"class":230,"line":326},6,[328],{"type":39,"tag":228,"props":329,"children":330},{"emptyLinePlaceholder":271},[331],{"type":44,"value":274},{"type":39,"tag":228,"props":333,"children":335},{"class":230,"line":334},7,[336],{"type":39,"tag":228,"props":337,"children":338},{"style":235},[339],{"type":44,"value":340},"# Find a session by its starting prompt (quoted substring match)\n",{"type":39,"tag":228,"props":342,"children":344},{"class":230,"line":343},8,[345,349,353,357,362,366,372,377,381],{"type":39,"tag":228,"props":346,"children":347},{"style":245},[348],{"type":44,"value":248},{"type":39,"tag":228,"props":350,"children":351},{"style":251},[352],{"type":44,"value":254},{"type":39,"tag":228,"props":354,"children":355},{"style":251},[356],{"type":44,"value":259},{"type":39,"tag":228,"props":358,"children":359},{"style":251},[360],{"type":44,"value":361}," 1d",{"type":39,"tag":228,"props":363,"children":364},{"style":251},[365],{"type":44,"value":318},{"type":39,"tag":228,"props":367,"children":369},{"style":368},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[370],{"type":44,"value":371}," \"",{"type":39,"tag":228,"props":373,"children":374},{"style":251},[375],{"type":44,"value":376},"find some code that should be improved",{"type":39,"tag":228,"props":378,"children":379},{"style":368},[380],{"type":44,"value":124},{"type":39,"tag":228,"props":382,"children":383},{"style":251},[384],{"type":44,"value":385}," --full-prompt\n",{"type":39,"tag":228,"props":387,"children":389},{"class":230,"line":388},9,[390],{"type":39,"tag":228,"props":391,"children":392},{"emptyLinePlaceholder":271},[393],{"type":44,"value":274},{"type":39,"tag":228,"props":395,"children":396},{"class":230,"line":22},[397],{"type":39,"tag":228,"props":398,"children":399},{"style":235},[400],{"type":44,"value":401},"# Non-interactive sessions that failed\n",{"type":39,"tag":228,"props":403,"children":405},{"class":230,"line":404},11,[406,410,414,419,424],{"type":39,"tag":228,"props":407,"children":408},{"style":245},[409],{"type":44,"value":248},{"type":39,"tag":228,"props":411,"children":412},{"style":251},[413],{"type":44,"value":254},{"type":39,"tag":228,"props":415,"children":416},{"style":251},[417],{"type":44,"value":418}," --no-interactive",{"type":39,"tag":228,"props":420,"children":421},{"style":251},[422],{"type":44,"value":423}," --status",{"type":39,"tag":228,"props":425,"children":426},{"style":251},[427],{"type":44,"value":428}," failed\n",{"type":39,"tag":228,"props":430,"children":432},{"class":230,"line":431},12,[433],{"type":39,"tag":228,"props":434,"children":435},{"emptyLinePlaceholder":271},[436],{"type":44,"value":274},{"type":39,"tag":228,"props":438,"children":440},{"class":230,"line":439},13,[441],{"type":39,"tag":228,"props":442,"children":443},{"style":235},[444],{"type":44,"value":445},"# VS Code extension sessions using Claude models, full prompts\n",{"type":39,"tag":228,"props":447,"children":449},{"class":230,"line":448},14,[450,454,458,463,468,473,477,482,486],{"type":39,"tag":228,"props":451,"children":452},{"style":245},[453],{"type":44,"value":248},{"type":39,"tag":228,"props":455,"children":456},{"style":251},[457],{"type":44,"value":254},{"type":39,"tag":228,"props":459,"children":460},{"style":251},[461],{"type":44,"value":462}," --source",{"type":39,"tag":228,"props":464,"children":465},{"style":251},[466],{"type":44,"value":467}," vscode",{"type":39,"tag":228,"props":469,"children":470},{"style":251},[471],{"type":44,"value":472}," --model",{"type":39,"tag":228,"props":474,"children":475},{"style":368},[476],{"type":44,"value":371},{"type":39,"tag":228,"props":478,"children":479},{"style":251},[480],{"type":44,"value":481},"claude",{"type":39,"tag":228,"props":483,"children":484},{"style":368},[485],{"type":44,"value":124},{"type":39,"tag":228,"props":487,"children":488},{"style":251},[489],{"type":44,"value":385},{"type":39,"tag":228,"props":491,"children":493},{"class":230,"line":492},15,[494],{"type":39,"tag":228,"props":495,"children":496},{"emptyLinePlaceholder":271},[497],{"type":44,"value":274},{"type":39,"tag":228,"props":499,"children":501},{"class":230,"line":500},16,[502],{"type":39,"tag":228,"props":503,"children":504},{"style":235},[505],{"type":44,"value":506},"# Full transcript of a specific session\n",{"type":39,"tag":228,"props":508,"children":510},{"class":230,"line":509},17,[511,515,519,524,529],{"type":39,"tag":228,"props":512,"children":513},{"style":245},[514],{"type":44,"value":248},{"type":39,"tag":228,"props":516,"children":517},{"style":251},[518],{"type":44,"value":254},{"type":39,"tag":228,"props":520,"children":521},{"style":251},[522],{"type":44,"value":523}," --session-id",{"type":39,"tag":228,"props":525,"children":526},{"style":251},[527],{"type":44,"value":528}," 1781991507587_pozk0",{"type":39,"tag":228,"props":530,"children":531},{"style":251},[532],{"type":44,"value":533}," --transcript\n",{"type":39,"tag":228,"props":535,"children":537},{"class":230,"line":536},18,[538],{"type":39,"tag":228,"props":539,"children":540},{"emptyLinePlaceholder":271},[541],{"type":44,"value":274},{"type":39,"tag":228,"props":543,"children":545},{"class":230,"line":544},19,[546],{"type":39,"tag":228,"props":547,"children":548},{"style":235},[549],{"type":44,"value":550},"# Export matching sessions to a directory\n",{"type":39,"tag":228,"props":552,"children":554},{"class":230,"line":553},20,[555,559,563,567,571,576],{"type":39,"tag":228,"props":556,"children":557},{"style":245},[558],{"type":44,"value":248},{"type":39,"tag":228,"props":560,"children":561},{"style":251},[562],{"type":44,"value":254},{"type":39,"tag":228,"props":564,"children":565},{"style":251},[566],{"type":44,"value":259},{"type":39,"tag":228,"props":568,"children":569},{"style":251},[570],{"type":44,"value":361},{"type":39,"tag":228,"props":572,"children":573},{"style":251},[574],{"type":44,"value":575}," --export",{"type":39,"tag":228,"props":577,"children":578},{"style":251},[579],{"type":44,"value":580}," ~\u002Ftmp\u002Fexported-sessions\n",{"type":39,"tag":210,"props":582,"children":584},{"id":583},"time-filters",[585],{"type":44,"value":586},"Time Filters",{"type":39,"tag":47,"props":588,"children":589},{},[590,592,598,600,606],{"type":44,"value":591},"Both ",{"type":39,"tag":53,"props":593,"children":595},{"className":594},[],[596],{"type":44,"value":597},"--since",{"type":44,"value":599}," and ",{"type":39,"tag":53,"props":601,"children":603},{"className":602},[],[604],{"type":44,"value":605},"--until",{"type":44,"value":607}," accept:",{"type":39,"tag":85,"props":609,"children":610},{},[611,658],{"type":39,"tag":89,"props":612,"children":613},{},[614,619,621,627,629,635,636,642,643,649,650,656],{"type":39,"tag":168,"props":615,"children":616},{},[617],{"type":44,"value":618},"Relative",{"type":44,"value":620},": ",{"type":39,"tag":53,"props":622,"children":624},{"className":623},[],[625],{"type":44,"value":626},"10m",{"type":44,"value":628},", ",{"type":39,"tag":53,"props":630,"children":632},{"className":631},[],[633],{"type":44,"value":634},"30min",{"type":44,"value":628},{"type":39,"tag":53,"props":637,"children":639},{"className":638},[],[640],{"type":44,"value":641},"2h",{"type":44,"value":628},{"type":39,"tag":53,"props":644,"children":646},{"className":645},[],[647],{"type":44,"value":648},"1d",{"type":44,"value":628},{"type":39,"tag":53,"props":651,"children":653},{"className":652},[],[654],{"type":44,"value":655},"1w",{"type":44,"value":657}," (minutes, hours, days, weeks)",{"type":39,"tag":89,"props":659,"children":660},{},[661,666,667,673,674,680,681],{"type":39,"tag":168,"props":662,"children":663},{},[664],{"type":44,"value":665},"ISO 8601",{"type":44,"value":620},{"type":39,"tag":53,"props":668,"children":670},{"className":669},[],[671],{"type":44,"value":672},"2026-06-20",{"type":44,"value":628},{"type":39,"tag":53,"props":675,"children":677},{"className":676},[],[678],{"type":44,"value":679},"2026-06-20T21:30:00Z",{"type":44,"value":628},{"type":39,"tag":53,"props":682,"children":684},{"className":683},[],[685],{"type":44,"value":686},"2026-06-20T21:30:00+00:00",{"type":39,"tag":210,"props":688,"children":690},{"id":689},"all-available-filters",[691],{"type":44,"value":692},"All Available Filters",{"type":39,"tag":694,"props":695,"children":696},"table",{},[697,716],{"type":39,"tag":698,"props":699,"children":700},"thead",{},[701],{"type":39,"tag":702,"props":703,"children":704},"tr",{},[705,711],{"type":39,"tag":706,"props":707,"children":708},"th",{},[709],{"type":44,"value":710},"Filter",{"type":39,"tag":706,"props":712,"children":713},{},[714],{"type":44,"value":715},"Description",{"type":39,"tag":717,"props":718,"children":719},"tbody",{},[720,738,755,772,789,838,868,892,915,944,961,978,1003,1027],{"type":39,"tag":702,"props":721,"children":722},{},[723,733],{"type":39,"tag":724,"props":725,"children":726},"td",{},[727],{"type":39,"tag":53,"props":728,"children":730},{"className":729},[],[731],{"type":44,"value":732},"--since \u003Ctime>",{"type":39,"tag":724,"props":734,"children":735},{},[736],{"type":44,"value":737},"Sessions started after this time",{"type":39,"tag":702,"props":739,"children":740},{},[741,750],{"type":39,"tag":724,"props":742,"children":743},{},[744],{"type":39,"tag":53,"props":745,"children":747},{"className":746},[],[748],{"type":44,"value":749},"--until \u003Ctime>",{"type":39,"tag":724,"props":751,"children":752},{},[753],{"type":44,"value":754},"Sessions started before this time",{"type":39,"tag":702,"props":756,"children":757},{},[758,767],{"type":39,"tag":724,"props":759,"children":760},{},[761],{"type":39,"tag":53,"props":762,"children":764},{"className":763},[],[765],{"type":44,"value":766},"--prompt \u003Ctext>",{"type":39,"tag":724,"props":768,"children":769},{},[770],{"type":44,"value":771},"Case-insensitive substring search in prompt",{"type":39,"tag":702,"props":773,"children":774},{},[775,784],{"type":39,"tag":724,"props":776,"children":777},{},[778],{"type":39,"tag":53,"props":779,"children":781},{"className":780},[],[782],{"type":44,"value":783},"--prompt-regex \u003Cpattern>",{"type":39,"tag":724,"props":785,"children":786},{},[787],{"type":44,"value":788},"Regex search in prompt (case-insensitive)",{"type":39,"tag":702,"props":790,"children":791},{},[792,801],{"type":39,"tag":724,"props":793,"children":794},{},[795],{"type":39,"tag":53,"props":796,"children":798},{"className":797},[],[799],{"type":44,"value":800},"--status \u003Cstatus>",{"type":39,"tag":724,"props":802,"children":803},{},[804,810,811,817,818,824,825,831,832],{"type":39,"tag":53,"props":805,"children":807},{"className":806},[],[808],{"type":44,"value":809},"running",{"type":44,"value":628},{"type":39,"tag":53,"props":812,"children":814},{"className":813},[],[815],{"type":44,"value":816},"idle",{"type":44,"value":628},{"type":39,"tag":53,"props":819,"children":821},{"className":820},[],[822],{"type":44,"value":823},"completed",{"type":44,"value":628},{"type":39,"tag":53,"props":826,"children":828},{"className":827},[],[829],{"type":44,"value":830},"cancelled",{"type":44,"value":628},{"type":39,"tag":53,"props":833,"children":835},{"className":834},[],[836],{"type":44,"value":837},"failed",{"type":39,"tag":702,"props":839,"children":840},{},[841,850],{"type":39,"tag":724,"props":842,"children":843},{},[844],{"type":39,"tag":53,"props":845,"children":847},{"className":846},[],[848],{"type":44,"value":849},"--source \u003Csource>",{"type":39,"tag":724,"props":851,"children":852},{},[853,859,860,866],{"type":39,"tag":53,"props":854,"children":856},{"className":855},[],[857],{"type":44,"value":858},"cli",{"type":44,"value":628},{"type":39,"tag":53,"props":861,"children":863},{"className":862},[],[864],{"type":44,"value":865},"vscode",{"type":44,"value":867},", etc. (exact match)",{"type":39,"tag":702,"props":869,"children":870},{},[871,880],{"type":39,"tag":724,"props":872,"children":873},{},[874],{"type":39,"tag":53,"props":875,"children":877},{"className":876},[],[878],{"type":44,"value":879},"--provider \u003Cname>",{"type":39,"tag":724,"props":881,"children":882},{},[883,885,890],{"type":44,"value":884},"Provider name, exact match (e.g. ",{"type":39,"tag":53,"props":886,"children":888},{"className":887},[],[889],{"type":44,"value":8},{"type":44,"value":891},")",{"type":39,"tag":702,"props":893,"children":894},{},[895,904],{"type":39,"tag":724,"props":896,"children":897},{},[898],{"type":39,"tag":53,"props":899,"children":901},{"className":900},[],[902],{"type":44,"value":903},"--model \u003Ctext>",{"type":39,"tag":724,"props":905,"children":906},{},[907,909,914],{"type":44,"value":908},"Model name substring, case-insensitive (e.g. ",{"type":39,"tag":53,"props":910,"children":912},{"className":911},[],[913],{"type":44,"value":481},{"type":44,"value":891},{"type":39,"tag":702,"props":916,"children":917},{},[918,927],{"type":39,"tag":724,"props":919,"children":920},{},[921],{"type":39,"tag":53,"props":922,"children":924},{"className":923},[],[925],{"type":44,"value":926},"--mode \u003Cmode>",{"type":39,"tag":724,"props":928,"children":929},{},[930,936,938],{"type":39,"tag":53,"props":931,"children":933},{"className":932},[],[934],{"type":44,"value":935},"plan",{"type":44,"value":937}," or ",{"type":39,"tag":53,"props":939,"children":941},{"className":940},[],[942],{"type":44,"value":943},"act",{"type":39,"tag":702,"props":945,"children":946},{},[947,956],{"type":39,"tag":724,"props":948,"children":949},{},[950],{"type":39,"tag":53,"props":951,"children":953},{"className":952},[],[954],{"type":44,"value":955},"--cwd \u003Cpath>",{"type":39,"tag":724,"props":957,"children":958},{},[959],{"type":44,"value":960},"Working directory substring match",{"type":39,"tag":702,"props":962,"children":963},{},[964,973],{"type":39,"tag":724,"props":965,"children":966},{},[967],{"type":39,"tag":53,"props":968,"children":970},{"className":969},[],[971],{"type":44,"value":972},"--session-id \u003Cid>",{"type":39,"tag":724,"props":974,"children":975},{},[976],{"type":44,"value":977},"Exact session ID lookup",{"type":39,"tag":702,"props":979,"children":980},{},[981,998],{"type":39,"tag":724,"props":982,"children":983},{},[984,990,992],{"type":39,"tag":53,"props":985,"children":987},{"className":986},[],[988],{"type":44,"value":989},"--interactive",{"type":44,"value":991}," \u002F ",{"type":39,"tag":53,"props":993,"children":995},{"className":994},[],[996],{"type":44,"value":997},"--no-interactive",{"type":39,"tag":724,"props":999,"children":1000},{},[1001],{"type":44,"value":1002},"Filter by interactive flag",{"type":39,"tag":702,"props":1004,"children":1005},{},[1006,1022],{"type":39,"tag":724,"props":1007,"children":1008},{},[1009,1015,1016],{"type":39,"tag":53,"props":1010,"children":1012},{"className":1011},[],[1013],{"type":44,"value":1014},"--team-only",{"type":44,"value":991},{"type":39,"tag":53,"props":1017,"children":1019},{"className":1018},[],[1020],{"type":44,"value":1021},"--no-team",{"type":39,"tag":724,"props":1023,"children":1024},{},[1025],{"type":44,"value":1026},"Filter by team session flag",{"type":39,"tag":702,"props":1028,"children":1029},{},[1030,1046],{"type":39,"tag":724,"props":1031,"children":1032},{},[1033,1039,1040],{"type":39,"tag":53,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":44,"value":1038},"--subagents",{"type":44,"value":991},{"type":39,"tag":53,"props":1041,"children":1043},{"className":1042},[],[1044],{"type":44,"value":1045},"--no-subagents",{"type":39,"tag":724,"props":1047,"children":1048},{},[1049],{"type":44,"value":1050},"Include\u002Fexclude subagent sessions",{"type":39,"tag":210,"props":1052,"children":1054},{"id":1053},"output-options",[1055],{"type":44,"value":1056},"Output Options",{"type":39,"tag":694,"props":1058,"children":1059},{},[1060,1075],{"type":39,"tag":698,"props":1061,"children":1062},{},[1063],{"type":39,"tag":702,"props":1064,"children":1065},{},[1066,1071],{"type":39,"tag":706,"props":1067,"children":1068},{},[1069],{"type":44,"value":1070},"Option",{"type":39,"tag":706,"props":1072,"children":1073},{},[1074],{"type":44,"value":715},{"type":39,"tag":717,"props":1076,"children":1077},{},[1078,1095,1112,1129,1152,1169,1186],{"type":39,"tag":702,"props":1079,"children":1080},{},[1081,1090],{"type":39,"tag":724,"props":1082,"children":1083},{},[1084],{"type":39,"tag":53,"props":1085,"children":1087},{"className":1086},[],[1088],{"type":44,"value":1089},"--full-prompt",{"type":39,"tag":724,"props":1091,"children":1092},{},[1093],{"type":44,"value":1094},"Show full prompt text instead of truncated",{"type":39,"tag":702,"props":1096,"children":1097},{},[1098,1107],{"type":39,"tag":724,"props":1099,"children":1100},{},[1101],{"type":39,"tag":53,"props":1102,"children":1104},{"className":1103},[],[1105],{"type":44,"value":1106},"--transcript",{"type":39,"tag":724,"props":1108,"children":1109},{},[1110],{"type":44,"value":1111},"Print full conversation transcript",{"type":39,"tag":702,"props":1113,"children":1114},{},[1115,1124],{"type":39,"tag":724,"props":1116,"children":1117},{},[1118],{"type":39,"tag":53,"props":1119,"children":1121},{"className":1120},[],[1122],{"type":44,"value":1123},"--max-messages \u003Cn>",{"type":39,"tag":724,"props":1125,"children":1126},{},[1127],{"type":44,"value":1128},"Limit messages in transcript output",{"type":39,"tag":702,"props":1130,"children":1131},{},[1132,1141],{"type":39,"tag":724,"props":1133,"children":1134},{},[1135],{"type":39,"tag":53,"props":1136,"children":1138},{"className":1137},[],[1139],{"type":44,"value":1140},"--content-types \u003Ctypes>",{"type":39,"tag":724,"props":1142,"children":1143},{},[1144,1146],{"type":44,"value":1145},"Comma-separated: ",{"type":39,"tag":53,"props":1147,"children":1149},{"className":1148},[],[1150],{"type":44,"value":1151},"text,thinking,tool_use,tool_result,image",{"type":39,"tag":702,"props":1153,"children":1154},{},[1155,1164],{"type":39,"tag":724,"props":1156,"children":1157},{},[1158],{"type":39,"tag":53,"props":1159,"children":1161},{"className":1160},[],[1162],{"type":44,"value":1163},"--export \u003Cdir>",{"type":39,"tag":724,"props":1165,"children":1166},{},[1167],{"type":44,"value":1168},"Copy matching session files to a directory",{"type":39,"tag":702,"props":1170,"children":1171},{},[1172,1181],{"type":39,"tag":724,"props":1173,"children":1174},{},[1175],{"type":39,"tag":53,"props":1176,"children":1178},{"className":1177},[],[1179],{"type":44,"value":1180},"--limit \u003Cn>",{"type":39,"tag":724,"props":1182,"children":1183},{},[1184],{"type":44,"value":1185},"Max number of sessions to return",{"type":39,"tag":702,"props":1187,"children":1188},{},[1189,1198],{"type":39,"tag":724,"props":1190,"children":1191},{},[1192],{"type":39,"tag":53,"props":1193,"children":1195},{"className":1194},[],[1196],{"type":44,"value":1197},"--json",{"type":39,"tag":724,"props":1199,"children":1200},{},[1201],{"type":44,"value":1202},"Output as JSON",{"type":39,"tag":210,"props":1204,"children":1206},{"id":1205},"data-source-options",[1207],{"type":44,"value":1208},"Data Source Options",{"type":39,"tag":694,"props":1210,"children":1211},{},[1212,1226],{"type":39,"tag":698,"props":1213,"children":1214},{},[1215],{"type":39,"tag":702,"props":1216,"children":1217},{},[1218,1222],{"type":39,"tag":706,"props":1219,"children":1220},{},[1221],{"type":44,"value":1070},{"type":39,"tag":706,"props":1223,"children":1224},{},[1225],{"type":44,"value":715},{"type":39,"tag":717,"props":1227,"children":1228},{},[1229,1253,1270],{"type":39,"tag":702,"props":1230,"children":1231},{},[1232,1241],{"type":39,"tag":724,"props":1233,"children":1234},{},[1235],{"type":39,"tag":53,"props":1236,"children":1238},{"className":1237},[],[1239],{"type":44,"value":1240},"--sessions-dir \u003Cpath>",{"type":39,"tag":724,"props":1242,"children":1243},{},[1244,1246,1252],{"type":44,"value":1245},"Custom sessions directory (default: ",{"type":39,"tag":53,"props":1247,"children":1249},{"className":1248},[],[1250],{"type":44,"value":1251},"~\u002F.cline\u002Fdata\u002Fsessions",{"type":44,"value":891},{"type":39,"tag":702,"props":1254,"children":1255},{},[1256,1265],{"type":39,"tag":724,"props":1257,"children":1258},{},[1259],{"type":39,"tag":53,"props":1260,"children":1262},{"className":1261},[],[1263],{"type":44,"value":1264},"--db-path \u003Cpath>",{"type":39,"tag":724,"props":1266,"children":1267},{},[1268],{"type":44,"value":1269},"Custom sessions.db path",{"type":39,"tag":702,"props":1271,"children":1272},{},[1273,1282],{"type":39,"tag":724,"props":1274,"children":1275},{},[1276],{"type":39,"tag":53,"props":1277,"children":1279},{"className":1278},[],[1280],{"type":44,"value":1281},"--no-db",{"type":39,"tag":724,"props":1283,"children":1284},{},[1285],{"type":44,"value":1286},"Skip SQLite DB, only scan JSON files",{"type":39,"tag":78,"props":1288,"children":1290},{"id":1289},"workflow",[1291],{"type":44,"value":1292},"Workflow",{"type":39,"tag":1294,"props":1295,"children":1296},"ol",{},[1297,1302,1320,1340],{"type":39,"tag":89,"props":1298,"children":1299},{},[1300],{"type":44,"value":1301},"Start by running the search with the user's criteria to get a list of matching sessions.",{"type":39,"tag":89,"props":1303,"children":1304},{},[1305,1307,1312,1313,1318],{"type":44,"value":1306},"If the user wants to see details, use ",{"type":39,"tag":53,"props":1308,"children":1310},{"className":1309},[],[1311],{"type":44,"value":1089},{"type":44,"value":937},{"type":39,"tag":53,"props":1314,"children":1316},{"className":1315},[],[1317],{"type":44,"value":1106},{"type":44,"value":1319},".",{"type":39,"tag":89,"props":1321,"children":1322},{},[1323,1325,1331,1332,1338],{"type":44,"value":1324},"For transcript inspection, consider ",{"type":39,"tag":53,"props":1326,"children":1328},{"className":1327},[],[1329],{"type":44,"value":1330},"--max-messages",{"type":44,"value":599},{"type":39,"tag":53,"props":1333,"children":1335},{"className":1334},[],[1336],{"type":44,"value":1337},"--content-types",{"type":44,"value":1339}," to focus on relevant parts.",{"type":39,"tag":89,"props":1341,"children":1342},{},[1343,1345,1350],{"type":44,"value":1344},"For bulk export, use ",{"type":39,"tag":53,"props":1346,"children":1348},{"className":1347},[],[1349],{"type":44,"value":1163},{"type":44,"value":1351}," to copy session files.",{"type":39,"tag":78,"props":1353,"children":1355},{"id":1354},"session-data-structure",[1356],{"type":44,"value":1357},"Session Data Structure",{"type":39,"tag":47,"props":1359,"children":1360},{},[1361],{"type":44,"value":1362},"Each session on disk has:",{"type":39,"tag":85,"props":1364,"children":1365},{},[1366,1377],{"type":39,"tag":89,"props":1367,"children":1368},{},[1369,1375],{"type":39,"tag":53,"props":1370,"children":1372},{"className":1371},[],[1373],{"type":44,"value":1374},"\u003Csession_id>.json",{"type":44,"value":1376}," — Metadata: session_id, started_at, status, source, provider, model, cwd, prompt, metadata (mode, systemPrompt, cost, usage), etc.",{"type":39,"tag":89,"props":1378,"children":1379},{},[1380,1386],{"type":39,"tag":53,"props":1381,"children":1383},{"className":1382},[],[1384],{"type":44,"value":1385},"\u003Csession_id>.messages.json",{"type":44,"value":1387}," — Full conversation transcript with messages containing content blocks (text, thinking, tool_use, tool_result, image).",{"type":39,"tag":47,"props":1389,"children":1390},{},[1391,1393,1398,1400,1406,1407,1413,1414,1420,1421,1427,1428,1434],{"type":44,"value":1392},"The SQLite ",{"type":39,"tag":53,"props":1394,"children":1396},{"className":1395},[],[1397],{"type":44,"value":74},{"type":44,"value":1399}," may contain older sessions with similar fields plus ",{"type":39,"tag":53,"props":1401,"children":1403},{"className":1402},[],[1404],{"type":44,"value":1405},"transcript_path",{"type":44,"value":628},{"type":39,"tag":53,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":44,"value":1412},"hook_path",{"type":44,"value":628},{"type":39,"tag":53,"props":1415,"children":1417},{"className":1416},[],[1418],{"type":44,"value":1419},"parent_session_id",{"type":44,"value":628},{"type":39,"tag":53,"props":1422,"children":1424},{"className":1423},[],[1425],{"type":44,"value":1426},"agent_id",{"type":44,"value":628},{"type":39,"tag":53,"props":1429,"children":1431},{"className":1430},[],[1432],{"type":44,"value":1433},"is_subagent",{"type":44,"value":1319},{"type":39,"tag":1436,"props":1437,"children":1438},"style",{},[1439],{"type":44,"value":1440},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1442,"total":1630},[1443,1462,1482,1501,1516,1532,1549,1560,1566,1584,1604,1617],{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1447,"tags":1448,"stars":22,"repoUrl":23,"updatedAt":1461},"amazon-location-service","integrate Amazon Location Service APIs","Integrates Amazon Location Service APIs for AWS applications. Use this skill when users want to add maps (interactive MapLibre or static images); geocode addresses to coordinates or reverse geocode coordinates to addresses; calculate routes, travel times, or service areas; find places and businesses through text search, nearby search, or autocomplete suggestions; retrieve detailed place information including hours, contacts, and addresses; monitor geographical boundaries with geofences; or track device locations. Covers authentication, SDK integration, and all Amazon Location Service capabilities.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1449,1452,1455,1458],{"name":1450,"slug":1451,"type":15},"API Development","api-development",{"name":1453,"slug":1454,"type":15},"AWS","aws",{"name":1456,"slug":1457,"type":15},"Maps","maps",{"name":1459,"slug":1460,"type":15},"Navigation","navigation","2026-07-12T08:13:53.294026",{"slug":1463,"name":1463,"fn":1464,"description":1465,"org":1466,"tags":1467,"stars":22,"repoUrl":23,"updatedAt":1481},"amplify-workflow","build full-stack apps with AWS Amplify","Build and deploy full-stack web and mobile apps with AWS Amplify Gen2 (TypeScript code-first). Covers auth (Cognito), data (AppSync\u002FDynamoDB including schema modeling, enum types, relationships, authorization rules), storage (S3), functions, APIs, and AI (Amplify AI Kit with Bedrock). Supports React, Next.js, Vue, Angular, React Native, Flutter, Swift, and Android. Always use this skill for Amplify Gen2 topics — even for questions you think you know — it contains validated, version-specific patterns that prevent common mistakes. TRIGGER when: user mentions Amplify Gen2; project has amplify\u002F directory or amplify_outputs; code imports @aws-amplify packages; user asks about defineBackend, defineAuth, defineData, defineStorage, or npx ampx. SKIP: Amplify Gen1 (amplify CLI v6), standalone SAM\u002FCDK without Amplify (use aws-serverless), direct Bedrock without Amplify AI Kit (use bedrock).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1468,1471,1472,1475,1478],{"name":1469,"slug":1470,"type":15},"Auth","auth",{"name":1453,"slug":1454,"type":15},{"name":1473,"slug":1474,"type":15},"Database","database",{"name":1476,"slug":1477,"type":15},"Frontend","frontend",{"name":1479,"slug":1480,"type":15},"TypeScript","typescript","2026-07-12T08:13:47.134012",{"slug":1483,"name":1483,"fn":1484,"description":1485,"org":1486,"tags":1487,"stars":22,"repoUrl":23,"updatedAt":1500},"analyzer","analyze queried data for trends","Analyze queried data for trends, week-over-week comparisons, distributions, funnels, cohorts, top-N lists, anomalies, sanity checks, and report-ready findings. Use after or alongside ClickHouse queries when the user wants insight rather than raw rows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1488,1491,1494,1497],{"name":1489,"slug":1490,"type":15},"Analytics","analytics",{"name":1492,"slug":1493,"type":15},"ClickHouse","clickhouse",{"name":1495,"slug":1496,"type":15},"Data Analysis","data-analysis",{"name":1498,"slug":1499,"type":15},"Statistics","statistics","2026-07-12T08:14:05.606036",{"slug":1502,"name":1502,"fn":1503,"description":1504,"org":1505,"tags":1506,"stars":22,"repoUrl":23,"updatedAt":1515},"artifact-management","manage and organize analysis artifacts","Save, organize, and describe reusable analysis artifacts such as SQL, result snapshots, CSV exports, summaries, caveats, plots, and report-ready files. Use when users ask to save, export, share, cite, reproduce, or organize data-analysis outputs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1507,1508,1509,1512],{"name":1495,"slug":1496,"type":15},{"name":13,"slug":14,"type":15},{"name":1510,"slug":1511,"type":15},"Reporting","reporting",{"name":1513,"slug":1514,"type":15},"SQL","sql","2026-07-12T08:14:09.265555",{"slug":1517,"name":1517,"fn":1518,"description":1519,"org":1520,"tags":1521,"stars":22,"repoUrl":23,"updatedAt":1531},"attorney-assist","connect with attorneys for legal consultation","Connects the user with a LegalZoom attorney for legal consultation. Use when a user asks about attorneys, lawyers, or legal help, or when contract review reveals high risks or low-confidence findings.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1522,1525,1528],{"name":1523,"slug":1524,"type":15},"Contracts","contracts",{"name":1526,"slug":1527,"type":15},"Legal","legal",{"name":1529,"slug":1530,"type":15},"Risk Assessment","risk-assessment","2026-07-12T08:13:45.878361",{"slug":1533,"name":1533,"fn":1534,"description":1535,"org":1536,"tags":1537,"stars":22,"repoUrl":23,"updatedAt":1548},"building-pydantic-ai-agents","build AI agents with Pydantic AI","Build AI agents with Pydantic AI — tools, capabilities (including on-demand loading), structured output, streaming, testing, and multi-agent patterns. Use when the user mentions Pydantic AI, imports pydantic_ai, or asks to build an AI agent, add tools\u002Fcapabilities, defer capability loading, stream output, define agents from YAML, or test agent behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1538,1539,1542,1545],{"name":20,"slug":21,"type":15},{"name":1540,"slug":1541,"type":15},"LLM","llm",{"name":1543,"slug":1544,"type":15},"Multi-Agent","multi-agent",{"name":1546,"slug":1547,"type":15},"Python","python","2026-07-12T08:14:01.893781",{"slug":1493,"name":1493,"fn":1550,"description":1551,"org":1552,"tags":1553,"stars":22,"repoUrl":23,"updatedAt":1559},"query ClickHouse databases via CLI","Connect to and query ClickHouse (a local server or a ClickHouse Cloud service) from the terminal using the official clickhousectl CLI, including the browser OAuth login flow. Use when the user wants to run SQL against ClickHouse, explore schemas and tables, inspect Cloud services, or authenticate clickhousectl. For building a local dev environment or deploying to Cloud, defer to the official ClickHouse skills (see Scope).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1554,1555,1557,1558],{"name":1489,"slug":1490,"type":15},{"name":1556,"slug":858,"type":15},"CLI",{"name":1492,"slug":1493,"type":15},{"name":1473,"slug":1474,"type":15},"2026-07-12T08:14:06.829692",{"slug":4,"name":4,"fn":5,"description":6,"org":1561,"tags":1562,"stars":22,"repoUrl":23,"updatedAt":24},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1563,1564,1565],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"slug":1567,"name":1567,"fn":1568,"description":1569,"org":1570,"tags":1571,"stars":22,"repoUrl":23,"updatedAt":1583},"convex-design","build reactive backends with Convex","Design and build reactive, type-safe, production-grade backends on Convex. Covers schema, queries\u002Fmutations\u002Factions, indexes, auth, file storage, scheduling, real-time multiplayer, mobile backends, and LLM\u002Fagent workflows on Convex's one-platform stack.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1572,1573,1576,1577,1580],{"name":1469,"slug":1470,"type":15},{"name":1574,"slug":1575,"type":15},"Backend","backend",{"name":1473,"slug":1474,"type":15},{"name":1578,"slug":1579,"type":15},"Real-time","real-time",{"name":1581,"slug":1582,"type":15},"Storage","storage","2026-07-12T08:13:37.101253",{"slug":1585,"name":1585,"fn":1586,"description":1587,"org":1588,"tags":1589,"stars":22,"repoUrl":23,"updatedAt":1603},"cosmosdb-best-practices","optimize Azure Cosmos DB performance","Azure Cosmos DB performance optimization and best practices guidelines for NoSQL,\npartitioning, queries, SDK usage, and vector search. Use when writing, reviewing,\nor refactoring code that interacts with Azure Cosmos DB, designing data models,\noptimizing queries, or implementing high-performance database operations.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1590,1593,1596,1597,1600],{"name":1591,"slug":1592,"type":15},"Azure","azure",{"name":1594,"slug":1595,"type":15},"Cosmos DB","cosmos-db",{"name":1473,"slug":1474,"type":15},{"name":1598,"slug":1599,"type":15},"NoSQL","nosql",{"name":1601,"slug":1602,"type":15},"Performance","performance","2026-07-12T08:13:54.531719",{"slug":1605,"name":1605,"fn":1606,"description":1607,"org":1608,"tags":1609,"stars":22,"repoUrl":23,"updatedAt":1616},"data-analyst","analyze ClickHouse analytics data","Act as an interactive data analyst for ClickHouse-backed analytics. Use when the user asks questions about internal data, metrics, dashboards, telemetry, active users, revenue, funnels, trends, distributions, or wants an analyst-style conversation, ad hoc SQL, charts, or a data export against ClickHouse (local or ClickHouse Cloud).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1610,1611,1612,1615],{"name":1489,"slug":1490,"type":15},{"name":1492,"slug":1493,"type":15},{"name":1613,"slug":1614,"type":15},"Dashboards","dashboards",{"name":1495,"slug":1496,"type":15},"2026-07-12T08:13:31.975246",{"slug":1618,"name":1618,"fn":1619,"description":1620,"org":1621,"tags":1622,"stars":22,"repoUrl":23,"updatedAt":1629},"dataproc-skills","manage Dataproc clusters and jobs","Skills to interact with your Dataproc clusters and jobs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1623,1626],{"name":1624,"slug":1625,"type":15},"Data Engineering","data-engineering",{"name":1627,"slug":1628,"type":15},"Operations","operations","2026-07-12T08:13:42.179275",45,{"items":1632,"total":1682},[1633,1640,1648,1655,1662,1668,1675],{"slug":1444,"name":1444,"fn":1445,"description":1446,"org":1634,"tags":1635,"stars":22,"repoUrl":23,"updatedAt":1461},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1636,1637,1638,1639],{"name":1450,"slug":1451,"type":15},{"name":1453,"slug":1454,"type":15},{"name":1456,"slug":1457,"type":15},{"name":1459,"slug":1460,"type":15},{"slug":1463,"name":1463,"fn":1464,"description":1465,"org":1641,"tags":1642,"stars":22,"repoUrl":23,"updatedAt":1481},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1643,1644,1645,1646,1647],{"name":1469,"slug":1470,"type":15},{"name":1453,"slug":1454,"type":15},{"name":1473,"slug":1474,"type":15},{"name":1476,"slug":1477,"type":15},{"name":1479,"slug":1480,"type":15},{"slug":1483,"name":1483,"fn":1484,"description":1485,"org":1649,"tags":1650,"stars":22,"repoUrl":23,"updatedAt":1500},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1651,1652,1653,1654],{"name":1489,"slug":1490,"type":15},{"name":1492,"slug":1493,"type":15},{"name":1495,"slug":1496,"type":15},{"name":1498,"slug":1499,"type":15},{"slug":1502,"name":1502,"fn":1503,"description":1504,"org":1656,"tags":1657,"stars":22,"repoUrl":23,"updatedAt":1515},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1658,1659,1660,1661],{"name":1495,"slug":1496,"type":15},{"name":13,"slug":14,"type":15},{"name":1510,"slug":1511,"type":15},{"name":1513,"slug":1514,"type":15},{"slug":1517,"name":1517,"fn":1518,"description":1519,"org":1663,"tags":1664,"stars":22,"repoUrl":23,"updatedAt":1531},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1665,1666,1667],{"name":1523,"slug":1524,"type":15},{"name":1526,"slug":1527,"type":15},{"name":1529,"slug":1530,"type":15},{"slug":1533,"name":1533,"fn":1534,"description":1535,"org":1669,"tags":1670,"stars":22,"repoUrl":23,"updatedAt":1548},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1671,1672,1673,1674],{"name":20,"slug":21,"type":15},{"name":1540,"slug":1541,"type":15},{"name":1543,"slug":1544,"type":15},{"name":1546,"slug":1547,"type":15},{"slug":1493,"name":1493,"fn":1550,"description":1551,"org":1676,"tags":1677,"stars":22,"repoUrl":23,"updatedAt":1559},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1678,1679,1680,1681],{"name":1489,"slug":1490,"type":15},{"name":1556,"slug":858,"type":15},{"name":1492,"slug":1493,"type":15},{"name":1473,"slug":1474,"type":15},43]