@slope-dev/slope 1.41.0 → 1.42.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slope-dev/slope",
3
- "version": "1.41.0",
3
+ "version": "1.42.0",
4
4
  "description": "Quantified sprint metrics for AI-assisted development. Scorecards, handicap tracking, and real-time agent guidance for Claude Code, Cursor, Windsurf, Cline, and OpenCode.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -25,6 +25,17 @@ phases:
25
25
  command: slope briefing --sprint=${sprint_id}
26
26
  checkpoint: exit_code_0
27
27
 
28
+ # --- Plan: Generate execution plan (no review gate for autonomous) ---
29
+ - id: plan
30
+ steps:
31
+ - id: generate_plan
32
+ type: agent_work
33
+ prompt: "Generate an execution plan for each ticket. Identify files, approach, and risks. No review gate — autonomous agents proceed directly."
34
+ rules:
35
+ - "Plan is for agent self-orientation, not human review"
36
+ - "Identify primary files and test files for each ticket"
37
+ blocks_next: true
38
+
28
39
  # --- Per-Ticket: Execute each ticket ---
29
40
  - id: per_ticket
30
41
  repeat_for: tickets
@@ -1,6 +1,10 @@
1
1
  # SLOPE Sprint Lightweight Workflow
2
2
  # Minimal gates: implement → validate → done.
3
3
  # Use for quick fixes, docs-only sprints, or when full ceremony isn't needed.
4
+ #
5
+ # NOTE: This workflow INTENTIONALLY skips plan review.
6
+ # Use sprint-standard if plan review is needed.
7
+ # Choosing lightweight is an explicit decision to trade ceremony for speed.
4
8
  name: sprint-lightweight
5
9
  version: "1"
6
10
  description: Minimal workflow — implement, validate, done
@@ -1,8 +1,8 @@
1
1
  # SLOPE Sprint Standard Workflow
2
- # Full lifecycle: briefing → tickets → scorecard → review
2
+ # Full lifecycle: briefing → plan review → tickets → scorecard → review
3
3
  name: sprint-standard
4
4
  version: "1"
5
- description: Standard sprint lifecycle with pre-hole, per-ticket, and post-hole phases
5
+ description: Standard sprint lifecycle with pre-hole, plan review, per-ticket, and post-hole phases
6
6
 
7
7
  variables:
8
8
  sprint_id:
@@ -29,6 +29,28 @@ phases:
29
29
  conditions:
30
30
  - previous_scorecard_exists
31
31
 
32
+ # --- Plan Review: Write and review the sprint plan ---
33
+ - id: plan_review
34
+ steps:
35
+ - id: write_plan
36
+ type: agent_work
37
+ prompt: "Write the sprint plan as a file in docs/backlog/. Use EnterPlanMode before writing. Include ticket list, clubs, approach, and hazard watch for each ticket."
38
+ rules:
39
+ - "Enter plan mode before writing the plan file"
40
+ - "Plan file triggers review-tier guard which determines review tier"
41
+ blocks_next: true
42
+
43
+ - id: review_plan
44
+ type: agent_input
45
+ prompt: "Review the plan. The review-tier guard determines the tier (skip/light/standard/deep). Complete required review rounds before proceeding."
46
+ required_fields:
47
+ - review_tier
48
+ - review_complete
49
+
50
+ - id: revise_plan
51
+ type: agent_work
52
+ prompt: "Address review findings if any. Skip if no findings or review tier was skip."
53
+
32
54
  # --- Per-Ticket: Execute each ticket ---
33
55
  - id: per_ticket
34
56
  repeat_for: tickets