skill-distiller
Fetches top-rated skills from skills.sh, analyzes them, and synthesizes one token-efficient skill combining the best elements. Use when the user asks to…
File-based todo and task tracking in the todos/ directory. Use when creating, triaging, listing, or managing todo files, tracking work items, managing the backlog, converting PR comments to tracked tasks, or checking todo status and dependencies.
$ npx -y skills add iliaal/whetstone --skill ia-file-todos --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ia-file-todosContext preview
The summary Claude sees to decide when to auto-load this skill.
File-based todo and task tracking in the todos/ directory. Use when creating, triaging, listing, or managing todo files, tracking work items, managing the backlog, converting PR comments to tracked tasks, or checking todo status and dependencies.
name: ia-file-todos class: tool description: >- File-based todo and task tracking in the todos/ directory. Use when creating, triaging, listing, or managing todo files, tracking work items, managing the backlog, converting PR comments to tracked tasks, or checking todo status and dependencies.
{issue_id}-{status}-{priority}-{description}.mdExamples: `001-pending-p1-mailer-test.md`, `002-ready-p1-fix-n-plus-1.md`, `005-complete-p2-refactor-csv.md`
Use [todo-template.md](./assets/todo-template.md) as a starting point. YAML frontmatter:
--- status: ready # pending | ready | complete priority: p1 # p1 | p2 | p3 issue_id: "002" tags: [typescript, performance, database] dependencies: ["001"] # Issue IDs this is blocked by ---
**Required sections:** Problem Statement, Findings, Proposed Solutions, Recommended Action, Acceptance Criteria, Work Log
**Optional sections:** Technical Details, Resources, Notes
**File-todos system (this skill):** Markdown files in `todos/` directory for development/project tracking. Used by humans and agents.
**Application Todo model:** Database model for user-facing task management. Different from this file-based system.
**TodoWrite tool:** In-memory task tracking during agent sessions. Temporary, not persisted to disk.
Before considering a todo file correctly written, confirm:
A Claude Code plugin that makes AI coding agents follow engineering discipline. Plan before coding. Verify before claiming done. Find root cause before patching. Review before merge. Skills activate based on file type and task signals, not manual toggling.
Repo: iliaal/whetstone
Fetches top-rated skills from skills.sh, analyzes them, and synthesizes one token-efficient skill combining the best elements. Use when the user asks to…
Design agent-native applications where agents replace UI users as the primary actor. Use when designing MCP tools, agent-loop architectures, system prompt…
Pre-implementation exploration: deep interview, approach comparison, design doc. Use when exploring a vague feature idea, clarifying ambiguous requirements, or…
C patterns for systems code, libraries, and native extensions: module layout, function decomposition, status-enum errors, memory safety, undefined behavior,…
Structured code reviews with severity-ranked findings and deep multi-agent mode. Use when performing a code review, auditing code quality, or critiquing PRs,…
Document solved problems for team reuse. Provides process knowledge for /ia-compound. Use when documenting a resolved issue, writing up lessons learned,…