@kennethsolomon/shipkit 3.15.1 → 3.16.0

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.
Files changed (64) hide show
  1. package/README.md +231 -1
  2. package/bin/shipkit.js +24 -4
  3. package/commands/sk/branch.md +1 -0
  4. package/commands/sk/finish-feature.md +1 -0
  5. package/commands/sk/hotfix.md +1 -0
  6. package/commands/sk/security-check.md +2 -1
  7. package/package.json +1 -1
  8. package/skills/sk:accessibility/SKILL.md +3 -0
  9. package/skills/sk:autopilot/SKILL.md +1 -1
  10. package/skills/sk:ci/SKILL.md +338 -0
  11. package/skills/sk:context/SKILL.md +1 -0
  12. package/skills/sk:e2e/SKILL.md +1 -0
  13. package/skills/sk:fast-track/SKILL.md +1 -1
  14. package/skills/sk:gates/SKILL.md +1 -1
  15. package/skills/sk:lint/SKILL.md +1 -0
  16. package/skills/sk:perf/SKILL.md +1 -0
  17. package/skills/sk:plugin/SKILL.md +221 -0
  18. package/skills/sk:release/SKILL.md +2 -0
  19. package/skills/sk:retro/SKILL.md +1 -1
  20. package/skills/sk:reverse-doc/SKILL.md +3 -1
  21. package/skills/sk:review/SKILL.md +1 -0
  22. package/skills/sk:scope-check/SKILL.md +1 -1
  23. package/skills/sk:security-check/SKILL.md +219 -0
  24. package/skills/sk:seo-audit/SKILL.md +3 -0
  25. package/skills/sk:setup-claude/templates/.claude/agents/architect.md +62 -0
  26. package/skills/sk:setup-claude/templates/.claude/agents/backend-dev.md +3 -1
  27. package/skills/sk:setup-claude/templates/.claude/agents/code-reviewer.md +38 -0
  28. package/skills/sk:setup-claude/templates/.claude/agents/database-architect.md +69 -0
  29. package/skills/sk:setup-claude/templates/.claude/agents/debugger.md +26 -0
  30. package/skills/sk:setup-claude/templates/.claude/agents/devops-engineer.md +51 -0
  31. package/skills/sk:setup-claude/templates/.claude/agents/e2e-tester.md +1 -1
  32. package/skills/sk:setup-claude/templates/.claude/agents/frontend-dev.md +3 -1
  33. package/skills/sk:setup-claude/templates/.claude/agents/linter.md +1 -1
  34. package/skills/sk:setup-claude/templates/.claude/agents/mobile-dev.md +49 -0
  35. package/skills/sk:setup-claude/templates/.claude/agents/perf-auditor.md +1 -1
  36. package/skills/sk:setup-claude/templates/.claude/agents/performance-optimizer.md +72 -0
  37. package/skills/sk:setup-claude/templates/.claude/agents/qa-engineer.md +3 -1
  38. package/skills/sk:setup-claude/templates/.claude/agents/refactor-specialist.md +67 -0
  39. package/skills/sk:setup-claude/templates/.claude/agents/security-auditor.md +2 -1
  40. package/skills/sk:setup-claude/templates/.claude/agents/tech-writer.md +60 -0
  41. package/skills/sk:setup-claude/templates/.claude/agents/test-runner.md +2 -1
  42. package/skills/sk:setup-claude/templates/.claude/rules/api.md.template +9 -3
  43. package/skills/sk:setup-claude/templates/.claude/rules/frontend.md.template +9 -3
  44. package/skills/sk:setup-claude/templates/.claude/rules/laravel.md.template +8 -3
  45. package/skills/sk:setup-claude/templates/.claude/rules/migrations.md.template +24 -0
  46. package/skills/sk:setup-claude/templates/.claude/rules/react.md.template +8 -3
  47. package/skills/sk:setup-claude/templates/.claude/rules/tests.md.template +12 -3
  48. package/skills/sk:setup-claude/templates/.claude/rules/vue.md.template +22 -0
  49. package/skills/sk:setup-optimizer/SKILL.md +61 -2
  50. package/skills/sk:smart-commit/SKILL.md +1 -0
  51. package/skills/sk:start/SKILL.md +1 -1
  52. package/skills/sk:team/SKILL.md +1 -1
  53. package/skills/sk:website/SKILL.md +1 -0
  54. package/commands/sk/autopilot.md +0 -22
  55. package/commands/sk/context-budget.md +0 -5
  56. package/commands/sk/eval.md +0 -5
  57. package/commands/sk/health.md +0 -5
  58. package/commands/sk/learn.md +0 -5
  59. package/commands/sk/resume-session.md +0 -5
  60. package/commands/sk/safety-guard.md +0 -5
  61. package/commands/sk/save-session.md +0 -5
  62. package/commands/sk/start.md +0 -30
  63. package/commands/sk/team.md +0 -23
  64. package/commands/sk/website.md +0 -93
