learnship 1.9.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 (171) hide show
  1. package/.claude-plugin/plugin.json +26 -0
  2. package/.cursor-plugin/plugin.json +26 -0
  3. package/LICENSE +21 -0
  4. package/README.md +791 -0
  5. package/SKILL.md +86 -0
  6. package/agents/debugger.md +102 -0
  7. package/agents/executor.md +115 -0
  8. package/agents/learnship-debugger.md +146 -0
  9. package/agents/learnship-executor.md +155 -0
  10. package/agents/learnship-phase-researcher.md +128 -0
  11. package/agents/learnship-plan-checker.md +119 -0
  12. package/agents/learnship-planner.md +146 -0
  13. package/agents/learnship-verifier.md +157 -0
  14. package/agents/planner.md +109 -0
  15. package/agents/researcher.md +80 -0
  16. package/agents/verifier.md +114 -0
  17. package/bin/install.js +1242 -0
  18. package/bin/learnship.js +56 -0
  19. package/commands/learnship/add-phase.md +22 -0
  20. package/commands/learnship/add-tests.md +24 -0
  21. package/commands/learnship/add-todo.md +21 -0
  22. package/commands/learnship/audit-milestone.md +21 -0
  23. package/commands/learnship/check-todos.md +22 -0
  24. package/commands/learnship/cleanup.md +22 -0
  25. package/commands/learnship/complete-milestone.md +22 -0
  26. package/commands/learnship/debug.md +27 -0
  27. package/commands/learnship/decision-log.md +22 -0
  28. package/commands/learnship/diagnose-issues.md +23 -0
  29. package/commands/learnship/discovery-phase.md +24 -0
  30. package/commands/learnship/discuss-milestone.md +23 -0
  31. package/commands/learnship/discuss-phase.md +23 -0
  32. package/commands/learnship/execute-phase.md +27 -0
  33. package/commands/learnship/execute-plan.md +26 -0
  34. package/commands/learnship/health.md +20 -0
  35. package/commands/learnship/help.md +19 -0
  36. package/commands/learnship/insert-phase.md +22 -0
  37. package/commands/learnship/knowledge-base.md +21 -0
  38. package/commands/learnship/list-phase-assumptions.md +21 -0
  39. package/commands/learnship/ls.md +20 -0
  40. package/commands/learnship/map-codebase.md +23 -0
  41. package/commands/learnship/milestone-retrospective.md +21 -0
  42. package/commands/learnship/new-milestone.md +23 -0
  43. package/commands/learnship/new-project.md +24 -0
  44. package/commands/learnship/next.md +22 -0
  45. package/commands/learnship/pause-work.md +21 -0
  46. package/commands/learnship/plan-milestone-gaps.md +22 -0
  47. package/commands/learnship/plan-phase.md +24 -0
  48. package/commands/learnship/progress.md +20 -0
  49. package/commands/learnship/quick.md +27 -0
  50. package/commands/learnship/reapply-patches.md +21 -0
  51. package/commands/learnship/release.md +21 -0
  52. package/commands/learnship/remove-phase.md +23 -0
  53. package/commands/learnship/research-phase.md +23 -0
  54. package/commands/learnship/resume-work.md +21 -0
  55. package/commands/learnship/set-profile.md +21 -0
  56. package/commands/learnship/settings.md +21 -0
  57. package/commands/learnship/transition.md +21 -0
  58. package/commands/learnship/update.md +21 -0
  59. package/commands/learnship/validate-phase.md +22 -0
  60. package/commands/learnship/verify-work.md +23 -0
  61. package/cursor-rules/learnship.mdc +60 -0
  62. package/gemini-extension.json +10 -0
  63. package/hooks/hooks-claude.json +15 -0
  64. package/hooks/hooks-cursor.json +10 -0
  65. package/hooks/session-start +43 -0
  66. package/install.sh +254 -0
  67. package/learnship/references/design-commands.md +119 -0
  68. package/learnship/references/git-integration.md +249 -0
  69. package/learnship/references/learning-design.md +142 -0
  70. package/learnship/references/model-profiles.md +90 -0
  71. package/learnship/references/planning-config.md +184 -0
  72. package/learnship/references/questioning.md +162 -0
  73. package/learnship/references/ui-brand.md +160 -0
  74. package/learnship/references/verification-patterns.md +608 -0
  75. package/learnship/templates/agents.md +166 -0
  76. package/learnship/templates/context.md +72 -0
  77. package/learnship/templates/plan.md +202 -0
  78. package/learnship/templates/project.md +184 -0
  79. package/learnship/templates/requirements.md +231 -0
  80. package/learnship/templates/state.md +176 -0
  81. package/learnship/templates/uat.md +80 -0
  82. package/learnship/workflows/add-phase.md +84 -0
  83. package/learnship/workflows/add-tests.md +191 -0
  84. package/learnship/workflows/add-todo.md +108 -0
  85. package/learnship/workflows/audit-milestone.md +178 -0
  86. package/learnship/workflows/check-todos.md +138 -0
  87. package/learnship/workflows/cleanup.md +107 -0
  88. package/learnship/workflows/complete-milestone.md +191 -0
  89. package/learnship/workflows/debug.md +245 -0
  90. package/learnship/workflows/decision-log.md +131 -0
  91. package/learnship/workflows/diagnose-issues.md +145 -0
  92. package/learnship/workflows/discovery-phase.md +183 -0
  93. package/learnship/workflows/discuss-milestone.md +136 -0
  94. package/learnship/workflows/discuss-phase.md +244 -0
  95. package/learnship/workflows/execute-phase.md +345 -0
  96. package/learnship/workflows/execute-plan.md +149 -0
  97. package/learnship/workflows/health.md +171 -0
  98. package/learnship/workflows/help.md +153 -0
  99. package/learnship/workflows/insert-phase.md +106 -0
  100. package/learnship/workflows/knowledge-base.md +168 -0
  101. package/learnship/workflows/list-phase-assumptions.md +129 -0
  102. package/learnship/workflows/ls.md +145 -0
  103. package/learnship/workflows/map-codebase.md +142 -0
  104. package/learnship/workflows/milestone-retrospective.md +178 -0
  105. package/learnship/workflows/new-milestone.md +200 -0
  106. package/learnship/workflows/new-project.md +340 -0
  107. package/learnship/workflows/next.md +100 -0
  108. package/learnship/workflows/pause-work.md +122 -0
  109. package/learnship/workflows/plan-milestone-gaps.md +160 -0
  110. package/learnship/workflows/plan-phase.md +288 -0
  111. package/learnship/workflows/progress.md +118 -0
  112. package/learnship/workflows/quick.md +256 -0
  113. package/learnship/workflows/reapply-patches.md +130 -0
  114. package/learnship/workflows/release.md +217 -0
  115. package/learnship/workflows/remove-phase.md +128 -0
  116. package/learnship/workflows/research-phase.md +137 -0
  117. package/learnship/workflows/resume-work.md +162 -0
  118. package/learnship/workflows/set-profile.md +78 -0
  119. package/learnship/workflows/settings.md +204 -0
  120. package/learnship/workflows/sync-upstream-skills.md +269 -0
  121. package/learnship/workflows/transition.md +165 -0
  122. package/learnship/workflows/update.md +166 -0
  123. package/learnship/workflows/validate-phase.md +174 -0
  124. package/learnship/workflows/verify-work.md +264 -0
  125. package/package.json +62 -0
  126. package/references/design-commands.md +119 -0
  127. package/references/git-integration.md +249 -0
  128. package/references/learning-design.md +142 -0
  129. package/references/model-profiles.md +90 -0
  130. package/references/planning-config.md +184 -0
  131. package/references/questioning.md +162 -0
  132. package/references/ui-brand.md +160 -0
  133. package/references/verification-patterns.md +608 -0
  134. package/skills/agentic-learning/SKILL.md +373 -0
  135. package/skills/agentic-learning/references/either-or-format.md +161 -0
  136. package/skills/agentic-learning/references/learning-science.md +190 -0
  137. package/skills/agentic-learning/references/struggle-ladder.md +140 -0
  138. package/skills/impeccable/SKILL.md +125 -0
  139. package/skills/impeccable/adapt/SKILL.md +199 -0
  140. package/skills/impeccable/animate/SKILL.md +190 -0
  141. package/skills/impeccable/audit/SKILL.md +129 -0
  142. package/skills/impeccable/bolder/SKILL.md +132 -0
  143. package/skills/impeccable/clarify/SKILL.md +180 -0
  144. package/skills/impeccable/colorize/SKILL.md +158 -0
  145. package/skills/impeccable/critique/SKILL.md +118 -0
  146. package/skills/impeccable/delight/SKILL.md +317 -0
  147. package/skills/impeccable/distill/SKILL.md +137 -0
  148. package/skills/impeccable/extract/SKILL.md +95 -0
  149. package/skills/impeccable/frontend-design/SKILL.md +127 -0
  150. package/skills/impeccable/frontend-design/reference/color-and-contrast.md +132 -0
  151. package/skills/impeccable/frontend-design/reference/interaction-design.md +123 -0
  152. package/skills/impeccable/frontend-design/reference/motion-design.md +99 -0
  153. package/skills/impeccable/frontend-design/reference/responsive-design.md +114 -0
  154. package/skills/impeccable/frontend-design/reference/spatial-design.md +100 -0
  155. package/skills/impeccable/frontend-design/reference/typography.md +131 -0
  156. package/skills/impeccable/frontend-design/reference/ux-writing.md +107 -0
  157. package/skills/impeccable/harden/SKILL.md +358 -0
  158. package/skills/impeccable/normalize/SKILL.md +67 -0
  159. package/skills/impeccable/onboard/SKILL.md +243 -0
  160. package/skills/impeccable/optimize/SKILL.md +269 -0
  161. package/skills/impeccable/polish/SKILL.md +202 -0
  162. package/skills/impeccable/quieter/SKILL.md +118 -0
  163. package/skills/impeccable/teach-impeccable/SKILL.md +69 -0
  164. package/templates/agents.md +166 -0
  165. package/templates/config.json +22 -0
  166. package/templates/context.md +72 -0
  167. package/templates/plan.md +202 -0
  168. package/templates/project.md +184 -0
  169. package/templates/requirements.md +231 -0
  170. package/templates/state.md +176 -0
  171. package/templates/uat.md +80 -0
