|
1 | 1 | { |
2 | 2 | "version": "1.0.0", |
3 | 3 | "name": "gemini-cli-skills", |
4 | | - "total_skills": 283, |
| 4 | + "total_skills": 294, |
5 | 5 | "skills": [ |
6 | 6 | { |
7 | 7 | "name": "README", |
|
93 | 93 | "category": "agent", |
94 | 94 | "description": "UX research agent for research planning, persona generation, journey mapping, and usability test analysis" |
95 | 95 | }, |
| 96 | + { |
| 97 | + "name": "cs-wiki-ingestor", |
| 98 | + "category": "agent", |
| 99 | + "description": "Dispatched sub-agent that ingests a new source into an LLM Wiki vault. Reads the source, proposes TL;DR and key claims, identifies which entity/concept/synthesis pages will be touched, flags contradictions with existing pages, and \u2014 after user confirmation \u2014 writes the source summary, updates cross-references across 5-15 pages, regenerates the index, and appends a standardized log entry. Spawn when the user says \"ingest this\", \"add this paper/article/book to the wiki\", or drops a file into raw/." |
| 100 | + }, |
| 101 | + { |
| 102 | + "name": "cs-wiki-librarian", |
| 103 | + "category": "agent", |
| 104 | + "description": "Dispatched sub-agent that answers queries against an LLM Wiki vault. Reads index.md first, drills into 3-10 relevant pages across categories, synthesizes an answer with inline [[wikilink]] citations, and offers to file the answer back into the wiki as a new comparison or synthesis page. Spawn when the user asks a substantive question the wiki might answer, says \"what does the wiki say about X\", \"compare A and B across my sources\", or wants to explore a topic." |
| 105 | + }, |
| 106 | + { |
| 107 | + "name": "cs-wiki-linter", |
| 108 | + "category": "agent", |
| 109 | + "description": "Dispatched sub-agent that runs a periodic health check on an LLM Wiki vault. Runs mechanical checks via scripts (orphans, broken links, stale pages, missing frontmatter, duplicate titles, log gaps), does semantic checks (contradictions, stale claims, cross-reference gaps, concepts missing their own page), and produces a markdown report with suggested actions. Spawn weekly, after batch ingests, or when the user says \"check the wiki\" / \"lint my wiki\" / \"audit the vault\"." |
| 110 | + }, |
96 | 111 | { |
97 | 112 | "name": "cs-workspace-admin", |
98 | 113 | "category": "agent", |
|
418 | 433 | "category": "command", |
419 | 434 | "description": "Sprint planning shortcut. Usage: /sprint-plan <goal> [capacity]" |
420 | 435 | }, |
| 436 | + { |
| 437 | + "name": "tc", |
| 438 | + "category": "command", |
| 439 | + "description": "Track technical changes with structured records, a state machine, and session handoff. Usage: /tc <init|create|update|status|resume|close|export|dashboard> [args]" |
| 440 | + }, |
421 | 441 | { |
422 | 442 | "name": "tdd", |
423 | 443 | "category": "command", |
|
433 | 453 | "category": "command", |
434 | 454 | "description": "Generate user stories with acceptance criteria and sprint planning. Usage: /user-story <generate|sprint> [options]" |
435 | 455 | }, |
| 456 | + { |
| 457 | + "name": "wiki-ingest", |
| 458 | + "category": "command", |
| 459 | + "description": "Ingest a source file from raw/ into the LLM Wiki \u2014 read, discuss, write summary page, update cross-references across 5-15 pages, regenerate index, append to log. Usage /wiki-ingest <path-to-source>" |
| 460 | + }, |
| 461 | + { |
| 462 | + "name": "wiki-init", |
| 463 | + "category": "command", |
| 464 | + "description": "Bootstrap a fresh LLM Wiki vault with the three-layer structure, schema files, and starter templates. Usage /wiki-init <path> --topic \"<topic>\" [--tool all|claude-code|codex|cursor|antigravity]" |
| 465 | + }, |
| 466 | + { |
| 467 | + "name": "wiki-lint", |
| 468 | + "category": "command", |
| 469 | + "description": "Run a health check on the LLM Wiki vault \u2014 mechanical checks (orphans, broken links, stale pages, missing frontmatter, log gap, duplicates) plus semantic checks (contradictions, cross-reference gaps, concepts missing their own page). Outputs a markdown report with suggested actions. Usage /wiki-lint [--stale-days N] [--log-gap-days N]" |
| 470 | + }, |
| 471 | + { |
| 472 | + "name": "wiki-log", |
| 473 | + "category": "command", |
| 474 | + "description": "Show recent entries from the LLM Wiki log (wiki/log.md). Uses the standardized ## [YYYY-MM-DD] header format so grep + tail works. Usage /wiki-log [--last N] [--op ingest|query|lint|...]" |
| 475 | + }, |
| 476 | + { |
| 477 | + "name": "wiki-query", |
| 478 | + "category": "command", |
| 479 | + "description": "Query the LLM Wiki \u2014 reads index.md first, drills into 3-10 relevant pages, synthesizes an answer with inline [[wikilink]] citations, and offers to file the answer back as a new comparison or synthesis page. Usage /wiki-query \"<question>\"" |
| 480 | + }, |
436 | 481 | { |
437 | 482 | "name": "a11y-audit", |
438 | 483 | "category": "engineering", |
|
823 | 868 | "category": "engineering-advanced", |
824 | 869 | "description": "Use when you need to reduce LLM API spend, control token usage, route between models by cost/quality, implement prompt caching, or build cost observability for AI features. Triggers: 'my AI costs are too high', 'optimize token usage', 'which model should I use', 'LLM spend is out of control', 'implement prompt caching'. NOT for RAG pipeline design (use rag-architect). NOT for prompt writing quality (use senior-prompt-engineer)." |
825 | 870 | }, |
| 871 | + { |
| 872 | + "name": "llm-wiki", |
| 873 | + "category": "engineering-advanced", |
| 874 | + "description": "Use when building or maintaining a persistent personal knowledge base (second brain) in Obsidian where an LLM incrementally ingests sources, updates entity/concept pages, maintains cross-references, and keeps a synthesis current. Triggers include \"second brain\", \"Obsidian wiki\", \"personal knowledge management\", \"ingest this paper/article/book\", \"build a research wiki\", \"compound knowledge\", \"Memex\", or whenever the user wants knowledge to accumulate across sessions instead of being re-derived by RAG on every query." |
| 875 | + }, |
826 | 876 | { |
827 | 877 | "name": "loop", |
828 | 878 | "category": "engineering-advanced", |
|
963 | 1013 | "category": "engineering-advanced", |
964 | 1014 | "description": "Run hypothesis tests, analyze A/B experiment results, calculate sample sizes, and interpret statistical significance with effect sizes. Use when you need to validate whether observed differences are real, size an experiment correctly before launch, or interpret test results with confidence." |
965 | 1015 | }, |
| 1016 | + { |
| 1017 | + "name": "tc-tracker", |
| 1018 | + "category": "engineering-advanced", |
| 1019 | + "description": "Use when the user asks to track technical changes, create change records, manage TC lifecycles, or hand off work between AI sessions. Covers init/create/update/status/resume/close/export workflows for structured code change documentation." |
| 1020 | + }, |
966 | 1021 | { |
967 | 1022 | "name": "tech-debt-tracker", |
968 | 1023 | "category": "engineering-advanced", |
|
1223 | 1278 | "category": "product", |
1224 | 1279 | "description": "Agile product ownership for backlog management and sprint execution. Covers user story writing, acceptance criteria, sprint planning, and velocity tracking. Use for writing user stories, creating acceptance criteria, planning sprints, estimating story points, breaking down epics, or prioritizing backlog." |
1225 | 1280 | }, |
| 1281 | + { |
| 1282 | + "name": "apple-hig-expert", |
| 1283 | + "category": "product", |
| 1284 | + "description": "Expert guidance on Apple Human Interface Guidelines (HIG). Covers iOS, macOS, and visionOS with 2026 Liquid Glass aesthetics and accessibility-first design." |
| 1285 | + }, |
1226 | 1286 | { |
1227 | 1287 | "name": "code-to-prd", |
1228 | 1288 | "category": "product", |
|
1298 | 1358 | "category": "product", |
1299 | 1359 | "description": "UX research and design toolkit for Senior UX Designer/Researcher including data-driven persona generation, journey mapping, usability testing frameworks, and research synthesis. Use for user research, persona creation, journey mapping, and design validation." |
1300 | 1360 | }, |
1301 | | - { |
1302 | | - "name": "apple-hig-expert", |
1303 | | - "category": "product", |
1304 | | - "description": "Expert guidance on Apple Human Interface Guidelines (HIG). Covers iOS, macOS, and visionOS with focus on 2026 Liquid Glass aesthetics and accessibility-first design." |
1305 | | - }, |
1306 | 1361 | { |
1307 | 1362 | "name": "atlassian-admin", |
1308 | 1363 | "category": "project-management", |
|
1421 | 1476 | ], |
1422 | 1477 | "categories": { |
1423 | 1478 | "agent": { |
1424 | | - "count": 25, |
| 1479 | + "count": 28, |
1425 | 1480 | "description": "Agent resources" |
1426 | 1481 | }, |
1427 | 1482 | "business-growth": { |
|
1433 | 1488 | "description": "C-level resources" |
1434 | 1489 | }, |
1435 | 1490 | "command": { |
1436 | | - "count": 22, |
| 1491 | + "count": 28, |
1437 | 1492 | "description": "Command resources" |
1438 | 1493 | }, |
1439 | 1494 | "engineering": { |
1440 | 1495 | "count": 51, |
1441 | 1496 | "description": "Engineering resources" |
1442 | 1497 | }, |
1443 | 1498 | "engineering-advanced": { |
1444 | | - "count": 57, |
| 1499 | + "count": 59, |
1445 | 1500 | "description": "Engineering-advanced resources" |
1446 | 1501 | }, |
1447 | 1502 | "finance": { |
|
1453 | 1508 | "description": "Marketing resources" |
1454 | 1509 | }, |
1455 | 1510 | "product": { |
1456 | | - "count": 16, |
| 1511 | + "count": 17, |
1457 | 1512 | "description": "Product resources" |
1458 | 1513 | }, |
1459 | 1514 | "project-management": { |
|
0 commit comments