@@ -0,0 +1,67 @@
1
+ ---
2
+ name: refactor-specialist
3
+ description: Systematic refactoring agent — eliminates duplication, extracts abstractions, improves naming, and reduces complexity without changing behavior. Runs tests before and after. Use for codebase cleanup or before adding features to messy areas.
4
+ model: sonnet
5
+ tools: Read, Edit, Write, Bash, Grep, Glob
6
+ memory: project
7
+ isolation: worktree
8
+ ---
9
+
10
+ You are a refactoring specialist. Your job is to improve code structure without changing observable behavior. Tests must pass before and after every change.
11
+
12
+ ## On Invocation
13
+
14
+ 1. Read `tasks/findings.md` and `tasks/lessons.md`
15
+ 2. Identify the refactoring target (passed as argument or inferred from recent diff)
16
+ 3. Run the test suite — **must be green before you start**. If tests fail, stop and report.
17
+
18
+ ## Refactoring Principles
19
+
20
+ **What to change:**
21
+ - Duplication — extract shared logic into a single, well-named function
22
+ - Long functions — break into smaller functions with descriptive names (max ~20 lines each)
23
+ - Deep nesting — extract early returns, extract inner blocks into functions
24
+ - Poor naming — rename variables, functions, and files to reflect their actual purpose
25
+ - Large files — split by responsibility (one concern per file)
26
+ - Magic values — extract to named constants
27
+
28
+ **What NOT to change:**
29
+ - Public APIs, exported interfaces, URL routes — these break consumers
30
+ - Behavior — if the tests pass, behavior is preserved
31
+ - Premature abstractions — don't create a helper used only once
32
+ - Working ugly code — ugly but working code that isn't in your change area stays as-is
33
+
34
+ ## Process
35
+
36
+ For each refactor:
37
+ 1. **Describe** — "Extract [X] from [Y] into [Z] because [reason]"
38
+ 2. **Make the change** — one logical refactor at a time
39
+ 3. **Run tests** — must still pass
40
+ 4. **Commit** — `refactor([scope]): [description]`
41
+
42
+ Repeat until done. Each commit = one logical change.
43
+
44
+ ## Output
45
+
46
+ ```
47
+ ## Refactor Plan
48
+
49
+ ### Changes Made
50
+ 1. [description] — [file:line] — [reason]
51
+ 2. [description] — [file:line] — [reason]
52
+
53
+ ### Test Results
54
+ Before: [N] passing
55
+ After: [N] passing (no regression)
56
+
57
+ ### Not Changed (out of scope)
58
+ - [item] — [reason]
59
+ ```
60
+
61
+ ## Rules
62
+ - Green tests before you start — if they're red, stop and report
63
+ - One logical change per commit — do not batch unrelated refactors
64
+ - Never change behavior — if you're unsure, don't change it
65
+ - Never extract abstractions used only once
66
+ - 3-strike protocol: 3 test failures after a change → revert and report
67
+ - Update memory with code patterns and naming conventions in this codebase
@@ -2,7 +2,8 @@
2
2
  name: security-auditor
3
3
  model: sonnet
4
4
  description: Audit changed code for OWASP Top 10 and security best practices. Fix findings and auto-commit.
5
- allowed_tools: Bash, Read, Edit, Write, Glob, Grep
5
+ allowed-tools: Bash, Read, Edit, Write, Glob, Grep
6
+ memory: user
6
7
  ---
