learnship 2.3.2 → 2.3.4
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/.claude-plugin/plugin.json +1 -1
- package/.cursor-plugin/plugin.json +1 -1
- package/README.md +17 -6
- package/agents/learnship-plan-checker.md +6 -1
- package/agents/learnship-planner.md +21 -11
- package/bin/install.js +1 -1
- package/cursor-rules/learnship.mdc +3 -1
- package/gemini-extension.json +1 -1
- package/learnship/agents/plan-checker.md +5 -0
- package/learnship/agents/planner.md +14 -1
- package/learnship/references/planning-config.md +1 -1
- package/learnship/templates/plan.md +8 -0
- package/learnship/workflows/audit-milestone.md +5 -0
- package/learnship/workflows/challenge.md +10 -0
- package/learnship/workflows/compound.md +5 -0
- package/learnship/workflows/debug.md +10 -0
- package/learnship/workflows/diagnose-issues.md +5 -0
- package/learnship/workflows/discuss-phase.md +38 -3
- package/learnship/workflows/docs-update.md +92 -0
- package/learnship/workflows/execute-phase.md +10 -0
- package/learnship/workflows/execute-plan.md +5 -0
- package/learnship/workflows/ideate.md +10 -0
- package/learnship/workflows/map-codebase.md +5 -0
- package/learnship/workflows/new-milestone.md +10 -0
- package/learnship/workflows/new-project.md +127 -20
- package/learnship/workflows/plan-phase.md +44 -16
- package/learnship/workflows/quick.md +25 -0
- package/learnship/workflows/research-phase.md +11 -4
- package/learnship/workflows/review.md +5 -0
- package/learnship/workflows/secure-phase.md +5 -0
- package/learnship/workflows/settings.md +1 -1
- package/learnship/workflows/validate-phase.md +5 -0
- package/learnship/workflows/verify-work.md +15 -0
- package/package.json +1 -1
- package/templates/plan.md +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "learnship",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.4",
|
|
4
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",
|
package/templates/plan.md
CHANGED
|
@@ -113,6 +113,14 @@ Phases execute in numeric order: 2 → 2.1 → 2.2 → 3 → 3.1 → 4
|
|
|
113
113
|
- Progress table updated by execute workflow
|
|
114
114
|
- Plan count can be "TBD" initially, refined during planning
|
|
115
115
|
|
|
116
|
+
**Vertical slice planning (enforced by plan-phase and plan-checker):**
|
|
117
|
+
- Each PLAN.md is a tracer bullet — one user-facing behavior, all layers (data → logic → API → UI → test)
|
|
118
|
+
- A completed plan is demoable without completing other plans
|
|
119
|
+
- Plan descriptions in this roadmap should reflect what users experience, not which layer is being built
|
|
120
|
+
- ✗ "01-01: Create database schema" — horizontal, not demoable alone
|
|
121
|
+
- ✓ "01-01: User can register and receive confirmation email" — vertical, demoable
|
|
122
|
+
- Exception: `single_layer_justified: true` in PLAN.md frontmatter for legitimately single-layer phases
|
|
123
|
+
|
|
116
124
|
**Success criteria:**
|
|
117
125
|
- 2-5 observable behaviors per phase (from user's perspective)
|
|
118
126
|
- Cross-checked against requirements during roadmap creation
|