claude-agent-skills 1.3.6 → 1.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/picker.js +4 -3
- package/package.json +1 -1
- package/skills.json +42 -42
package/lib/picker.js
CHANGED
|
@@ -42,9 +42,8 @@ export async function skillPicker({ message, options }) {
|
|
|
42
42
|
const HEADER = 2;
|
|
43
43
|
const GRID_H = numRows;
|
|
44
44
|
const SEP = 1;
|
|
45
|
-
const DESC_H = Math.max(
|
|
45
|
+
const DESC_H = Math.max(5, Math.min(8, termH - HEADER - GRID_H - SEP - 3));
|
|
46
46
|
const FOOTER = 1;
|
|
47
|
-
const TOTAL = HEADER + GRID_H + SEP + DESC_H + FOOTER;
|
|
48
47
|
|
|
49
48
|
let cursor = 0;
|
|
50
49
|
const sel = new Set();
|
|
@@ -90,7 +89,9 @@ export async function skillPicker({ message, options }) {
|
|
|
90
89
|
|
|
91
90
|
const focused = options[cursor];
|
|
92
91
|
const desc = focused?.description ?? '';
|
|
93
|
-
|
|
92
|
+
// Cap wrap at 72 chars so descriptions always break into multiple lines
|
|
93
|
+
const wrapW = Math.min(termW - 6, 72);
|
|
94
|
+
const wrapped = desc ? wordWrap(desc, wrapW) : [];
|
|
94
95
|
for (let i = 0; i < DESC_H; i++) {
|
|
95
96
|
const line = wrapped[i] ?? '';
|
|
96
97
|
lines.push(muted('│ ') + white(line));
|
package/package.json
CHANGED
package/skills.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": 1,
|
|
3
3
|
"name": "claude-agent-skills",
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.7",
|
|
5
5
|
"skills": [
|
|
6
6
|
"ask-matt",
|
|
7
7
|
"brainstorming",
|
|
@@ -107,58 +107,58 @@
|
|
|
107
107
|
},
|
|
108
108
|
"descriptions": {
|
|
109
109
|
"ask-matt": "You don't remember every skill, so ask.",
|
|
110
|
-
"brainstorming": "Help turn ideas into fully formed designs and specs through natural
|
|
111
|
-
"cavecrew": "Cavecrew = three subagent presets that emit caveman output. Same job as
|
|
110
|
+
"brainstorming": "Help turn ideas into fully formed designs and specs through natural collaborative dialogue.",
|
|
111
|
+
"cavecrew": "Cavecrew = three subagent presets that emit caveman output. Same job as Anthropic defaults (`Explore`, edit-style agents, reviewer); difference is the tool-result they return is compressed, so main c…",
|
|
112
112
|
"caveman": "Respond terse like smart caveman. All technical substance stay. Only fluff die.",
|
|
113
|
-
"caveman-commit": "Write commit messages terse and exact. Conventional Commits format. No fluff.
|
|
114
|
-
"caveman-compress": "Compress natural language files (CLAUDE.md, todos, preferences) into caveman-
|
|
115
|
-
"caveman-help": "Display this reference card when invoked. One-shot — do NOT change mode, write
|
|
116
|
-
"caveman-review": "Write code review comments terse and actionable. One line per finding. Location,",
|
|
117
|
-
"caveman-stats": "This skill is delivered by `hooks/caveman-stats.js` (read by `hooks/caveman-mode",
|
|
118
|
-
"codebase-design": "Design **deep modules**: a lot of behaviour behind a small interface, placed at ",
|
|
119
|
-
"council": "You are the orchestrator. Dispatch three Haiku subagents in parallel — each",
|
|
113
|
+
"caveman-commit": "Write commit messages terse and exact. Conventional Commits format. No fluff. Why over what.",
|
|
114
|
+
"caveman-compress": "Compress natural language files (CLAUDE.md, todos, preferences) into caveman-speak to reduce input tokens. Compressed version overwrites original. Human-readable backup saved as `<filename>.original.…",
|
|
115
|
+
"caveman-help": "Display this reference card when invoked. One-shot — do NOT change mode, write flag files, or persist anything. Output in caveman style.",
|
|
116
|
+
"caveman-review": "Write code review comments terse and actionable. One line per finding. Location, problem, fix. No throat-clearing.",
|
|
117
|
+
"caveman-stats": "This skill is delivered by `hooks/caveman-stats.js` (read by `hooks/caveman-mode-tracker.js` on `/caveman-stats`). The model does not need to do anything when this skill fires — the hook returns `dec…",
|
|
118
|
+
"codebase-design": "Design **deep modules**: a lot of behaviour behind a small interface, placed at a clean seam, testable through that interface. Use this language and these principles wherever code is being designed o…",
|
|
119
|
+
"council": "You are the orchestrator. Dispatch three Haiku subagents in parallel — each a council member giving an independent perspective — then synthesize their responses into a unified recommendation.",
|
|
120
120
|
"diagnosing-bugs": "A discipline for hard bugs. Skip phases only when explicitly justified.",
|
|
121
|
-
"dispatching-parallel-agents": "You delegate tasks to specialized agents with isolated context. By precisely
|
|
122
|
-
"domain-modeling": "Actively build and sharpen the project's domain model as you design. This is the",
|
|
123
|
-
"edit-article": "1. First, divide the article into sections based on its headings. Think about
|
|
121
|
+
"dispatching-parallel-agents": "You delegate tasks to specialized agents with isolated context. By precisely crafting their instructions and context, you ensure they stay focused and succeed at their task. They should never inherit…",
|
|
122
|
+
"domain-modeling": "Actively build and sharpen the project's domain model as you design. This is the *active* discipline — challenging terms, inventing edge-case scenarios, and writing the glossary and decisions down th…",
|
|
123
|
+
"edit-article": "1. First, divide the article into sections based on its headings. Think about the main points you want to make during those sections.",
|
|
124
124
|
"executing-plans": "Load plan, review critically, execute all tasks, report when complete.",
|
|
125
|
-
"finishing-a-development-branch": "Guide completion of development work by presenting clear options and handling
|
|
126
|
-
"git-guardrails-claude-code": "Sets up a PreToolUse hook that intercepts and blocks dangerous git commands
|
|
125
|
+
"finishing-a-development-branch": "Guide completion of development work by presenting clear options and handling chosen workflow.",
|
|
126
|
+
"git-guardrails-claude-code": "Sets up a PreToolUse hook that intercepts and blocks dangerous git commands before Claude executes them.",
|
|
127
127
|
"grill-me": "Run a `/grilling` session.",
|
|
128
128
|
"grill-with-docs": "Run a `/grilling` session, using the `/domain-modeling` skill.",
|
|
129
|
-
"grilling": "Interview me relentlessly about every aspect of this plan until we reach a
|
|
130
|
-
"handoff": "Write a handoff document summarising the current conversation so a fresh agent
|
|
131
|
-
"i-am-dumb": "The user wants something explained in extreme detail. They are not",
|
|
129
|
+
"grilling": "Interview me relentlessly about every aspect of this plan until we reach a shared understanding. Walk down each branch of the design tree, resolving dependencies between decisions one-by-one. For eac…",
|
|
130
|
+
"handoff": "Write a handoff document summarising the current conversation so a fresh agent can continue the work. Save to the temporary directory of the user's OS - not the current workspace.",
|
|
131
|
+
"i-am-dumb": "The user wants something explained in extreme detail. They are not actually dumb — they just want the full picture without assumptions about what they already know.",
|
|
132
132
|
"implement": "Implement the work described by the user in the PRD or issues.",
|
|
133
|
-
"improve-codebase-architecture": "Surface architectural friction and propose **deepening opportunities** —
|
|
134
|
-
"migrate-to-shoehorn": "`shoehorn` lets you pass partial data in tests while keeping TypeScript happy.
|
|
133
|
+
"improve-codebase-architecture": "Surface architectural friction and propose **deepening opportunities** — refactors that turn shallow modules into deep ones. The aim is testability and AI-navigability.",
|
|
134
|
+
"migrate-to-shoehorn": "`shoehorn` lets you pass partial data in tests while keeping TypeScript happy. It replaces `as` assertions with type-safe alternatives.",
|
|
135
135
|
"obsidian-vault": "`/mnt/d/Obsidian Vault/AI Research/`",
|
|
136
|
-
"ponytail": "You are a lazy senior developer. Lazy means efficient, not careless. You have",
|
|
137
|
-
"ponytail-audit": "Scan the entire repository for over-engineering. Produce a ranked list of",
|
|
138
|
-
"ponytail-debt": "Scan the codebase for `ponytail:` comments and report them as a debt ledger.",
|
|
139
|
-
"ponytail-gain": "Display this scoreboard when invoked. One-shot: do NOT change mode, write flag",
|
|
140
|
-
"ponytail-help": "Display this reference card when invoked. One-shot, do NOT change mode,",
|
|
141
|
-
"ponytail-review": "Review the diff or codebase for over-engineering only. Goal: make the code",
|
|
142
|
-
"prototype": "A prototype is **throwaway code that answers a question**. The question decides ",
|
|
136
|
+
"ponytail": "You are a lazy senior developer. Lazy means efficient, not careless. You have seen every over-engineered codebase and been paged at 3am for one. The best code is the code never written.",
|
|
137
|
+
"ponytail-audit": "Scan the entire repository for over-engineering. Produce a ranked list of findings by impact. Apply no changes — report only unless user explicitly requests fixes.",
|
|
138
|
+
"ponytail-debt": "Scan the codebase for `ponytail:` comments and report them as a debt ledger. Read-only by default — make no changes unless explicitly asked.",
|
|
139
|
+
"ponytail-gain": "Display this scoreboard when invoked. One-shot: do NOT change mode, write flag files, or persist anything.",
|
|
140
|
+
"ponytail-help": "Display this reference card when invoked. One-shot, do NOT change mode, write flag files, or persist anything.",
|
|
141
|
+
"ponytail-review": "Review the diff or codebase for over-engineering only. Goal: make the code shorter. Report findings as one line each. Apply no fixes unless explicitly asked.",
|
|
142
|
+
"prototype": "A prototype is **throwaway code that answers a question**. The question decides the shape.",
|
|
143
143
|
"receiving-code-review": "Code review requires technical evaluation, not emotional performance.",
|
|
144
|
-
"requesting-code-review": "Dispatch a code reviewer subagent to catch issues before they cascade. The
|
|
145
|
-
"resolving-merge-conflicts": "1. **See the current state** of the merge/rebase. Check git history, and the
|
|
146
|
-
"scaffold-exercises": "Create exercise directory structures that pass `pnpm ai-hero-cli internal lint`,",
|
|
144
|
+
"requesting-code-review": "Dispatch a code reviewer subagent to catch issues before they cascade. The reviewer gets precisely crafted context for evaluation — never your session's history. This keeps the reviewer focused on th…",
|
|
145
|
+
"resolving-merge-conflicts": "1. **See the current state** of the merge/rebase. Check git history, and the conflicting files.",
|
|
146
|
+
"scaffold-exercises": "Create exercise directory structures that pass `pnpm ai-hero-cli internal lint`, then commit with `git commit`.",
|
|
147
147
|
"setup-matt-pocock-skills": "Scaffold the per-repo configuration that the engineering skills assume:",
|
|
148
|
-
"setup-pre-commit": "- **Husky** pre-commit hook",
|
|
149
|
-
"subagent-driven-development": "Execute plan by dispatching a fresh implementer subagent per task, a task review",
|
|
150
|
-
"systematic-debugging": "Random fixes waste time and create new bugs. Quick patches mask underlying
|
|
151
|
-
"tdd": "**Core principle**: Tests should verify behavior through public interfaces, not ",
|
|
152
|
-
"teach": "The user has asked you to teach them something. This is a stateful request - the",
|
|
148
|
+
"setup-pre-commit": "- **Husky** pre-commit hook - **lint-staged** running Prettier on all staged files - **Prettier** config (if missing) - **typecheck** and **test** scripts in the pre-commit hook",
|
|
149
|
+
"subagent-driven-development": "Execute plan by dispatching a fresh implementer subagent per task, a task review (spec compliance + code quality) after each, and a broad whole-branch review at the end.",
|
|
150
|
+
"systematic-debugging": "Random fixes waste time and create new bugs. Quick patches mask underlying issues.",
|
|
151
|
+
"tdd": "**Core principle**: Tests should verify behavior through public interfaces, not implementation details. Code can change entirely; tests shouldn't.",
|
|
152
|
+
"teach": "The user has asked you to teach them something. This is a stateful request - they intend to learn the topic over multiple sessions.",
|
|
153
153
|
"test-driven-development": "Write the test first. Watch it fail. Write minimal code to pass.",
|
|
154
|
-
"to-issues": "Break a plan into independently-grabbable issues using vertical slices (tracer
|
|
155
|
-
"to-prd": "This skill takes the current conversation context and codebase understanding and",
|
|
156
|
-
"triage": "Move issues on the project issue tracker through a small state machine of triage",
|
|
157
|
-
"using-git-worktrees": "Ensure work happens in an isolated workspace. Prefer your platform's native
|
|
158
|
-
"using-superpowers": "<SUBAGENT-STOP>",
|
|
154
|
+
"to-issues": "Break a plan into independently-grabbable issues using vertical slices (tracer bullets).",
|
|
155
|
+
"to-prd": "This skill takes the current conversation context and codebase understanding and produces a PRD. Do NOT interview the user — just synthesize what you already know.",
|
|
156
|
+
"triage": "Move issues on the project issue tracker through a small state machine of triage roles.",
|
|
157
|
+
"using-git-worktrees": "Ensure work happens in an isolated workspace. Prefer your platform's native worktree tools. Fall back to manual git worktrees only when no native tool is available.",
|
|
158
|
+
"using-superpowers": "<SUBAGENT-STOP> If you were dispatched as a subagent to execute a specific task, skip this skill. </SUBAGENT-STOP>",
|
|
159
159
|
"verification-before-completion": "Claiming work is complete without verification is dishonesty, not efficiency.",
|
|
160
|
-
"writing-great-skills": "A skill exists to wrangle determinism out of a stochastic system. **
|
|
161
|
-
"writing-plans": "Write comprehensive implementation plans assuming the engineer has zero context ",
|
|
160
|
+
"writing-great-skills": "A skill exists to wrangle determinism out of a stochastic system. **Predictability** — the agent taking the same _process_ every run, not producing the same output — is the root virtue; every lever b…",
|
|
161
|
+
"writing-plans": "Write comprehensive implementation plans assuming the engineer has zero context for our codebase and questionable taste. Document everything they need to know: which files to touch for each task, cod…",
|
|
162
162
|
"writing-skills": "**Writing skills IS Test-Driven Development applied to process documentation.**"
|
|
163
163
|
}
|
|
164
164
|
}
|