learnship 2.2.1 → 2.3.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 (35) hide show
  1. package/.claude-plugin/plugin.json +2 -2
  2. package/.cursor-plugin/plugin.json +2 -2
  3. package/README.md +19 -8
  4. package/agents/learnship-doc-verifier.md +79 -0
  5. package/agents/learnship-project-researcher.md +78 -0
  6. package/agents/learnship-research-synthesizer.md +89 -0
  7. package/agents/learnship-researcher.md +113 -0
  8. package/agents/learnship-roadmapper.md +56 -0
  9. package/bin/install.js +59 -1
  10. package/gemini-extension.json +2 -2
  11. package/learnship/agents/doc-verifier.md +73 -0
  12. package/learnship/agents/phase-researcher.md +92 -0
  13. package/learnship/agents/project-researcher.md +72 -0
  14. package/learnship/agents/research-synthesizer.md +83 -0
  15. package/learnship/agents/roadmapper.md +50 -0
  16. package/learnship/workflows/audit-milestone.md +6 -1
  17. package/learnship/workflows/challenge.md +28 -2
  18. package/learnship/workflows/compound.md +12 -1
  19. package/learnship/workflows/debug.md +20 -2
  20. package/learnship/workflows/diagnose-issues.md +6 -1
  21. package/learnship/workflows/execute-phase.md +22 -2
  22. package/learnship/workflows/execute-plan.md +7 -1
  23. package/learnship/workflows/ideate.md +24 -2
  24. package/learnship/workflows/map-codebase.md +6 -1
  25. package/learnship/workflows/new-milestone.md +14 -2
  26. package/learnship/workflows/new-project.md +227 -30
  27. package/learnship/workflows/plan-phase.md +62 -16
  28. package/learnship/workflows/quick.md +30 -5
  29. package/learnship/workflows/research-phase.md +28 -14
  30. package/learnship/workflows/review.md +14 -1
  31. package/learnship/workflows/secure-phase.md +13 -3
  32. package/learnship/workflows/validate-phase.md +14 -3
  33. package/learnship/workflows/verify-work.md +24 -5
  34. package/package.json +2 -3
  35. package/install.sh +0 -254
@@ -104,24 +104,34 @@ Read `parallelization` from `.planning/config.json` (defaults to `false`).
104
104
  ```
105
105
  Task(
106
106
  subagent_type="learnship-security-auditor",
107
+ description="Security audit phase [N]",
107
108
  prompt="
109
+ <agent_definition>
110
+ You are a learnship security auditor. Verify threats against the actual codebase using STRIDE methodology.
111
+ Check each open threat: if mitigation is found in code, mark CLOSED with evidence. If missing, document what's needed.
112
+ Be thorough — check actual code, not just file names. False negatives are worse than false positives.
113
+ </agent_definition>
114
+
108
115
  <objective>
109
116
  Verify all open threats in the threat register for phase [N].
110
117
  Check each threat against the actual codebase. Update status to
111
118
  CLOSED if mitigation found, or document what's missing.
112
- Follow the security auditor persona at @./agents/security-auditor.md.
113
119
  </objective>
114
120
 
115
121
  <files_to_read>
116
122
  - [phase SECURITY.md or threat register]
117
- - @./agents/security-auditor.md (persona)
118
123
  </files_to_read>
119
124
  "
120
125
  )
121
126
  ```
122
127
 
123
128
  **If `parallelization.enabled` is `false`:**
124
- Using `@./agents/security-auditor.md`, check each open threat against the codebase. Update status based on findings.
129
+ <persona_context>
130
+ You are now the **learnship security auditor**. Run STRIDE threat analysis against the codebase.
131
+ Check each open threat. Verify mitigations are implemented correctly. Update status based on findings.
132
+ </persona_context>
133
+
134
+ Read `@./agents/security-auditor.md` for the full persona definition. Check each open threat against the codebase. Update status based on findings.
125
135
 
126
136
  **For "Accept all":** Add each to the Accepted Risks Log with user's rationale.
127
137
 