7
8
 
8
9
  # Security Auditor Agent
@@ -0,0 +1,60 @@
1
+ ---
2
+ name: tech-writer
3
+ description: Documentation generation agent — creates README, API docs, architecture docs, and inline comments from existing code. Never invents behavior — always reads code first. Use with /sk:reverse-doc or standalone documentation tasks.
4
+ model: sonnet
5
+ tools: Read, Write, Edit, Grep, Glob
6
+ memory: project
7
+ ---
8
+
9
+ You are a technical writer specializing in developer documentation. You make codebases comprehensible — to future contributors, to users, and to the developers themselves six months later.
10
+
11
+ ## On Invocation
12
+
13
+ 1. Identify the documentation target (passed as argument or inferred from context)
14
+ 2. Read ALL relevant source files before writing a single word
15
+ 3. Read `tasks/findings.md` and `tasks/lessons.md` for project context
16
+ 4. Ask 1-3 clarifying questions if intent is genuinely unclear
17
+
18
+ **Critical principle: Never invent behavior. If the code does X, document X. If you're unsure what the code does, ask.**
19
+
20
+ ## Documentation Types
21
+
22
+ ### README
23
+ Structure:
24
+ 1. One-line description (what it does, not what it is)
25
+ 2. Quick start (3 commands to go from zero to running)
26
+ 3. Installation (prerequisites, steps)
27
+ 4. Usage (most common operations with real examples)
28
+ 5. Configuration (environment variables, config options)
29
+ 6. API reference (if applicable)
30
+ 7. Contributing (how to run tests, PR process)
31
+
32
+ ### API Documentation
33
+ - Every endpoint: method, path, auth requirements, request shape, response shape, error codes
34
+ - Real request/response examples (not generic placeholders)
35
+ - Authentication flow with actual code examples
36
+ - Rate limiting and pagination details
37
+
38
+ ### Architecture Documentation
39
+ - System diagram (ASCII if needed)
40
+ - Component responsibilities and boundaries
41
+ - Data flow for the 2-3 most important operations
42
+ - Key design decisions and why they were made
43
+ - Known limitations and trade-offs
44
+
45
+ ### Inline Comments
46
+ - Only where logic is non-obvious
47
+ - Explain WHY, not WHAT (the code shows what; comments explain why)
48
+ - Remove outdated comments found during review
49
+
50
+ ## Output Quality Standards
51
+ - Real examples — no `[placeholder]`, no `example.com/api`
52
+ - Present tense — "Returns the user object", not "Will return"
53
+ - Imperative mood in instructions — "Run `npm install`", not "You should run"
54
+ - No filler — every sentence must carry information
55
+
56
+ ## Rules
57
+ - Read before writing — always
58
+ - Never document what the code does not do
59
+ - Flag discrepancies: if docs say X but code does Y, call it out explicitly
60
+ - Update memory with documentation conventions in this project
@@ -2,7 +2,8 @@
2
2
  name: test-runner
3
3
  model: sonnet
4
4
  description: Run all project test suites, fix failures, ensure 100% coverage on new code.
5
- allowed_tools: Bash, Read, Edit, Write, Glob, Grep
5
+ allowed-tools: Bash, Read, Edit, Write, Glob, Grep
6
+ memory: project
6
7
  ---
7
8
 
8
9
  # Test Runner Agent
@@ -1,7 +1,13 @@
1
- <!-- Generated by /setup-claude -->
2
- # API Standards
1
+ ---
2
+ paths:
3
+ - "routes/api.php"
4
+ - "app/Http/Controllers/**"
5
+ - "**/controllers/**"
6
+ - "**/handlers/**"
7
+ - "src/api/**"
8
+ ---
3
9
 
4
- Applies to: `routes/api/`, `app/Http/Controllers/Api/`, `src/api/`, `src/routes/`
10
+ # API Standards
5
11
 
6
12
  ## Conventions
7
13
 
@@ -1,7 +1,13 @@
1
- <!-- Generated by /setup-claude -->
2
- # Frontend Standards
1
+ ---
2
+ paths:
3
+ - "resources/**"
4
+ - "src/components/**"
5
+ - "app/components/**"
6
+ - "src/pages/**"
7
+ - "src/views/**"
8
+ ---
3
9
 
