@jakkrichm/create-nexus-devflow 2.2.2 → 2.5.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/dist/bin/create-nexus-devflow.js +9 -1
- package/dist/bin/create-nexus-devflow.js.map +1 -1
- package/dist/lib/command-catalog.js +1 -1
- package/dist/lib/command-catalog.js.map +1 -1
- package/dist/lib/dashboard-page.d.ts +1 -1
- package/dist/lib/dashboard-page.js +42 -20
- package/dist/lib/dashboard-page.js.map +1 -1
- package/dist/lib/dashboard-snapshot.js +16 -12
- package/dist/lib/dashboard-snapshot.js.map +1 -1
- package/dist/lib/dashboard.js +10 -1
- package/dist/lib/dashboard.js.map +1 -1
- package/dist/lib/doctor.js +1 -1
- package/dist/lib/gatekeeper.d.ts +4 -0
- package/dist/lib/gatekeeper.js +2 -2
- package/dist/lib/gatekeeper.js.map +1 -1
- package/dist/lib/git-status.d.ts +10 -2
- package/dist/lib/git-status.js +57 -29
- package/dist/lib/git-status.js.map +1 -1
- package/dist/lib/swarm-orchestrator.d.ts +4 -1
- package/dist/lib/swarm-orchestrator.js +2 -2
- package/dist/lib/swarm-orchestrator.js.map +1 -1
- package/dist/lib/version-check.js +1 -1
- package/dist/lib/workflow-state.js +19 -32
- package/dist/lib/workflow-state.js.map +1 -1
- package/package.json +1 -1
- package/template/.agents/skills/complete/SKILL.md +47 -36
- package/template/.agents/skills/devflow/SKILL.md +51 -79
- package/template/.claude/skills/complete/SKILL.md +47 -36
- package/template/.claude/skills/devflow/SKILL.md +51 -79
- package/template/AGENTS.md +21 -30
- package/template/devflow/build-plan.md +9 -0
- package/template/devflow/context/ai-interaction.md +38 -39
- package/template/devflow/context/findings.md +8 -11
- package/template/devflow/context/glossary.md +31 -0
- package/template/devflow/reference/build-plan-template.md +65 -0
- package/template/devflow/reference/feature-spec-template.md +110 -0
- package/template/devflow/reference/project-plan-template.md +128 -0
- package/template/devflow/reference/running-id-contract.md +12 -11
- package/template/.agents/skills/10-define/SKILL.md +0 -54
- package/template/.agents/skills/20-spec/SKILL.md +0 -155
- package/template/.agents/skills/30-plan/SKILL.md +0 -226
- package/template/.agents/skills/40-execute/SKILL.md +0 -158
- package/template/.agents/skills/50-verify/SKILL.md +0 -62
- package/template/.agents/skills/60-report/SKILL.md +0 -57
- package/template/.agents/skills/70-deliver/SKILL.md +0 -72
- package/template/.claude/skills/10-define/SKILL.md +0 -54
- package/template/.claude/skills/20-spec/SKILL.md +0 -155
- package/template/.claude/skills/30-plan/SKILL.md +0 -226
- package/template/.claude/skills/40-execute/SKILL.md +0 -158
- package/template/.claude/skills/50-verify/SKILL.md +0 -62
- package/template/.claude/skills/60-report/SKILL.md +0 -57
- package/template/.claude/skills/70-deliver/SKILL.md +0 -72
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 70-deliver
|
|
3
|
-
description: "[devflow][D] Deliver stage in DevFlow 2.0 - package verified work for delivery, archive run to categorized history, git merge, PR, or deployment."
|
|
4
|
-
argument-hint: "{running-id or workspace path}"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Phase 70: Deliver
|
|
8
|
-
|
|
9
|
-
$ARGUMENTS
|
|
10
|
-
|
|
11
|
-
Package approved work for delivery after the report stage has captured the final verified story. Archives the active run from `devflow/context/current-run/` to `devflow/history/{features|fixes|rollbacks}/{xxx-slug}/`, updates `HISTORY.md` and `CHANGELOG.md`, executes pre-flight smoke checks, performs conventional git commit & merge, and closes the run.
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
```text
|
|
16
|
-
70-deliver {id or workspace path}
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
## Markdown-First Contract
|
|
20
|
-
|
|
21
|
-
Write the primary stage artifact to:
|
|
22
|
-
|
|
23
|
-
```text
|
|
24
|
-
devflow/context/current-run/70-deliver.md
|
|
25
|
-
```
|
|
26
|
-
|
|
27
|
-
## Process & Quality Gates
|
|
28
|
-
|
|
29
|
-
### 0. Step 0 Safety Pass & Findings Ledger Gate
|
|
30
|
-
|
|
31
|
-
Before packaging, merging, or delivering:
|
|
32
|
-
|
|
33
|
-
1. **Findings Ledger Blockers**:
|
|
34
|
-
- Inspect `devflow/context/findings.md`.
|
|
35
|
-
- No Finding of severity `P0` or `P1` in `open` or `fixed` status is permitted.
|
|
36
|
-
- `fixed` still blocks release until reviewed and closed in `50-verify`.
|
|
37
|
-
2. **Pre-flight & Deployment Smoke Validation**:
|
|
38
|
-
- Verify environment variables and configuration parameters.
|
|
39
|
-
- Run production build or package smoke check (`npm run build` or `npm run test:package`).
|
|
40
|
-
- Validate that clean state exists with no untracked experimental files.
|
|
41
|
-
3. **2-Stage Approval Separation**:
|
|
42
|
-
- Consent to merge into `main` is strictly separate from consent to `git push` to remote or deploy.
|
|
43
|
-
|
|
44
|
-
### 1. Changelog & SemVer Version Bump
|
|
45
|
-
|
|
46
|
-
1. Calculate next version according to **Semantic Versioning (SemVer)**:
|
|
47
|
-
- `Major`: Breaking architectural changes, removed public APIs
|
|
48
|
-
- `Minor`: New backward-compatible features added
|
|
49
|
-
- `Patch`: Bug fixes, optimizations, documentation
|
|
50
|
-
2. Append new release entry to `CHANGELOG.md` in [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) format (`Added`, `Changed`, `Fixed`, `Removed`, `Security`).
|
|
51
|
-
|
|
52
|
-
### 2. Conventional Commit & Git Merge
|
|
53
|
-
|
|
54
|
-
1. Stage all release and tracking files.
|
|
55
|
-
2. Commit with conventional format: `chore(release): release {version}` or `feat({scope}): {summary}`.
|
|
56
|
-
3. Squash-merge to base branch (`main`) with explicit user approval.
|
|
57
|
-
|
|
58
|
-
### 3. Archive Run Folder to Categorized History
|
|
59
|
-
|
|
60
|
-
1. Determine Category (`features`, `fixes`, `rollbacks`).
|
|
61
|
-
2. Move directory `devflow/context/current-run/` ➔ `devflow/history/{category}/{xxx-slug}/`.
|
|
62
|
-
3. Clean resolved findings (`closed`, `accepted`, `invalid`) from `devflow/context/findings.md` and append to the release notes.
|
|
63
|
-
4. Append entry to `devflow/history/HISTORY.md` linking to `history/{category}/{xxx-slug}/60-report.md`.
|
|
64
|
-
|
|
65
|
-
### 4. Update Workspace State
|
|
66
|
-
|
|
67
|
-
Set `devflow/context/current-stage.md` to:
|
|
68
|
-
- `Active Discovery ID`: `None`
|
|
69
|
-
- `Active Running ID`: `None (Idle)`
|
|
70
|
-
- `Current Stage`: `Idle (Ready for new run)`
|
|
71
|
-
- `Last Completed Run`: `{ID} ({YYYY-MM-DD})`
|
|
72
|
-
- `Last Updated`: `{YYYY-MM-DD}`
|