@@ -105,18 +105,24 @@ Read `parallelization` from `.planning/config.json` (defaults to `false`).
105
105
  ```
106
106
  Task(
107
107
  subagent_type="learnship-verifier",
108
+ description="Fill validation gaps phase [N]",
108
109
  prompt="
110
+ <agent_definition>
111
+ You are a learnship verifier. Write test files that cover validation gaps — never modify implementation files.
112
+ Match existing test framework and style. Write tests that actually run (import real modules, not mocks).
113
+ If a test reveals an implementation bug, log it as an escalation — don't fix the implementation.
114
+ Up to 3 debug attempts if tests fail.
115
+ </agent_definition>
116
+
109
117
  <objective>
110
118
  Write missing test files for phase [N] validation gaps.
111
119
  Read VALIDATION.md gaps and write tests that cover each MISSING or PARTIAL requirement.
112
- Follow the verifier persona at @./agents/verifier.md.
113
120
  Never modify implementation files — only write test files.
114
121
  Run tests to verify they pass. Up to 3 debug attempts if tests fail.
115
122
  </objective>
116
123
 
117
124
  <files_to_read>
118
125
  - [VALIDATION.md path]
119
- - @./agents/verifier.md (persona)
120
126
  </files_to_read>
121
127
  "
122
128
  )
@@ -124,7 +130,12 @@ Task(
124
130
 
125
131
  **If `parallelization.enabled` is `false` (sequential mode):**
126
132
 
127
- Write the missing test files. Rules:
133
+ <persona_context>
134
+ You are now the **learnship verifier**. Write missing test files to close validation gaps.
135
+ Tests must be observable and runnable. Cover the must_haves from each plan. Don't weaken existing tests.
136
+ </persona_context>
137
+
138
+ Read `@./agents/verifier.md` for the full persona definition. Write the missing test files. Rules:
128
139
  - Never touch implementation files
129
140
  - Match the existing test framework and style
130
141
  - Write tests that actually run (import real modules, not mocks of the implementation)
@@ -253,18 +253,23 @@ Spawn a dedicated debugger agent for diagnosis:
253
253
  ```
254
254
  Task(
255
255
  subagent_type="learnship-debugger",
256
+ description="Diagnose UAT issues phase [N]",
256
257
  prompt="
258
+ <agent_definition>
259
+ You are a learnship debugger in diagnosis mode. Trace each issue to its root cause.
260
+ Read-first: understand the current design before proposing changes. Find specific files and lines.
261
+ Do NOT fix anything — just diagnose and document. One hypothesis at a time.
262
+ </agent_definition>
263
+
257
264
  <objective>
258
265
  Diagnose all issues found in UAT for phase [N].
259
266
  Read the UAT.md file with gaps, trace each issue to its root cause.
260
267
  Do NOT fix anything — just diagnose and document root causes.
261
- Follow the debugger persona at @./agents/debugger.md.
262
268
  Write root_cause and affected_files for each gap back to UAT.md.
263
269
  </objective>
264
270
 
265
271
  <files_to_read>
266
272
  - [UAT.md path]
267
- - @./agents/debugger.md (persona)
268
273
  </files_to_read>
269
274
  "
270
275
  )