4
- Applies to: `resources/`, `src/components/`, `app/components/`, `src/pages/`, `src/views/`
10
+ # Frontend Standards
5
11
 
6
12
  ## Conventions
7
13
 
@@ -1,7 +1,12 @@
1
- <!-- Generated by /setup-claude -->
2
- # Laravel Standards
1
+ ---
2
+ paths:
3
+ - "app/**/*.php"
4
+ - "routes/**/*.php"
5
+ - "config/**/*.php"
6
+ - "database/**/*.php"
7
+ ---
3
8
 
4
- Applies to: `app/`, `routes/`, `database/`, `config/`
9
+ # Laravel Standards
5
10
 
6
11
  ## Conventions
7
12
 
@@ -0,0 +1,24 @@
1
+ ---
2
+ paths:
3
+ - "database/migrations/**"
4
+ - "prisma/**"
5
+ - "**/*.migration.ts"
6
+ - "db/migrate/**"
7
+ - "db/schema.rb"
8
+ ---
9
+
10
+ # Database Migration Standards
11
+
12
+ ## Rules
13
+
14
+ - All migrations must be reversible — always implement `down()` or rollback
15
+ - Never modify a merged migration — create a new one
16
+ - Adding columns to existing tables: nullable or with default — never NOT NULL without default
17
+ - Dropping columns in production: 3-step (stop writing + deploy → drop column → clean code)
18
+ - Always add indexes on foreign key columns
19
+ - Naming: `create_users_table`, `add_email_to_users`, `drop_legacy_tokens_from_users`
20
+ - Wrap destructive operations in transactions
21
+ - Run `migrate:fresh` (or equivalent) in CI to catch issues early
22
+ - Seed data in seeders/fixtures — never hardcoded inside migrations
23
+ - Backfilling large tables: use batched updates — never update millions of rows at once
24
+ - Explicit index naming: `idx_users_email` — do not rely on auto-generated names
@@ -1,7 +1,12 @@
1
- <!-- Generated by /setup-claude -->
2
- # React Standards
1
+ ---
2
+ paths:
3
+ - "**/*.tsx"
4
+ - "**/*.jsx"
5
+ - "src/**/*.ts"
6
+ - "resources/js/**"
7
+ ---
3
8
 
4
- Applies to: `src/components/`, `src/hooks/`, `src/pages/`, `app/components/`
9
+ # React Standards
5
10
 
6
11
  ## Conventions
7
12
 
@@ -1,7 +1,16 @@
1
- <!-- Generated by /setup-claude -->
2
- # Testing Standards
1
+ ---
2
+ paths:
3
+ - "tests/**"
4
+ - "test/**"
5
+ - "__tests__/**"
6
+ - "**/*.test.ts"
7
+ - "**/*.test.js"
8
+ - "**/*.spec.ts"
9
+ - "**/*.spec.js"
10
+ - "**/*.test.php"
11
+ ---
3
12
 
4
- Applies to: `tests/`, `test/`, `__tests__/`, `spec/`
13
+ # Testing Standards
5
14
 
6
15
  ## Conventions
7
16
 
@@ -0,0 +1,22 @@
1
+ ---
2
+ paths:
3
+ - "**/*.vue"
4
+ - "resources/js/**/*.ts"
5
+ ---
6
+
7
+ # Vue 3 Standards
8
+
9
+ ## Conventions
10
+
11
+ - Composition API only — no Options API in new code
12
+ - Prefer `<script setup>` syntax for SFCs
13
+ - `defineProps` with TypeScript types — always validate prop types
14
+ - Always declare emits with typed `defineEmits` interface
15
+ - Composables: prefix with `use` (`useAuth`, `useCart`) — one concern per composable
16
+ - `ref` for primitives, `reactive` for objects — be consistent within a file
17
+ - `computed`: no side effects — read-only getters only
18
+ - Prefer `watchEffect` when dependencies are obvious; use `watch` for explicit control
19
+ - All `v-for` must have `:key` — stable IDs, never array index
20
+ - No logic in templates beyond simple ternaries — extract to computed
21
+ - Pinia stores: one store per domain; actions for mutations, getters for derived state
22
+ - `nextTick`: use sparingly — frequent use usually indicates a design issue
@@ -45,7 +45,10 @@ Before making any changes, runs a diagnostic pass on the existing CLAUDE.md:
45
45
  - **Inconsistencies** — compares documented vs actual project state (directories, scripts, workflows)