@@ -0,0 +1,56 @@
1
+ #!/usr/bin/env node
2
+ // learnship — npx installer
3
+ // Usage: npx learnship [--local|--global] [--uninstall]
4
+
5
+ const { execSync, spawnSync } = require('child_process');
6
+ const path = require('path');
7
+ const fs = require('fs');
8
+ const os = require('os');
9
+
10
+ const args = process.argv.slice(2);
11
+ const hasLocal = args.includes('--local');
12
+ const hasGlobal = args.includes('--global');
13
+ const hasUninstall = args.includes('--uninstall');
14
+ const hasHelp = args.includes('--help') || args.includes('-h');
15
+
16
+ if (hasHelp) {
17
+ console.log(`
18
+ learnship — Learn as you build. Build with intent.
19
+
20
+ Usage:
21
+ npx github:FavioVazquez/learnship # interactive install
22
+ npx github:FavioVazquez/learnship --local # install to current project (.windsurf/)
23
+ npx github:FavioVazquez/learnship --global # install to all Windsurf projects (~/.codeium/windsurf/)
24
+ npx github:FavioVazquez/learnship --uninstall --local
25
+ npx github:FavioVazquez/learnship --uninstall --global
26
+
27
+ After installing, open Windsurf and type /new-project to start.
28
+ `);
29
+ process.exit(0);
30
+ }
31
+
32
+ // Resolve the install.sh path (bundled alongside this script)
33
+ const repoRoot = path.resolve(__dirname, '..');
34
+ const installScript = path.join(repoRoot, 'install.sh');
35
+
36
+ if (!fs.existsSync(installScript)) {
37
+ console.error('Error: install.sh not found. The package may be incomplete.');
38
+ process.exit(1);
39
+ }
40
+
41
+ // Build args to forward to install.sh
42
+ const forwardArgs = [];
43
+ if (hasLocal) forwardArgs.push('--local');
44
+ if (hasGlobal) forwardArgs.push('--global');
45
+ if (hasUninstall) forwardArgs.push('--uninstall');
46
+
47
+ const result = spawnSync('bash', [installScript, ...forwardArgs], {
48
+ stdio: 'inherit',
49
+ cwd: repoRoot,
50
+ env: {
51
+ ...process.env,
52
+ LEARNSHIP_INSTALL_CWD: process.env.INIT_CWD || process.cwd(),
53
+ },
54
+ });
55
+
56
+ process.exit(result.status ?? 0);
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:add-phase
3
+ description: Append a new phase to the current milestone roadmap when scope grows after initial planning
4
+ argument-hint: "[description]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/add-phase.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship add-phase workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: learnship:add-tests
3
+ description: Generate and add test coverage for a specific plan or phase post-execution
4
+ argument-hint: "[N]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Edit
10
+ - Task
11
+ ---
12
+
13
+ <execution_context>
14
+ @~/.claude/workflows/add-tests.md
15
+ </execution_context>
16
+
17
+ <context>
18
+ Arguments: $ARGUMENTS
19
+ </context>
20
+
21
+ <process>
22
+ Execute the learnship add-tests workflow end-to-end.
23
+ Preserve all workflow gates, validations, checkpoints, and routing.
24
+ </process>
@@ -0,0 +1,21 @@
1
+ ---
2
+ name: learnship:add-todo
3
+ description: Capture a todo/idea mid-session without interrupting flow
4
+ argument-hint: "[description]"
5
+ allowed-tools:
6
+ - Read
7
+ - Write
8
+ ---
9
+
10
+ <execution_context>
11
+ @~/.claude/workflows/add-todo.md
12
+ </execution_context>
13
+
14
+ <context>
15
+ Arguments: $ARGUMENTS
16
+ </context>
17
+
18
+ <process>
19
+ Execute the learnship add-todo workflow end-to-end.
20
+ Preserve all workflow gates, validations, checkpoints, and routing.
21
+ </process>
@@ -0,0 +1,21 @@
1
+ ---
2
+ name: learnship:audit-milestone
3
+ description: Verify milestone met its definition of done — requirement coverage, integration check, stub detection
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ - Write
8
+ ---
9
+
10
+ <execution_context>
11
+ @~/.claude/workflows/audit-milestone.md
12
+ </execution_context>
13
+
14
+ <context>
15
+ Arguments: $ARGUMENTS
16
+ </context>
17
+
18
+ <process>
19
+ Execute the learnship audit-milestone workflow end-to-end.
20
+ Preserve all workflow gates, validations, checkpoints, and routing.
21
+ </process>
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:check-todos
3
+ description: Review and act on all pending todos captured with add-todo
4
+ allowed-tools:
5
+ - Read
6
+ - Write
7
+ - Bash
8
+ - AskUserQuestion
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/check-todos.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship check-todos workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:cleanup
3
+ description: Archive completed milestone phase directories to keep .planning/phases/ clean
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ - Write
8
+ - AskUserQuestion
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/cleanup.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship cleanup workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:complete-milestone
3
+ description: Archive a completed milestone, tag the release, and prepare for the next version
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ - Write
8
+ - AskUserQuestion
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/complete-milestone.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship complete-milestone workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: learnship:debug
3
+ description: Systematic debugging with persistent state — triage, diagnose root cause, plan fix, execute
4
+ argument-hint: "[description]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Edit
10
+ - Glob
11
+ - Grep
12
+ - Task
13
+ - AskUserQuestion
14
+ ---
15
+
16
+ <execution_context>
17
+ @~/.claude/workflows/debug.md
18
+ </execution_context>
19
+
20
+ <context>
21
+ Arguments: $ARGUMENTS
22
+ </context>
23
+
24
+ <process>
25
+ Execute the learnship debug workflow end-to-end.
26
+ Preserve all workflow gates, validations, checkpoints, and routing.
27
+ </process>
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:decision-log
3
+ description: Capture an architectural or scope decision with its context, alternatives, and rationale into DECISIONS.md
4
+ argument-hint: "[description]"
5
+ allowed-tools:
6
+ - Read
7
+ - Write
8
+ - AskUserQuestion
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/decision-log.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship decision-log workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: learnship:diagnose-issues
3
+ description: Batch-diagnose multiple UAT issues after verify-work — groups by root cause, proposes fix plan
4
+ argument-hint: "[N]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Task
10
+ ---
11
+
12
+ <execution_context>
13
+ @~/.claude/workflows/diagnose-issues.md
14
+ </execution_context>
15
+
16
+ <context>
17
+ Arguments: $ARGUMENTS
18
+ </context>
19
+
20
+ <process>
21
+ Execute the learnship diagnose-issues workflow end-to-end.
22
+ Preserve all workflow gates, validations, checkpoints, and routing.
23
+ </process>
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: learnship:discovery-phase
3
+ description: Structured codebase discovery before working on an unfamiliar area — reads code, maps dependencies, surfaces risks
4
+ argument-hint: "[N]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Glob
10
+ - Grep
11
+ ---
12
+
13
+ <execution_context>
14
+ @~/.claude/workflows/discovery-phase.md
15
+ </execution_context>
16
+
17
+ <context>
18
+ Arguments: $ARGUMENTS
19
+ </context>
20
+
21
+ <process>
22
+ Execute the learnship discovery-phase workflow end-to-end.
23
+ Preserve all workflow gates, validations, checkpoints, and routing.
24
+ </process>
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: learnship:discuss-milestone
3
+ description: Capture milestone-level goals, constraints, and anti-goals before new-milestone starts
4
+ argument-hint: "[version]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - AskUserQuestion
10
+ ---
11
+
12
+ <execution_context>
13
+ @~/.claude/workflows/discuss-milestone.md
14
+ </execution_context>
15
+
16
+ <context>
17
+ Arguments: $ARGUMENTS
18
+ </context>
19
+
20
+ <process>
21
+ Execute the learnship discuss-milestone workflow end-to-end.
22
+ Preserve all workflow gates, validations, checkpoints, and routing.
23
+ </process>
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: learnship:discuss-phase
3
+ description: Capture implementation decisions for a phase before planning starts
4
+ argument-hint: "[N]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - AskUserQuestion
10
+ ---
11
+
12
+ <execution_context>
13
+ @~/.claude/workflows/discuss-phase.md
14
+ </execution_context>
15
+
16
+ <context>
17
+ Arguments: $ARGUMENTS
18
+ </context>
19
+
20
+ <process>
21
+ Execute the learnship discuss-phase workflow end-to-end.
22
+ Preserve all workflow gates, validations, checkpoints, and routing.
23
+ </process>
@@ -0,0 +1,27 @@
1
+ ---
2
+ name: learnship:execute-phase
3
+ description: Execute all plans in a phase with wave-based ordered execution, spawning subagents per plan where supported
4
+ argument-hint: "<phase-number>"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Edit
10
+ - Glob
11
+ - Grep
12
+ - Task
13
+ - AskUserQuestion
14
+ ---
15
+
16
+ <execution_context>
17
+ @~/.claude/workflows/execute-phase.md
18
+ </execution_context>
19
+
20
+ <context>
21
+ Arguments: $ARGUMENTS
22
+ </context>
23
+
24
+ <process>
25
+ Execute the learnship execute-phase workflow end-to-end.
26
+ Preserve all workflow gates, validations, checkpoints, and routing.
27
+ </process>
@@ -0,0 +1,26 @@
1
+ ---
2
+ name: learnship:execute-plan
3
+ description: Run a single PLAN.md file in isolation — useful for re-running a failed plan
4
+ argument-hint: "<phase-number> <plan-id>"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Edit
10
+ - Glob
11
+ - Grep
12
+ - Task
13
+ ---
14
+
15
+ <execution_context>
16
+ @~/.claude/workflows/execute-plan.md
17
+ </execution_context>
18
+
19
+ <context>
20
+ Arguments: $ARGUMENTS
21
+ </context>
22
+
23
+ <process>
24
+ Execute the learnship execute-plan workflow end-to-end.
25
+ Preserve all workflow gates, validations, checkpoints, and routing.
26
+ </process>
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: learnship:health
3
+ description: Project health check — stale files, uncommitted changes, missing artifacts, config drift
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ ---
8
+
9
+ <execution_context>
10
+ @~/.claude/workflows/health.md
11
+ </execution_context>
12
+
13
+ <context>
14
+ Arguments: $ARGUMENTS
15
+ </context>
16
+
17
+ <process>
18
+ Execute the learnship health workflow end-to-end.
19
+ Preserve all workflow gates, validations, checkpoints, and routing.
20
+ </process>
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: learnship:help
3
+ description: Show all available learnship workflows with descriptions and when to use them
4
+ allowed-tools:
5
+ - Read
6
+ ---
7
+
8
+ <execution_context>
9
+ @~/.claude/workflows/help.md
10
+ </execution_context>
11
+
12
+ <context>
13
+ Arguments: $ARGUMENTS
14
+ </context>
15
+
16
+ <process>
17
+ Execute the learnship help workflow end-to-end.
18
+ Preserve all workflow gates, validations, checkpoints, and routing.
19
+ </process>
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:insert-phase
3
+ description: Insert a new phase between existing phases for urgent work discovered mid-milestone
4
+ argument-hint: "[N] [description]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/insert-phase.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship insert-phase workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>
@@ -0,0 +1,21 @@
1
+ ---
2
+ name: learnship:knowledge-base
3
+ description: Aggregate key learnings and decisions across all sessions into a searchable KNOWLEDGE.md
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ - Write
8
+ ---
9
+
10
+ <execution_context>
11
+ @~/.claude/workflows/knowledge-base.md
12
+ </execution_context>
13
+
14
+ <context>
15
+ Arguments: $ARGUMENTS
16
+ </context>
17
+
18
+ <process>
19
+ Execute the learnship knowledge-base workflow end-to-end.
20
+ Preserve all workflow gates, validations, checkpoints, and routing.
21
+ </process>
@@ -0,0 +1,21 @@
1
+ ---
2
+ name: learnship:list-phase-assumptions
3
+ description: Surface the intended approach for a phase before planning starts — validate direction early
4
+ argument-hint: "[N]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ ---
9
+
10
+ <execution_context>
11
+ @~/.claude/workflows/list-phase-assumptions.md
12
+ </execution_context>
13
+
14
+ <context>
15
+ Arguments: $ARGUMENTS
16
+ </context>
17
+
18
+ <process>
19
+ Execute the learnship list-phase-assumptions workflow end-to-end.
20
+ Preserve all workflow gates, validations, checkpoints, and routing.
21
+ </process>
@@ -0,0 +1,20 @@
1
+ ---
2
+ name: learnship:ls
3
+ description: Show project status, next step, and offer to run it — start every session here
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ ---
8
+
9
+ <execution_context>
10
+ @~/.claude/workflows/ls.md
11
+ </execution_context>
12
+
13
+ <context>
14
+ Arguments: $ARGUMENTS
15
+ </context>
16
+
17
+ <process>
18
+ Execute the learnship ls workflow end-to-end.
19
+ Preserve all workflow gates, validations, checkpoints, and routing.
20
+ </process>
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: learnship:map-codebase
3
+ description: Analyze an existing codebase and produce structured reference docs before starting a new project on top of it
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ - Write
8
+ - Glob
9
+ - Grep
10
+ ---
11
+
12
+ <execution_context>
13
+ @~/.claude/workflows/map-codebase.md
14
+ </execution_context>
15
+
16
+ <context>
17
+ Arguments: $ARGUMENTS
18
+ </context>
19
+
20
+ <process>
21
+ Execute the learnship map-codebase workflow end-to-end.
22
+ Preserve all workflow gates, validations, checkpoints, and routing.
23
+ </process>
@@ -0,0 +1,21 @@
1
+ ---
2
+ name: learnship:milestone-retrospective
3
+ description: Structured learning retrospective at end of milestone — 5 questions, produces RETROSPECTIVE.md
4
+ allowed-tools:
5
+ - Read
6
+ - Write
7
+ - AskUserQuestion
8
+ ---
9
+
10
+ <execution_context>
11
+ @~/.claude/workflows/milestone-retrospective.md
12
+ </execution_context>
13
+
14
+ <context>
15
+ Arguments: $ARGUMENTS
16
+ </context>
17
+
18
+ <process>
19
+ Execute the learnship milestone-retrospective workflow end-to-end.
20
+ Preserve all workflow gates, validations, checkpoints, and routing.
21
+ </process>
@@ -0,0 +1,23 @@
1
+ ---
2
+ name: learnship:new-milestone
3
+ description: Start a new milestone cycle on an existing project after a prior milestone is complete
4
+ argument-hint: "[name]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - AskUserQuestion
10
+ ---
11
+
12
+ <execution_context>
13
+ @~/.claude/workflows/new-milestone.md
14
+ </execution_context>
15
+
16
+ <context>
17
+ Arguments: $ARGUMENTS
18
+ </context>
19
+
20
+ <process>
21
+ Execute the learnship new-milestone workflow end-to-end.
22
+ Preserve all workflow gates, validations, checkpoints, and routing.
23
+ </process>
@@ -0,0 +1,24 @@
1
+ ---
2
+ name: learnship:new-project
3
+ description: Initialize a new project — questioning → research → requirements → roadmap
4
+ argument-hint: "[--auto]"
5
+ allowed-tools:
6
+ - Read
7
+ - Bash
8
+ - Write
9
+ - Task
10
+ - AskUserQuestion
11
+ ---
12
+
13
+ <execution_context>
14
+ @~/.claude/workflows/new-project.md
15
+ </execution_context>
16
+
17
+ <context>
18
+ Arguments: $ARGUMENTS
19
+ </context>
20
+
21
+ <process>
22
+ Execute the learnship new-project workflow end-to-end.
23
+ Preserve all workflow gates, validations, checkpoints, and routing.
24
+ </process>
@@ -0,0 +1,22 @@
1
+ ---
2
+ name: learnship:next
3
+ description: Auto-pilot — reads project state and runs the correct next workflow automatically
4
+ allowed-tools:
5
+ - Read
6
+ - Bash
7
+ - Write
8
+ - AskUserQuestion
9
+ ---
10
+
11
+ <execution_context>
12
+ @~/.claude/workflows/next.md
13
+ </execution_context>
14
+
15
+ <context>
16
+ Arguments: $ARGUMENTS
17
+ </context>
18
+
19
+ <process>
20
+ Execute the learnship next workflow end-to-end.
21
+ Preserve all workflow gates, validations, checkpoints, and routing.
22
+ </process>