@@ -272,7 +277,12 @@ Task(
272
277
 
273
278
  **If `parallelization.enabled` is `false` (sequential mode):**
274
279
 
275
- For each issue in the Gaps section, investigate using `@./agents/debugger.md` as your debug persona:
280
+ <persona_context>
281
+ You are now the **learnship debugger**. Diagnose the root cause of each gap.
282
+ One variable at a time. Reproduce before diagnosing. Trace from symptom to root cause.
283
+ </persona_context>
284
+
285
+ Read `@./agents/debugger.md` for the full persona definition. For each issue in the Gaps section, investigate:
276
286
  - Read the relevant source files
277
287
  - Trace the issue to its root cause
278
288
  - Do not fix yet — just diagnose
@@ -296,9 +306,18 @@ Display:
296
306
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
297
307
  ```
298
308
 
299
- Using `@./agents/planner.md` as your planning persona, read the UAT.md file with diagnosed gaps. Create fix plans in the phase directory with `gap_closure: true` in frontmatter.
309
+ <persona_context>
310
+ You are now the **learnship planner**. Create fix plans for diagnosed gaps.
311
+ Each plan covers one logical unit of work. Include gap_closure: true in frontmatter.
312
+ </persona_context>
313
+
314
+ Read `@./agents/planner.md` for the full persona definition. Read the UAT.md file with diagnosed gaps. Create fix plans in the phase directory with `gap_closure: true` in frontmatter.
315
+
316
+ <persona_context>
317
+ You are now the **learnship verifier**. Verify fix plans close the diagnosed gaps.
318
+ </persona_context>
300
319
 
301
- Verify fix plans (max 3 iterations with `@./agents/verifier.md`) — same loop as `plan-phase`.
320
+ Verify fix plans (max 3 iterations read `@./agents/verifier.md` for the full persona definition) — same loop as `plan-phase`.
302
321
 
303
322
  Present when ready:
304
323
  ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "learnship",
3
- "version": "2.2.1",
4
- "description": "Learn as you build. Build with intent. — A multi-platform agentic engineering system for Windsurf, Claude Code, Cursor, OpenCode, Gemini CLI, and Codex: spec-driven workflows, integrated learning, and production-grade design.",
3
+ "version": "2.3.0",
4
+ "description": "Learn as you build. Build with intent. — A multi-platform agentic engineering system for Windsurf, Claude Code, Cursor, OpenCode, Gemini CLI, and Codex: 57 spec-driven workflows, 17 specialist agent personas, integrated learning, and production-grade design.",
5
5
  "keywords": [
6
6
  "agentic",
7
7
  "development",
@@ -27,7 +27,6 @@
27
27
  "agents",
28
28
  "references",
29
29
  "templates",
30
- "install.sh",
31
30
  "skills",
32
31
  "hooks",
33
32
  ".claude-plugin",
package/install.sh DELETED
@@ -1,254 +0,0 @@
1
- #!/usr/bin/env bash
2
- # learnship — Installer
3
- # Usage:
4
- # bash install.sh # interactive
5
- # bash install.sh --local # project install (non-interactive)
6
- # bash install.sh --global # global install (non-interactive)
7
- # bash install.sh --uninstall --local
8
- # bash install.sh --uninstall --global
9
-
10
- set -e
11
-
12
- REPO_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
13
- PLATFORM_NAME="learnship"
14
-
15
- # Colors
16
- RED='\033[0;31m'
17
- GREEN='\033[0;32m'
18
- YELLOW='\033[1;33m'
19
- BLUE='\033[0;34m'
20
- BOLD='\033[1m'
21
- RESET='\033[0m'
22
-
23
- # ─── Helpers ─────────────────────────────────────────────────────────────────
24
-
25
- print_header() {
26
- echo ""
27
- echo -e "${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${RESET}"
28
- echo -e "${BOLD} ${PLATFORM_NAME}${RESET}"
29
- echo -e "${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${RESET}"
30
- echo ""
31
- }
32
-
33
- print_success() { echo -e "${GREEN}✓${RESET} $1"; }
34
- print_error() { echo -e "${RED}✗${RESET} $1" >&2; }
35
- print_info() { echo -e "${BLUE}→${RESET} $1"; }
36
- print_warn() { echo -e "${YELLOW}!${RESET} $1"; }
37
-
38
- # ─── Argument Parsing ────────────────────────────────────────────────────────
39
-
40
- SCOPE=""
41
- UNINSTALL=false
42
-
43
- for arg in "$@"; do
44
- case "$arg" in
45
- --local) SCOPE="local" ;;
46
- --global) SCOPE="global" ;;
47
- --uninstall) UNINSTALL=true ;;
48
- --help|-h)
49
- echo "Usage: bash install.sh [--local|--global] [--uninstall]"
50
- echo ""
51
- echo " --local Install to current project's .windsurf/ directory"
52
- echo " --global Install to ~/.codeium/windsurf/ (available in all projects)"
53
- echo " --uninstall Remove the installation"
54
- echo ""
55
- echo "Run without flags for interactive mode."
56
- exit 0
57
- ;;
58
- *)
59
- print_error "Unknown argument: $arg"
60
- echo "Run 'bash install.sh --help' for usage."
61
- exit 1
62
- ;;
63
- esac
64
- done
65
-
66
- # ─── Determine Target Directory ──────────────────────────────────────────────
67
-
68
- get_target_dir() {
69
- local scope="$1"
70
- if [[ "$scope" == "global" ]]; then
71
- echo "$HOME/.codeium/windsurf"
72
- else
73
- # When run via npx, pwd() is the npx cache — use LEARNSHIP_INSTALL_CWD
74
- # (set by bin/learnship.js from INIT_CWD) to get the user's actual project dir
75
- local project_dir="${LEARNSHIP_INSTALL_CWD:-$(pwd)}"
76
- echo "${project_dir}/.windsurf"
77
- fi
78
- }
79
-
80
- # ─── Interactive Prompt ──────────────────────────────────────────────────────
81
-
82
- if [[ -z "$SCOPE" ]]; then
83
- print_header
84
-
85
- echo -e "${BOLD}Where would you like to install?${RESET}"
86
- echo ""
87
- echo " [1] Project — installs to ./.windsurf/ (current project only)"
88
- echo " [2] Global — installs to ~/.codeium/windsurf/ (all Windsurf projects)"
89
- echo ""
90
- read -p "Choice [1/2]: " choice
91
-
92
- case "$choice" in
93
- 1|"") SCOPE="local" ;;
94
- 2) SCOPE="global" ;;
95
- *)
96
- print_error "Invalid choice. Run again and enter 1 or 2."
97
- exit 1
98
- ;;
99
- esac
100
- fi
101
-
102
- TARGET_DIR="$(get_target_dir "$SCOPE")"
103
-
104
- # ─── Uninstall ───────────────────────────────────────────────────────────────
105
-
106
- if [[ "$UNINSTALL" == true ]]; then
107
- print_header
108
- echo -e "Uninstalling from: ${BOLD}${TARGET_DIR}${RESET}"
109
- echo ""
110
-
111
- REMOVED=0
112
-
113
- if [[ -d "${TARGET_DIR}/workflows" ]]; then
114
- # Only remove our workflows (non-destructive: checks for our files)
115
- for wf in new-project discuss-phase plan-phase execute-phase verify-work quick progress ls next pause-work resume-work complete-milestone; do
116
- if [[ -f "${TARGET_DIR}/workflows/${wf}.md" ]]; then
117
- rm "${TARGET_DIR}/workflows/${wf}.md"
118
- print_info "Removed workflows/${wf}.md"
119
- ((REMOVED++)) || true
120
- fi
121
- done
122
- fi
123
-
124
- if [[ -d "${TARGET_DIR}/skills/agentic-learning" ]]; then
125
- rm -rf "${TARGET_DIR}/skills/agentic-learning"
126
- print_info "Removed skills/agentic-learning/"
127
- ((REMOVED++)) || true
128
- fi
129
-
130
- if [[ -d "${TARGET_DIR}/skills/impeccable" ]]; then
131
- rm -rf "${TARGET_DIR}/skills/impeccable"
132
- print_info "Removed skills/impeccable/"
133
- ((REMOVED++)) || true
134
- fi
135
-
136
- if [[ -d "${TARGET_DIR}/skills/frontend-design" ]]; then
137
- rm -rf "${TARGET_DIR}/skills/frontend-design"
138
- print_info "Removed skills/frontend-design/ (legacy)"
139
- ((REMOVED++)) || true
140
- fi
141
-
142
- if [[ $REMOVED -eq 0 ]]; then
143
- print_warn "Nothing found to remove at ${TARGET_DIR}"
144
- else
145
- echo ""
146
- print_success "Uninstall complete. Removed ${REMOVED} item(s)."
147
- fi
148
- exit 0
149
- fi
150
-
151
- # ─── Install ─────────────────────────────────────────────────────────────────
152
-
153
- print_header
154
- echo -e "Installing to: ${BOLD}${TARGET_DIR}${RESET}"
155
- if [[ "$SCOPE" == "global" ]]; then
156
- print_info "Global install — workflows and skills will be available in all Windsurf projects"
157
- else
158
- print_info "Project install — workflows and skills available in this project only"
159
- fi
160
- echo ""
161
-
162
- # Validate source directory has the required files
163
- if [[ ! -d "${REPO_DIR}/.windsurf/workflows" ]]; then
164
- print_error "Source workflows not found at ${REPO_DIR}/.windsurf/workflows"
165
- print_error "Make sure you are running install.sh from the agentic-development repo root."
166
- exit 1
167
- fi
168
-
169
- # Create target directories
170
- mkdir -p "${TARGET_DIR}/workflows"
171
- mkdir -p "${TARGET_DIR}/skills"
172
-
173
- # ── Install Workflows ──────────────────────────────────────────────────────
174
-
175
- echo -e "${BOLD}Installing workflows...${RESET}"
176
-
177
- WORKFLOW_COUNT=0
178
- for wf_file in "${REPO_DIR}/.windsurf/workflows/"*.md; do
179
- wf_name="$(basename "$wf_file")"
180
- dest="${TARGET_DIR}/workflows/${wf_name}"
181
- if [[ "$(realpath "$wf_file")" != "$(realpath "$dest" 2>/dev/null)" ]]; then
182
- cp "$wf_file" "$dest"
183
- print_success "workflows/${wf_name}"
184
- ((WORKFLOW_COUNT++)) || true
185
- fi
186
- done
187
-
188
- echo ""
189
-
190
- # ── Install Skills ─────────────────────────────────────────────────────────
191
-
192
- echo -e "${BOLD}Installing skills...${RESET}"
193
-
194
- # agentic-learning
195
- if [[ -d "${REPO_DIR}/.windsurf/skills/agentic-learning" ]]; then
196
- mkdir -p "${TARGET_DIR}/skills/agentic-learning"
197
- if [[ "$(realpath "${REPO_DIR}/.windsurf/skills/agentic-learning")" != "$(realpath "${TARGET_DIR}/skills/agentic-learning" 2>/dev/null)" ]]; then
198
- cp -r "${REPO_DIR}/.windsurf/skills/agentic-learning/"* "${TARGET_DIR}/skills/agentic-learning/"
199
- fi
200
- print_success "skills/agentic-learning/ (learning partner)"
201
- else
202
- print_warn "skills/agentic-learning/ not found in source — skipping"
203
- fi
204
-
205
- # impeccable (full design skill suite)
206
- if [[ -d "${REPO_DIR}/.windsurf/skills/impeccable" ]]; then
207
- if [[ "$(realpath "${REPO_DIR}/.windsurf/skills/impeccable")" != "$(realpath "${TARGET_DIR}/skills/impeccable" 2>/dev/null)" ]]; then
208
- cp -r "${REPO_DIR}/.windsurf/skills/impeccable" "${TARGET_DIR}/skills/impeccable"
209
- fi
210
- IMPECCABLE_COUNT=$(find "${REPO_DIR}/.windsurf/skills/impeccable" -name "SKILL.md" | wc -l | tr -d ' ')
211
- print_success "skills/impeccable/ (${IMPECCABLE_COUNT} design skills — audit, critique, polish, colorize + more)"
212
- else
213
- print_warn "skills/impeccable/ not found in source — skipping"
214
- fi
215
-
216
- echo ""
217
-
218
- # ── Done ──────────────────────────────────────────────────────────────────
219
-
220
- echo -e "${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${RESET}"
221
- echo -e "${GREEN}${BOLD} Installation complete!${RESET}"
222
- echo -e "${BOLD}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━${RESET}"
223
- echo ""
224
- echo -e " ${BOLD}Installed:${RESET} ${WORKFLOW_COUNT} workflows + 2 skill suites (agentic-learning, impeccable)"
225
- echo -e " ${BOLD}Location:${RESET} ${TARGET_DIR}"
226
- echo ""
227
-
228
- if [[ "$SCOPE" == "global" ]]; then
229
- echo -e " ${BOLD}Next steps:${RESET}"
230
- echo -e " • Restart Windsurf (or reload the window) to activate"
231
- echo -e " • Open any project and type ${BOLD}/new-project${RESET} to start"
232
- else
233
- echo -e " ${BOLD}Next steps:${RESET}"
234
- echo -e " • Workflows are immediately available in this project"
235
- echo -e " • Type ${BOLD}/new-project${RESET} in Cascade to start"
236
- fi
237
-
238
- echo ""
239
- echo -e " ${BOLD}Quick reference:${RESET}"
240
- echo -e " /ls Where am I? What's next? (start every session here)"
241
- echo -e " /next Auto-pilot — runs the right workflow automatically"
242
- echo -e " /new-project Initialize a new project"
243
- echo -e " /discuss-phase [N] Capture implementation decisions"
244
- echo -e " /plan-phase [N] Create executable plans"
245
- echo -e " /execute-phase [N] Run all plans in a phase"
246
- echo -e " /verify-work [N] Manual acceptance testing"
247
- echo -e " /quick [description] Ad-hoc task with full guarantees"
248
- echo ""
249
- echo -e " ${BOLD}Learning mode:${RESET} Set ${BOLD}learning_mode${RESET} in .planning/config.json"
250
- echo -e " ${BOLD} auto${RESET} (default) Offered at workflow checkpoints"
251
- echo -e " ${BOLD} manual${RESET} Only when you invoke @agentic-learning"
252
- echo ""
253
- echo -e " See ${BOLD}README.md${RESET} or ${BOLD}https://github.com/FavioVazquez/learnship${RESET} for full documentation."
254
- echo ""