46
46
  - **Section completeness** — flags sections that exist but are empty or have only placeholder text
47
47
  - **Outdated workflow** — checks if the workflow matches the current 8-step flow with `/sk:gates` as single gate step
48
- - **Missing commands** — checks for `sk:start`, `sk:autopilot`, `sk:team`, `sk:learn`, `sk:context-budget`, `sk:health`, `sk:save-session`, `sk:resume-session`, `sk:safety-guard`, `sk:eval` in the Commands table
48
+ - **Missing commands** — checks for `sk:start`, `sk:autopilot`, `sk:team`, `sk:learn`, `sk:context-budget`, `sk:health`, `sk:save-session`, `sk:resume-session`, `sk:safety-guard`, `sk:eval`, `sk:ci`, `sk:plugin` in the Commands table
49
+ - **Missing agents** — checks if `.claude/agents/` exists and contains the 13 core agents: `backend-dev`, `frontend-dev`, `mobile-dev`, `qa-engineer`, `code-reviewer`, `security-reviewer`, `performance-optimizer`, `architect`, `database-architect`, `devops-engineer`, `debugger`, `refactor-specialist`, `tech-writer`
50
+ - **Missing rules** — checks if `.claude/rules/` exists and contains the project-relevant rule files based on detected stack (laravel.md, react.md, vue.md, tests.md, api.md, migrations.md)
51
+ - **Stale agent frontmatter** — checks that existing agent files use the new `memory`, `model`, and `tools` frontmatter fields (agents without `memory` are degraded)
49
52
  - **Auto-skip rules** — checks for auto-skip detection rules in the workflow section
50
53
  - **Stale tracker references** — checks for `tasks/workflow-status.md` references (removed — progress tracked via git branch + todo.md checkboxes)
51
54
  - **Missing hooks** — checks if `.claude/hooks/` exists and contains both core and enhanced hooks
@@ -191,10 +194,66 @@ After LSP check, verify the three recommended tools are configured:
191
194
  - Context7: add `context7@claude-plugins-official: true` to `~/.claude/settings.json` enabledPlugins
192
195
  - ccstatusline: run `npx ccstatusline@latest`
193
196
 
194
- **If no:** skip, continue to Step 2.
197
+ **If no:** skip, continue to Step 1.8.
195
198
 
196
199
  **Idempotency:** Never overwrite existing MCP entries, plugin flags, or statusline config — additive merge only.
197
200
 
201
+ ### Step 1.8: Agents & Rules Check
202
+
203
+ After MCP check, verify the project has formal agent definitions and path-scoped rules:
204
+
205
+ **Agents check:**
206
+
207
+ 1. Check if `.claude/agents/` directory exists
208
+ 2. Check for the 13 core agents:
209
+ - **Implementation:** `backend-dev.md`, `frontend-dev.md`, `mobile-dev.md`
210
+ - **Quality:** `qa-engineer.md`, `code-reviewer.md`, `security-reviewer.md`, `performance-optimizer.md`
211
+ - **Design:** `architect.md`, `database-architect.md`
212
+ - **Operations:** `devops-engineer.md`
213
+ - **Maintenance:** `debugger.md`, `refactor-specialist.md`, `tech-writer.md`
214
+ 3. For each existing agent, check if it has `memory:` and `model:` in frontmatter (older agents may be missing these)
215
+
216
+ **Rules check:**
217
+
218
+ 1. Check if `.claude/rules/` directory exists
219
+ 2. Detect project stack from `CLAUDE.md`, `package.json`, `composer.json`
220
+ 3. Check for relevant rule files based on detected stack:
221
+ - Laravel/PHP detected → check for `laravel.md`, `api.md`, `migrations.md`
222
+ - React/Next.js detected → check for `react.md`, `tests.md`, `api.md`
223
+ - Vue/Nuxt detected → check for `vue.md`, `tests.md`, `api.md`
224
+ - Any stack → check for `tests.md`
225
+
226
+ **Report status and prompt:**
227
+
228
+ > "Agents: [X/13] core agents found
229
+ > backend-dev: [✓ / ✗ missing]
230
+ > frontend-dev: [✓ / ✗ missing]
231
+ > mobile-dev: [✓ / ✗ missing]
232
+ > qa-engineer: [✓ / ✗ missing]
233
+ > code-reviewer: [✓ / ✗ missing]
234
+ > security-reviewer: [✓ / ✗ missing]
235
+ > performance-optimizer: [✓ / ✗ missing]
236
+ > architect: [✓ / ✗ missing]
237
+ > database-architect: [✓ / ✗ missing]
238
+ > devops-engineer: [✓ / ✗ missing]
239
+ > debugger: [✓ / ✗ missing]
240
+ > refactor-specialist: [✓ / ✗ missing]
241
+ > tech-writer: [✓ / ✗ missing]
242
+ >
243
+ > Rules: [X/N] stack-relevant rules found
244
+ > [list relevant rules with ✓/✗]
245
+ >
246
+ > Deploy missing agents and rules? [y/n]"
247
+
248
+ **If yes:**
249
+ - Copy missing agent files from `~/.claude/skills/sk:setup-claude/templates/.claude/agents/`
250
+ - Copy missing rule files from `~/.claude/skills/sk:setup-claude/templates/.claude/rules/`
251
+ - Only deploy agents/rules that don't exist yet — never overwrite existing customized files
252
+
253
+ **If no:** skip, continue to Step 2.
254
+
255
+ **Idempotency:** Never overwrite existing agent or rule files.
256
+
198
257
  ### Step 2: Scan & Enrich
199
258
 
200
259
  After workflow update, proceeds with codebase discovery and enrichment:
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: sk:smart-commit
3
3
  description: "Analyze staged changes, auto-detect commit type, and generate conventional commit messages with approval workflow."
4
+ disable-model-invocation: true
4
5
  ---
5
6
 
6
7
  # Smart Conventional Commits
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: sk:start
3
3
  description: Smart entry point — classifies your task, detects scope, and routes to the optimal flow (feature/debug/hotfix/fast-track), mode (manual/autopilot), and agent strategy (solo/team).
4
- allowed_tools: Read, Write, Bash, Glob, Grep, Agent, Skill
4
+ allowed-tools: Read, Write, Bash, Glob, Grep, Agent, Skill
5
5
  ---
6
6
 
7
7
  # Smart Start
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  name: sk:team
3
3
  description: Parallel domain agents for full-stack implementation — spawns Backend, Frontend, and QA agents in isolated worktrees.
4
- allowed_tools: Read, Write, Bash, Glob, Grep, Agent
4
+ allowed-tools: Read, Write, Bash, Glob, Grep, Agent
5
5
  ---
6
6
 
7
7
  # Team Mode
@@ -1,6 +1,7 @@
1
1
  ---
2
2
  name: sk:website
3
3
  description: Build a complete, client-deliverable multi-page marketing website from a brief, URL, or one sentence. NOT a prototype — a real site you hand to a client. Auto-builds from intake to handoff package. Use --revise for change iterations after initial build.
4
+ argument-hint: "[--revise] [URL or brief]"
4
5
  ---
5
6
 
6
7
  # /sk:website — Client Website Builder
@@ -1,22 +0,0 @@
1
- ---
2
- description: "Hands-free workflow — all 8 steps, auto-skip, auto-advance, auto-commit. Stops only for direction approval and PR push."
3
- ---
4
-
5
- # /sk:autopilot
6
-
7
- Run the full ShipIt workflow in hands-free mode.
8
-
9
- Usage: `/sk:autopilot <task description>`
10
-
11
- Executes all 8 workflow steps with:
12
- - **Auto-skip** — optional steps skipped when clearly not needed
13
- - **Auto-advance** — no manual step transitions
14
- - **Auto-commit** — conventional format, no approval prompt
15
- - **Same quality gates** — all gates enforced, same fix loops
16
-
17
- Stops only for:
18
- 1. Direction approval (after brainstorm)
19
- 2. 3-strike failures
20
- 3. PR push confirmation
21
-
22
- See `skills/sk:autopilot/SKILL.md` for full details.
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Audit context window token consumption and find optimization opportunities."
3
- ---
4
-
5
- Use the `sk:context-budget` skill to inventory all components consuming context tokens (agents, skills, rules, MCP tools, CLAUDE.md), classify usage frequency, detect bloat, and recommend top 3 optimizations with estimated token savings.
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Define, run, and report on evaluations for agent reliability and code quality."
3
- ---
4
-
5
- Use the `sk:eval` skill to define eval criteria before coding (`define`), verify during implementation (`check`), and summarize results after shipping (`report`). Supports code-based, model-based, and human graders with pass@k and pass^k metrics.
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Run harness self-audit and produce a health scorecard."
3
- ---
4
-
5
- Use the `sk:health` skill to score your ShipKit setup across 7 categories (Tool Coverage, Context Efficiency, Quality Gates, Memory Persistence, Eval Coverage, Security Guardrails, Cost Efficiency). Produces a 0-70 scorecard with concrete findings and top 3 actions.
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Extract reusable patterns from the current session into learned instincts."
3
- ---
4
-
5
- Use the `sk:learn` skill to analyze the current session for extractable patterns (error resolutions, debugging techniques, workarounds, project conventions). Patterns are saved with confidence scoring and can be promoted from project-scoped to global.
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Resume a previously saved session with full context restoration."
3
- ---
4
-
5
- Use the `sk:resume-session` skill to list available saved sessions from `.claude/sessions/`, select one, and restore its context (branch, task state, progress, open questions, next steps) into the current conversation.
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Protect against destructive operations with careful, freeze, and guard modes."
3
- ---
4
-
5
- Use the `sk:safety-guard` skill to activate protection modes: `careful` (block destructive commands), `freeze --dir <path>` (lock edits to a directory), `guard --dir <path>` (both), `off` (disable), or `status` (show current mode).
@@ -1,5 +0,0 @@
1
- ---
2
- description: "Save current session state for cross-session continuity."
3
- ---
4
-
5
- Use the `sk:save-session` skill to persist the current session state (branch, task, progress, findings, open questions) to `.claude/sessions/` for resumption in a future conversation. Essential for EPIC-scope multi-session workflows.
@@ -1,30 +0,0 @@
1
- ---
2
- description: "Smart entry point — classifies your task and routes to the optimal flow, mode, and agent strategy."
3
- ---
4
-
5
- # /sk:start
6
-
7
- Smart entry point for all ShipIt work. Classifies your task and recommends the best workflow configuration.
8
-
9
- Usage: `/sk:start <task description>`
10
-
11
- Examples:
12
- ```
13
- /sk:start add user profile page with avatar upload
14
- /sk:start fix login redirect loop
15
- /sk:start urgent: payments failing in production
16
- /sk:start bump lodash to latest version
17
- ```
18
-
19
- **What it does:**
20
- 1. **Classifies** — detects if it's a feature, bug, hotfix, or small change
21
- 2. **Detects scope** — full-stack, frontend-only, or backend-only
22
- 3. **Recommends** — optimal flow + mode (autopilot/manual) + agents (team/solo)
23
- 4. **Routes** — enters the chosen workflow after your confirmation
24
-
25
- **Override flags:**
26
- - `--manual` — force step-by-step mode
27
- - `--team` / `--no-team` — force team or solo agents
28
- - `--debug` / `--hotfix` / `--fast-track` — force a specific flow
29
-
30
- See `skills/sk:start/SKILL.md` for full details.
@@ -1,23 +0,0 @@
1
- ---
2
- description: "Parallel domain agents — spawns Backend, Frontend, and QA agents for full-stack implementation."
3
- ---
4
-
5
- # /sk:team
6
-
7
- Split implementation across parallel domain agents.
8
-
9
- Usage: `/sk:team`
10
-
11
- Spawns 3 specialized agents in parallel:
12
- - **Backend Agent** (worktree) — backend tests + implementation
13
- - **Frontend Agent** (worktree) — frontend tests + implementation
14
- - **QA Agent** (background) — E2E test scenarios
15
-
16
- **Prerequisite:** Plan must contain an explicit API contract section.
17
-
18
- Falls back to single-agent mode if:
19
- - No API contract in plan
20
- - Backend-only or frontend-only task
21
- - Worktree creation fails
22
-
23
- See `skills/sk:team/SKILL.md` for full details.
@@ -1,93 +0,0 @@
1
- ---
2
- description: Build a complete, client-deliverable multi-page marketing website from a brief, URL, or one sentence. Auto-builds from intake to handoff. Supports Next.js (default), Nuxt 3, and Laravel. Use --revise for client feedback iterations.
3
- ---
4
-
5
- Build a production-ready multi-page marketing website for delivery to a client. This is NOT a prototype or MVP — it outputs real copy, real structure, and a full client handoff package (HANDOFF.md, DEPLOY.md, CONTENT-GUIDE.md).
6
-
7
- Read and follow `skills/sk:website/SKILL.md` exactly.
8
-
9
- ## Quick start
10
-
11
- **From a URL (fastest):**
12
- ```
13
- /sk:website
14
- https://maps.google.com/?q=Your+Business
15
-
16
- Goal: [what to improve]
17
- CTA: [primary action]
18
- ```
19
-
20
- **From a one-liner:**
21
- ```
22
- /sk:website
23
- [Business name] — [type] in [city]. Goal: [goal]. CTA: [action].
24
- ```
25
-
26
- **With full brief:**
27
- See `skills/sk:website/references/brief-template.md` for the complete brief format.
28
-
29
- **With a specific stack:**
30
- ```
31
- /sk:website --stack nuxt
32
- [brief or URL]
33
-
34
- /sk:website --stack laravel
35
- [brief or URL]
36
- ```
37
-
38
- **With deploy after build:**
39
- ```
40
- /sk:website --deploy
41
- [brief or URL]
42
- ```
43
-
44
- **Combine flags freely:**
45
- ```
46
- /sk:website --stack nuxt --deploy
47
- [brief or URL]
48
- ```
49
-
50
- **For revisions after initial build:**
51
- ```
52
- /sk:website --revise
53
- Changes: [list changes in plain language]
54
- ```
55
-
56
- **Revise with a different stack context:**
57
- ```
58
- /sk:website --revise --stack laravel
59
- Changes: [list changes in plain language]
60
- ```
61
-
62
- ## What gets built
63
-
64
- - Multi-page site (Home, About, Services/Menu, Contact + niche extras)
65
- - Real copy — no Lorem ipsum, no `[placeholder]` headlines
66
- - SEO metadata on every page (title, description, OG, structured data)
67
- - WhatsApp floating CTA (auto-injected for local businesses in PH/SEA)
68
- - Lighthouse 90+ quality enforcement loop
69
- - Client handoff package (HANDOFF.md, DEPLOY.md, CONTENT-GUIDE.md)
70
-
71
- ## Supported stacks
72
-
73
- | Flag | Stack | WhatsApp pattern |
74
- |---|---|---|
75
- | (default) | Next.js App Router + TypeScript + Tailwind | React TSX component |
76
- | `--stack nuxt` | Nuxt 3 + Vue 3 + Tailwind | Vue SFC component |
77
- | `--stack laravel` | Laravel 11 + Blade + Tailwind + Alpine.js | Blade partial |
78
-
79
- Stack is auto-detected from existing project files if no flag is given.
80
-
81
- ## Reference files
82
-
83
- All references live in `skills/sk:website/references/`:
84
- - `brief-template.md` — intake format and examples
85
- - `art-direction.md` — 7 aesthetic directions
86
- - `content-seo.md` — messaging + local SEO rules
87
- - `launch-checklist.md` — prelaunch audit
88
- - `whatsapp-cta.md` — WhatsApp/Messenger implementation
89
- - `handoff-template.md` — 3 client deliverable templates
90
- - `stacks/nextjs.md` — Next.js file structure, patterns, deploy
91
- - `stacks/nuxt.md` — Nuxt 3 file structure, patterns, deploy
92
- - `stacks/laravel.md` — Laravel file structure, patterns, deploy
93
- - `niche/[type].md` — 15 industry-specific guides