@jakkrichm/create-nexus-devflow 2.2.0 β 2.2.1
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/README.md +1 -1
- package/dist/bin/create-nexus-devflow.js +1 -1
- package/dist/bin/create-nexus-devflow.js.map +1 -1
- package/dist/lib/command-catalog.js +5 -2
- package/dist/lib/command-catalog.js.map +1 -1
- package/dist/lib/dashboard.js +1 -1
- package/dist/lib/discoveries.js +18 -6
- package/dist/lib/discoveries.js.map +1 -1
- package/dist/lib/ideas.js +2 -2
- package/dist/lib/ideas.js.map +1 -1
- package/dist/lib/update.js +6 -2
- package/dist/lib/update.js.map +1 -1
- package/dist/lib/workflow-state.js +9 -6
- package/dist/lib/workflow-state.js.map +1 -1
- package/dist/scripts/prepare-template.js +10 -2
- package/dist/scripts/prepare-template.js.map +1 -1
- package/package.json +1 -1
- package/template/.agents/skills/10-define/SKILL.md +1 -1
- package/template/.agents/skills/brainstorm/SKILL.md +1 -1
- package/template/.agents/skills/devflow/SKILL.md +9 -7
- package/template/.agents/skills/discovery/SKILL.md +75 -150
- package/template/.agents/skills/feature/SKILL.md +1 -0
- package/template/.agents/skills/grill/SKILL.md +93 -0
- package/template/.claude/skills/10-define/SKILL.md +1 -1
- package/template/.claude/skills/brainstorm/SKILL.md +1 -1
- package/template/.claude/skills/devflow/SKILL.md +9 -7
- package/template/.claude/skills/discovery/SKILL.md +75 -150
- package/template/.claude/skills/feature/SKILL.md +1 -0
- package/template/.claude/skills/grill/SKILL.md +93 -0
- package/template/AGENTS.md +6 -6
- package/template/devflow/context/ai-interaction.md +11 -0
- package/template/devflow/context/coding-standards.md +15 -1
- package/template/devflow/context/current-stage.md +1 -1
- package/template/devflow/decisions/.gitkeep +0 -0
- package/template/devflow/decisions/README.md +24 -0
- package/template/devflow/history/HISTORY.md +1 -1
- package/template/.agents/skills/00-explore/SKILL.md +0 -84
- package/template/.claude/skills/00-explore/SKILL.md +0 -84
|
@@ -1,166 +1,91 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: discovery
|
|
3
|
-
description: "[devflow][
|
|
3
|
+
description: "[devflow][D] Unified discovery and exploration stage in DevFlow 2.0 - conducts project-level roadmap discovery (project-plan.md/build-plan.md) or feature-level exploration (Stage 00) before delivery commitment."
|
|
4
|
+
argument-hint: "[{title, request, IDEA-xxx, or discovery-id}]"
|
|
4
5
|
---
|
|
5
6
|
|
|
6
|
-
# discovery -
|
|
7
|
+
# discovery - Unified Discovery & Pre-Delivery Exploration
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
$ARGUMENTS
|
|
9
10
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
`/discovery` is the central discovery entry point in Nexus-DevFlow. It operates in two adaptive modes based on input scope:
|
|
12
|
+
1. **πΊοΈ Macro Project Discovery**: Develops high-level product and build roadmap plans (`devflow/project-plan.md` & `devflow/build-plan.md`) through an adaptive conversation before `/overview`.
|
|
13
|
+
2. **π Micro Feature Exploration (Stage 00)**: Explores a specific feature, request, or idea before committing to delivery, routes through supporting lenses, and finishes with a visible `Proceed`, `Defer`, or `Reject` decision before `10-define`.
|
|
13
14
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
of that conversation, and draft the two user-owned planning files only when the
|
|
18
|
-
user asks for drafts.
|
|
15
|
+
---
|
|
16
|
+
|
|
17
|
+
## Invocations & Usage
|
|
19
18
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
19
|
+
```text
|
|
20
|
+
# 1. Macro Project Planning Mode (No arguments or project scope)
|
|
21
|
+
/discovery
|
|
22
|
+
/discovery --project
|
|
23
23
|
|
|
24
|
-
|
|
24
|
+
# 2. Micro Feature Exploration Mode (Stage 00 of Deep-Track)
|
|
25
|
+
/discovery {title or request}
|
|
26
|
+
/discovery IDEA-xxx
|
|
27
|
+
/discovery {discovery-id}
|
|
28
|
+
```
|
|
25
29
|
|
|
26
|
-
|
|
30
|
+
---
|
|
27
31
|
|
|
28
|
-
|
|
29
|
-
- `devflow/build-plan.md`
|
|
30
|
-
- the root project manifest, README, and framework configuration when they
|
|
31
|
-
already contain relevant facts
|
|
32
|
-
- `devflow/context/project-overview.md` only when the user is revisiting an
|
|
33
|
-
established project's direction
|
|
32
|
+
## Mode 1: Macro Project Discovery (Roadmap & System Planning)
|
|
34
33
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
deepen it, revise a specific direction, or use it unchanged as conversation
|
|
39
|
-
context. Do not replace it with a fresh generic plan.
|
|
34
|
+
Use when:
|
|
35
|
+
- Starting a new product or shaping high-level architecture across the entire repository.
|
|
36
|
+
- Revisiting the overall project vision, major milestones, or tech stack before generating `/overview`.
|
|
40
37
|
|
|
41
|
-
|
|
42
|
-
|
|
38
|
+
### Process:
|
|
39
|
+
1. **Establish Baseline**: Read `devflow/project-plan.md` and `devflow/build-plan.md` (if present).
|
|
40
|
+
2. **Adaptive Conversation**: Ask 1-2 focused questions at a time covering problem space, user workflows, MVP boundaries, non-goals, data models, and stack constraints.
|
|
41
|
+
3. **Periodic Snapshots**: Provide compact summaries of confirmed decisions, working assumptions, and open TODOs.
|
|
42
|
+
4. **Draft Plans Behind Approval Gate**: Draft proposed `project-plan.md` and `build-plan.md` only when the user explicitly requests drafts.
|
|
43
|
+
5. **Write on Approval**: Write approved files and recommend `/overview` as the next step.
|
|
43
44
|
|
|
44
|
-
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Mode 2: Micro Feature Exploration (Stage 00 of Deep-Track)
|
|
48
|
+
|
|
49
|
+
Use when:
|
|
50
|
+
- Exploring a specific feature, complex architectural change, or pending idea (`/discovery IDEA-xxx`).
|
|
51
|
+
- The team needs to evaluate feasibility, options, domain glossary, or root causes before locking delivery scope.
|
|
52
|
+
|
|
53
|
+
### Markdown-First Contract:
|
|
54
|
+
Write the primary discovery artifact to:
|
|
55
|
+
```text
|
|
56
|
+
devflow/discoveries/{DISCOVERY_ID}-{slug}/discovery.md
|
|
57
|
+
```
|
|
58
|
+
*(A Discovery ID uses the namespace `DISC-YYYYMMDD-NNN`. It is not a Running ID and does not reserve a numeric delivery run.)*
|
|
59
|
+
|
|
60
|
+
### 5 Supporting Routes & Built-in Lenses:
|
|
61
|
+
|
|
62
|
+
1. **Brainstorming Lens (Divergent & Convergent)**:
|
|
63
|
+
- Formulate 2-3 viable options with trade-offs.
|
|
64
|
+
- Construct a **Trade-off Comparison Table** (Pros, Cons, Recommendation).
|
|
65
|
+
2. **Research & Empirical Proof Lens**:
|
|
66
|
+
- Inspect existing codebase patterns with search tools (`grep_search`, `rg`).
|
|
67
|
+
- Conduct external web search if library feasibility or API contracts are uncertain.
|
|
68
|
+
3. **PRD & Scoping Lens**:
|
|
69
|
+
- Problem Statement, Target Persona, Core User Stories, and In-Scope vs. Out-of-Scope boundaries.
|
|
70
|
+
4. **Issue & Bug Triage Lens**:
|
|
71
|
+
- Classify severity (`Critical/Blocker`, `Major`, `Minor`) and determine whether root-cause analysis (`debug`) is required.
|
|
72
|
+
5. **Socratic Grilling & Domain Alignment Lens (`grill`)**:
|
|
73
|
+
- Codebase-grounded interactive inquiry to clarify entity boundaries, data flows, and edge cases.
|
|
74
|
+
- Record agreed terminology in `devflow/context/glossary.md` and major architecture decisions in `devflow/decisions/ADR-xxx-{slug}.md`.
|
|
75
|
+
|
|
76
|
+
### Decision & Approval Gate:
|
|
77
|
+
Set one visible decision:
|
|
78
|
+
- `Proceed`: Enough value and evidence exist to define delivery work:
|
|
79
|
+
- **ποΈ Fast-Track (Recommended for 85% of standard features/fixes)**: Handoff to `/feature {discovery_id}` or `/fix {discovery_id}` (writes `devflow/context/current-feature.md`).
|
|
80
|
+
- **ποΈ Deep-Track (For large architectural epics/migrations)**: Handoff to `10-define {discovery_id}` (writes `devflow/context/current-run/10-define.md`).
|
|
81
|
+
- `Defer`: The idea remains relevant but timing or evidence is not ready.
|
|
82
|
+
- `Reject`: The idea should not proceed under current framing.
|
|
83
|
+
|
|
84
|
+
---
|
|
45
85
|
|
|
46
|
-
|
|
47
|
-
Prefer a likely interpretation the user can correct over a vague request for
|
|
48
|
-
more detail. Explain a tradeoff when the answer would materially change scope,
|
|
49
|
-
architecture, cost, or build order.
|
|
86
|
+
## Next Workflow Recommendations
|
|
50
87
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
- MVP capabilities, explicit non-goals, and later possibilities
|
|
56
|
-
- business rules, data, integrations, permissions, and important edge cases
|
|
57
|
-
- stack choices, constraints, dependencies, and technical unknowns
|
|
58
|
-
- UI/UX direction, accessibility needs, and useful references
|
|
59
|
-
- monetization or business model when relevant
|
|
60
|
-
- deployment shape, environments, background work, storage, and operations
|
|
61
|
-
- risks, assumptions, unresolved decisions, and how success will be judged
|
|
62
|
-
- feature boundaries, dependencies, and a sensible build order
|
|
63
|
-
|
|
64
|
-
Depth is the goal. Follow a consequential answer until its implications are
|
|
65
|
-
clear instead of racing to the next category. Do not ask the user to repeat facts
|
|
66
|
-
already established in the conversation or repository. Do not force irrelevant
|
|
67
|
-
topics merely to complete a checklist.
|
|
68
|
-
|
|
69
|
-
Periodically return a compact discovery snapshot with:
|
|
70
|
-
|
|
71
|
-
- confirmed decisions
|
|
72
|
-
- working assumptions that still need confirmation
|
|
73
|
-
- open questions or conflicts
|
|
74
|
-
- ideas explicitly deferred or excluded
|
|
75
|
-
|
|
76
|
-
The snapshot keeps a long conversation coherent. It is not permission to write
|
|
77
|
-
the plans.
|
|
78
|
-
|
|
79
|
-
## Step 3 - decide whether the plans are ready
|
|
80
|
-
|
|
81
|
-
Do not end discovery because a preset number of questions has been reached. It
|
|
82
|
-
is ready to draft when:
|
|
83
|
-
|
|
84
|
-
- the problem, users, and core workflows are concrete
|
|
85
|
-
- MVP scope and non-goals are distinguishable
|
|
86
|
-
- data and technical choices are detailed enough to expose major dependencies
|
|
87
|
-
- the build order can be expressed as feature-sized outcomes
|
|
88
|
-
- important contradictions are resolved
|
|
89
|
-
- remaining unknowns are either safe to defer or explicitly accepted as TODOs
|
|
90
|
-
- the user says they are ready for the plans to be drafted
|
|
91
|
-
|
|
92
|
-
If the user asks for drafts while a material gap remains, name the gap and ask
|
|
93
|
-
whether to continue discovery or preserve it as an explicit TODO. Respect the
|
|
94
|
-
choice. The user may also stop at any time and write the plans manually.
|
|
95
|
-
|
|
96
|
-
## Step 4 - draft both planning files
|
|
97
|
-
|
|
98
|
-
When the user asks for drafts, produce complete proposed contents for both files
|
|
99
|
-
without writing them yet.
|
|
100
|
-
|
|
101
|
-
For `devflow/project-plan.md`:
|
|
102
|
-
|
|
103
|
-
- keep the template's main subject areas, adding useful sections when the
|
|
104
|
-
conversation requires them
|
|
105
|
-
- preserve rationale, examples, tradeoffs, constraints, edge cases, and
|
|
106
|
-
exclusions that will matter during later feature work
|
|
107
|
-
- be as detailed as the project needs; never compress a rich discovery into a
|
|
108
|
-
line or two per section
|
|
109
|
-
- distinguish confirmed decisions from assumptions and TODOs
|
|
110
|
-
|
|
111
|
-
For `devflow/build-plan.md`:
|
|
112
|
-
|
|
113
|
-
- use numbered checkboxes and optional milestone headings
|
|
114
|
-
- keep each item a high-level, feature-sized outcome with a concise description
|
|
115
|
-
- order items by dependency and the earliest useful vertical slice
|
|
116
|
-
- keep implementation detail in later `/feature` specs rather than turning the
|
|
117
|
-
roadmap into a task dump
|
|
118
|
-
- include only agreed scope; place deferred ideas outside the MVP or omit them as
|
|
119
|
-
the user directed
|
|
120
|
-
|
|
121
|
-
If substantive plans already exist, preserve their information and completed
|
|
122
|
-
build-plan numbering. Clearly identify proposed additions, removals, or changed
|
|
123
|
-
decisions.
|
|
124
|
-
|
|
125
|
-
End by asking the user to review the full drafts. Do not write either file in the
|
|
126
|
-
same response that first presents them.
|
|
127
|
-
|
|
128
|
-
## Step 5 - write only after approval
|
|
129
|
-
|
|
130
|
-
Write the approved drafts only after the user explicitly approves them. If the
|
|
131
|
-
user requests changes, revise the drafts and show the affected sections again
|
|
132
|
-
before writing.
|
|
133
|
-
|
|
134
|
-
After writing:
|
|
135
|
-
|
|
136
|
-
- report which files changed
|
|
137
|
-
- list any retained TODOs or unresolved decisions
|
|
138
|
-
- remind the user that both files remain theirs to edit and deepen directly
|
|
139
|
-
- stop before generating `devflow/context/project-overview.md`
|
|
140
|
-
- point to `/overview` or `$overview` as the next optional command when the user
|
|
141
|
-
is satisfied with the plans
|
|
142
|
-
|
|
143
|
-
## Rules
|
|
144
|
-
|
|
145
|
-
- This skill is always optional. Never make it a prerequisite for `/overview`,
|
|
146
|
-
`/feature`, or any other Blueprint command.
|
|
147
|
-
- Never start it automatically from `/onboard`, because planning files are
|
|
148
|
-
empty, or because a project is new.
|
|
149
|
-
- Never imply that plans created manually or through another conversation are
|
|
150
|
-
inferior or incomplete merely because this skill was not used.
|
|
151
|
-
- Never overwrite substantive planning content without showing the replacement
|
|
152
|
-
and receiving explicit approval.
|
|
153
|
-
- Never write plans during the interview or after a vague signal such as "looks
|
|
154
|
-
good." The user must explicitly approve the proposed file contents.
|
|
155
|
-
- Never scaffold the app, edit product code, generate the overview, create a
|
|
156
|
-
feature spec, commit, merge, push, or deploy.
|
|
157
|
-
- Preserve detailed project reasoning in `project-plan.md`, while keeping
|
|
158
|
-
`build-plan.md` high-level and trackable.
|
|
159
|
-
- Keep the conversation adaptive. Depth comes from relevant follow-up questions,
|
|
160
|
-
not from mechanically asking every possible question.
|
|
161
|
-
|
|
162
|
-
## Formatting
|
|
163
|
-
|
|
164
|
-
Follow `devflow/context/ai-interaction.md`. During discovery, ask one focused
|
|
165
|
-
question per turn. For snapshots and draft reviews, use concise headings and
|
|
166
|
-
lists so confirmed decisions and remaining gaps are easy to inspect.
|
|
88
|
+
- **From Macro Project Mode**: Run `/overview` to compile context into `devflow/context/project-overview.md`.
|
|
89
|
+
- **From Micro Stage 00 (Approved Proceed β Fast-Track)**: Run `/feature {discovery_id}` to start lean living spec.
|
|
90
|
+
- **From Micro Stage 00 (Approved Proceed β Deep-Track)**: Run `10-define {discovery_id}` to allocate a Running ID.
|
|
91
|
+
- **From Micro Stage 00 (Defer / Reject)**: No next command needed.
|
|
@@ -32,6 +32,7 @@ big item has been split into sub-items, the next unchecked sub-item is the targe
|
|
|
32
32
|
|
|
33
33
|
## Step 1 - pick the target
|
|
34
34
|
|
|
35
|
+
- Given a Discovery ID or Idea ID (e.g. `/feature DISC-20260824-001` or `/feature IDEA-001`) -> import problem context, research, trade-offs, and ADRs from `devflow/discoveries/{DISC-ID}/discovery.md` or `devflow/ideas.md` into the living spec.
|
|
35
36
|
- Given a number or name that matches a build-plan item -> use it.
|
|
36
37
|
- Given a request that clearly describes a new feature with no reasonable match
|
|
37
38
|
in the build plan -> follow **New-feature intake** below.
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: grill
|
|
3
|
+
description: "[devflow][B] Interactive Socratic alignment & domain modeling - stress-test plans, extract domain glossary, and record architecture decision records (ADRs) before delivery."
|
|
4
|
+
argument-hint: "{topic, plan, or question}"
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# grill - Socratic Alignment & Domain Modeling
|
|
8
|
+
|
|
9
|
+
$ARGUMENTS
|
|
10
|
+
|
|
11
|
+
Use this skill to conduct a codebase-grounded, interactive Socratic interview with the user. It clarifies domain vocabulary, resolves architectural ambiguities, and prevents misalignment before writing specifications or code.
|
|
12
|
+
|
|
13
|
+
## Invocations & Aliases
|
|
14
|
+
|
|
15
|
+
- `/grill {topic or plan}`: Standard slash command in Claude Code, Google Antigravity, and Gemini CLI
|
|
16
|
+
- `grill {topic or plan}`: Plain text invocation
|
|
17
|
+
- `$grill {topic or plan}`: Codex CLI invocation
|
|
18
|
+
- `/align {topic}`: Alias for domain alignment
|
|
19
|
+
|
|
20
|
+
## Core Philosophy: Align Before You Build
|
|
21
|
+
|
|
22
|
+
1. **Codebase-Grounded**: Read existing code and context first. Never ask questions the codebase can already answer.
|
|
23
|
+
2. **One Round at a Time**: Ask 1-2 focused, high-leverage questions per round with clear recommended defaults. Never dump a wall of 10 questions.
|
|
24
|
+
3. **Lazy Inline Persistence**:
|
|
25
|
+
- Write agreed domain terminology to `devflow/context/glossary.md` the moment each term resolves.
|
|
26
|
+
- Record significant, hard-to-reverse technical decisions as ADRs in `devflow/decisions/ADR-xxx-{slug}.md`.
|
|
27
|
+
4. **Zero Assumptions**: Challenge ambiguities, contradictory requirements, and naming inconsistencies upfront.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Process & Execution Loop
|
|
32
|
+
|
|
33
|
+
### 1. Grounding Phase (Silent Inspection)
|
|
34
|
+
Before asking the first question:
|
|
35
|
+
- Read `devflow/context/project-overview.md` and `devflow/context/coding-standards.md`.
|
|
36
|
+
- Inspect existing domain terms in `devflow/context/glossary.md` (if present).
|
|
37
|
+
- Search codebase patterns (`grep_search` / `rg`) related to the topic to ground technical reality.
|
|
38
|
+
|
|
39
|
+
### 2. Interactive Socratic Interview Loop
|
|
40
|
+
In each turn:
|
|
41
|
+
- Identify the most critical unresolved branch in the design tree:
|
|
42
|
+
- **Domain Language & Boundaries**: "What exactly is an Entity X versus Entity Y in this context?"
|
|
43
|
+
- **Data Flow & Contracts**: "Who owns state X? Synchronous vs. asynchronous?"
|
|
44
|
+
- **Edge Cases & Failure Modes**: "What happens on network failure, concurrent mutation, or invalid input?"
|
|
45
|
+
- **Irreversible Trade-offs**: "Database schema change vs. application-layer adapter?"
|
|
46
|
+
- Ask **1-2 questions maximum** per turn.
|
|
47
|
+
- Always provide a recommended default with concise technical rationale.
|
|
48
|
+
- Wait for the user's answer.
|
|
49
|
+
|
|
50
|
+
### 3. Immediate State Persistence
|
|
51
|
+
|
|
52
|
+
#### A. Domain Glossary (`devflow/context/glossary.md`)
|
|
53
|
+
When a domain term or conceptual definition crystallizes, immediately create or append to `devflow/context/glossary.md`:
|
|
54
|
+
|
|
55
|
+
```markdown
|
|
56
|
+
### [Term / Concept]
|
|
57
|
+
- **Definition**: Clear, unambiguous definition within this project.
|
|
58
|
+
- **Constraints**: Invariants, boundaries, or lifecycle rules.
|
|
59
|
+
- **Aliases / Related**: Related terms or common misnomers.
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
#### B. Architecture Decision Records (`devflow/decisions/ADR-xxx-{slug}.md`)
|
|
63
|
+
When a decision meets the 3 ADR criteria:
|
|
64
|
+
1. **Significant Impact**: Affects architecture, data schema, security, or public API.
|
|
65
|
+
2. **Hard to Reverse**: Changing it later requires painful migration or refactoring.
|
|
66
|
+
3. **Multiple Viable Alternatives**: There were real trade-offs between 2+ options.
|
|
67
|
+
|
|
68
|
+
Allocate the next sequential ID (`ADR-001`, `ADR-002`, ...) and create `devflow/decisions/ADR-xxx-{slug}.md`:
|
|
69
|
+
|
|
70
|
+
```markdown
|
|
71
|
+
# ADR-xxx: {Title}
|
|
72
|
+
|
|
73
|
+
- **Status**: Accepted
|
|
74
|
+
- **Date**: {YYYY-MM-DD}
|
|
75
|
+
- **Context**: {Why was this decision needed? What problem does it solve?}
|
|
76
|
+
- **Decision**: {What did we decide to do?}
|
|
77
|
+
- **Alternatives Considered**:
|
|
78
|
+
- *Option 1*: {Pros / Cons}
|
|
79
|
+
- *Option 2*: {Pros / Cons}
|
|
80
|
+
- **Consequences**:
|
|
81
|
+
- *Positive*: {Benefits gained}
|
|
82
|
+
- *Trade-offs / Risks*: {Costs, constraints, or follow-ups}
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## 4. Closing & Handoff
|
|
88
|
+
|
|
89
|
+
When all design branches are resolved:
|
|
90
|
+
1. Summarize settled domain terms and created ADRs.
|
|
91
|
+
2. Provide explicit next command recommendations:
|
|
92
|
+
- **Fast-Track (Standard Features/Fixes)**: Run `/feature {topic}` or `/fix {topic}` to immediately start the living spec.
|
|
93
|
+
- **Deep-Track (Large Architectural Epics)**: Run `10-define` or `/discovery` with the discovery context.
|
package/template/AGENTS.md
CHANGED
|
@@ -31,10 +31,10 @@ Unused adapter families can be removed. Codex, Antigravity, GitHub Copilot, and
|
|
|
31
31
|
|
|
32
32
|
### Universal Invocation & Agent Directives:
|
|
33
33
|
|
|
34
|
-
1. **Canonical Command Names & AI Provider Invocation**: Each workflow stage and companion tool has exactly **one Canonical Name** (e.g. `feature`, `fix`, `implement`, `check`, `complete`, `
|
|
35
|
-
- **Canonical Name (Plain text)**: Directly invoke or prompt the command by its standard name (e.g., `feature`, `40-execute`, `devflow`).
|
|
36
|
-
- **Slash Prefix (`/`)**: For tools supporting slash commands (Claude Code, Google Antigravity, Gemini CLI), e.g., `/feature`, `/fix`, `/implement`, `/40-execute`, `/devflow`.
|
|
37
|
-
- **Dollar Prefix (`$`)**: For OpenAI Codex CLI or skill-invocation tools, e.g., `$feature`, `$fix`, `$40-execute`, `$devflow`.
|
|
34
|
+
1. **Canonical Command Names & AI Provider Invocation**: Each workflow stage and companion tool has exactly **one Canonical Name** (e.g. `feature`, `fix`, `implement`, `check`, `complete`, `discovery`, `10-define`, `20-spec`, `30-plan`, `40-execute`, `50-verify`, `60-report`, `70-deliver`, `devflow`, `doctor`, `overview`, `debug`, `onboard`, `adopt`, `try`, `rollback`, `idea`, `ci`, `test`, `autopilot`, `prototype`, `report-html`, `brief`, `audit`, `release`, `brainstorm`, `grill`). The way you invoke commands depends on your AI Provider / Tool:
|
|
35
|
+
- **Canonical Name (Plain text)**: Directly invoke or prompt the command by its standard name (e.g., `feature`, `40-execute`, `devflow`, `discovery`).
|
|
36
|
+
- **Slash Prefix (`/`)**: For tools supporting slash commands (Claude Code, Google Antigravity, Gemini CLI), e.g., `/feature`, `/fix`, `/implement`, `/40-execute`, `/devflow`, `/discovery`.
|
|
37
|
+
- **Dollar Prefix (`$`)**: For OpenAI Codex CLI or skill-invocation tools, e.g., `$feature`, `$fix`, `$40-execute`, `$devflow`, `$discovery`.
|
|
38
38
|
2. **OpenAI Codex & Non-Native CLI Tools**: In environments without automatic background skill discovery (such as OpenAI Codex CLI, Aider, or generic terminals), **you MUST use your file reading tool to inspect `.agents/skills/<skill>/SKILL.md` before executing the stage** to strictly follow its schema, artifact contract, and quality gates.
|
|
39
39
|
3. **Google Antigravity & Claude Code**: Native skill engines automatically discover and surface `.agents/skills/` and `.claude/skills/`.
|
|
40
40
|
4. **State-Aware Inspection**: When unsure what to do next, invoke `devflow` to automatically inspect `devflow/context/current-stage.md` and active context in `devflow/context/`.
|
|
@@ -67,10 +67,10 @@ Recommended for 85% of daily work (features, bug fixes, UI improvements, iterati
|
|
|
67
67
|
Recommended for large architectural epics, database migrations, and multi-agent coordination:
|
|
68
68
|
|
|
69
69
|
```text
|
|
70
|
-
|
|
70
|
+
discovery βββΆ 10-define βββΆ 20-spec βββΆ 30-plan βββΆ 40-execute βββΆ 50-verify βββΆ 60-report βββΆ 70-deliver
|
|
71
71
|
```
|
|
72
72
|
|
|
73
|
-
1. `
|
|
73
|
+
1. `discovery`: Unified pre-delivery discovery & exploration (project-level roadmap planning or feature-level exploration with 5 lenses: Brainstorm, Research, PRD, Bug Triage, Grill) before delivery commitment (`devflow/discoveries/{DISC-ID}/discovery.md`).
|
|
74
74
|
2. `10-define`: Turn approved discovery into bounded delivery run in `devflow/context/current-run/10-define.md`.
|
|
75
75
|
3. `20-spec`: Formalize markdown-first delivery contract & acceptance criteria (`20-spec.md`).
|
|
76
76
|
4. `30-plan`: Breakdown spec into executable tasks with test decisions (`30-plan.md` + checklists).
|
|
@@ -120,3 +120,14 @@ Progress lives in persistent files, not in transient chat history:
|
|
|
120
120
|
- `autopilot` is an explicit opt-in command (`/autopilot`). Never suggest it as the default next action.
|
|
121
121
|
- When invoked, it runs one bounded spec/plan/implement/verify pass.
|
|
122
122
|
- Autopilot **MUST stop** before `/complete`, merge, push, deploy, or any destructive action.
|
|
123
|
+
|
|
124
|
+
---
|
|
125
|
+
|
|
126
|
+
## 9. Socratic Alignment & Grilling Discipline (`/grill`)
|
|
127
|
+
|
|
128
|
+
- **Align Before You Build**: When plans, domain language, or architectural boundaries are fuzzy, invoke `/grill` (or use the Grilling Lens in `00-explore`) to conduct a structured interview before creating specifications.
|
|
129
|
+
- **Codebase-Grounded Inquiry**: Inspect existing context and code before asking questions. Never ask questions the codebase already answers.
|
|
130
|
+
- **Turn Discipline**: Ask only 1β2 high-leverage questions per turn with clear recommended defaults. Never dump a wall of questions.
|
|
131
|
+
- **Lazy Inline Persistence**:
|
|
132
|
+
- Immediately append resolved terms to `devflow/context/glossary.md`.
|
|
133
|
+
- Immediately record major, hard-to-reverse architectural decisions as Architecture Decision Records in `devflow/decisions/ADR-xxx-{slug}.md`.
|
|
@@ -58,11 +58,12 @@
|
|
|
58
58
|
|
|
59
59
|
```text
|
|
60
60
|
nexus-devflow/
|
|
61
|
-
βββ .agents/skills/ # Codex
|
|
61
|
+
βββ .agents/skills/ # Codex, Google Antigravity & Copilot skill definitions
|
|
62
62
|
βββ .claude/skills/ # Claude Code mirrored skill adapters
|
|
63
63
|
βββ .nexus/ # Metadata tracking & upstream baseline ledger
|
|
64
64
|
βββ devflow/ # Framework workspace context, history, and discoveries
|
|
65
65
|
β βββ context/ # Living source-of-truth context files
|
|
66
|
+
β βββ decisions/ # Architecture Decision Records (ADRs)
|
|
66
67
|
β βββ discoveries/ # Pre-delivery discovery records (00-explore.md)
|
|
67
68
|
β βββ history/ # Master delivery archive (features/, fixes/, rollbacks/, HISTORY.md)
|
|
68
69
|
β βββ ideas.md # Idea Inbox and backlog
|
|
@@ -140,3 +141,16 @@ Testing is a core quality gate in Nexus-DevFlow, not an afterthought:
|
|
|
140
141
|
- `Major`: Breaking architectural change
|
|
141
142
|
- `Minor`: New feature addition
|
|
142
143
|
- `Patch`: Bug fix or documentation update
|
|
144
|
+
|
|
145
|
+
---
|
|
146
|
+
|
|
147
|
+
## 11. Architecture Decision Records (ADRs) & Domain Glossary
|
|
148
|
+
|
|
149
|
+
- **Domain Glossary (`devflow/context/glossary.md`)**:
|
|
150
|
+
- Keep domain terms concise, precise, and unambiguous.
|
|
151
|
+
- Define entity boundaries, invariants, and lifecycle rules.
|
|
152
|
+
- Do NOT store implementation specs or ephemeral task lists in the glossary.
|
|
153
|
+
- **Architecture Decision Records (`devflow/decisions/ADR-xxx-{slug}.md`)**:
|
|
154
|
+
- Store durable, high-impact, hard-to-reverse architectural decisions in `devflow/decisions/`.
|
|
155
|
+
- Number sequentially (`ADR-001`, `ADR-002`, ...).
|
|
156
|
+
- Must include: Context, Decision, Alternatives Considered (with trade-offs), and Consequences (positive gains and accepted risks).
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
- **Active Discovery ID**: `None`
|
|
4
4
|
- **Active Running ID**: `None`
|
|
5
|
-
- **Current Stage**: `Idle (Ready for new /feature, /fix, /
|
|
5
|
+
- **Current Stage**: `Idle (Ready for new /feature, /fix, /discovery, or /10-define)`
|
|
6
6
|
- **Living Spec**: `None`
|
|
7
7
|
- **Last Completed Run**: `None`
|
|
8
8
|
- **Last Updated**: `None`
|
|
File without changes
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# ποΈ Architecture Decision Records (ADRs)
|
|
2
|
+
|
|
3
|
+
This directory stores durable Architecture Decision Records (ADRs) produced during `/grill`, `00-explore`, or high-stakes architectural design sessions.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## π ADR Format & Standards
|
|
8
|
+
|
|
9
|
+
Each ADR is named `ADR-xxx-{slug}.md` (e.g. `ADR-001-database-schema-migration.md`) and follows this structure:
|
|
10
|
+
|
|
11
|
+
```markdown
|
|
12
|
+
# ADR-xxx: {Title}
|
|
13
|
+
|
|
14
|
+
- **Status**: Accepted | Proposed | Deprecated | Superseded by ADR-yyy
|
|
15
|
+
- **Date**: YYYY-MM-DD
|
|
16
|
+
- **Context**: Problem statement, background, and why this decision was needed.
|
|
17
|
+
- **Decision**: The selected architectural approach or invariant.
|
|
18
|
+
- **Alternatives Considered**:
|
|
19
|
+
- *Option 1*: Pros / Cons
|
|
20
|
+
- *Option 2*: Pros / Cons
|
|
21
|
+
- **Consequences**:
|
|
22
|
+
- *Positive*: Benefits and capabilities unlocked
|
|
23
|
+
- *Trade-offs / Risks*: Costs, complexity, or constraints
|
|
24
|
+
```
|
|
@@ -8,7 +8,7 @@ This master ledger tracks all released delivery runs, milestones, and rollbacks
|
|
|
8
8
|
|
|
9
9
|
| Completed Date | Run ID | Category | Title | Git Commit | Status | Archive Link |
|
|
10
10
|
| :--- | :--- | :--- | :--- | :--- | :--- | :--- |
|
|
11
|
-
| _No shipped runs yet_ | - | - | Run `/feature` or `/
|
|
11
|
+
| _No shipped runs yet_ | - | - | Run `/feature` or `/discovery` to start your first delivery run | - | - | - |
|
|
12
12
|
|
|
13
13
|
---
|
|
14
14
|
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 00-explore
|
|
3
|
-
description: "[devflow][D] Explore stage in DevFlow 2.0 - explore a request, route supporting inquiry, and decide whether delivery work should begin without allocating a running ID."
|
|
4
|
-
argument-hint: "{title, request, or discovery-id}"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Phase 00: Explore
|
|
8
|
-
|
|
9
|
-
$ARGUMENTS
|
|
10
|
-
|
|
11
|
-
Explore a request before delivery commitment. Create or resume a Discovery ID, choose only the supporting route that the uncertainty requires, and finish with a visible `Proceed`, `Defer`, or `Reject` decision. Do not create a Running ID in this stage.
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
```text
|
|
16
|
-
00-explore {title or request}
|
|
17
|
-
00-explore IDEA-xxx
|
|
18
|
-
00-explore {discovery-id}
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Use this when:
|
|
22
|
-
|
|
23
|
-
- a new request needs discussion before the team commits to delivery
|
|
24
|
-
- exploring a pending idea from `devflow/ideas.md` (`00-explore IDEA-xxx`)
|
|
25
|
-
- the best route may be `Brainstorm`, `PRD`, `Research`, or `Debug`
|
|
26
|
-
- supporting findings need to be synthesized into a go/no-go decision
|
|
27
|
-
|
|
28
|
-
## Markdown-First Contract
|
|
29
|
-
|
|
30
|
-
Write the primary discovery artifact to:
|
|
31
|
-
|
|
32
|
-
```text
|
|
33
|
-
devflow/discoveries/{DISCOVERY_ID}-{slug}/00-explore.md
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
A Discovery ID uses a separate namespace such as `DISC-YYYYMMDD-NNN`. It is not a Running ID and must not reserve a numeric delivery run.
|
|
37
|
-
|
|
38
|
-
## Process
|
|
39
|
-
|
|
40
|
-
### Loop Contract
|
|
41
|
-
|
|
42
|
-
Run discovery as a decision-and-routing loop, not as task initialization.
|
|
43
|
-
|
|
44
|
-
- **Intent**: understand the request, select proportionate supporting inquiry, and decide whether the idea should enter delivery definition.
|
|
45
|
-
- **Context**: read the request, discovery artifact when resuming, project context, constraints, and available evidence.
|
|
46
|
-
- **Action**: restate the problem, identify the decision-blocking uncertainty, select `Brainstorm`, `PRD`, `Research`, `Debug`, or direct decision, then synthesize returned findings.
|
|
47
|
-
- **Observation**: use concrete evidence such as option tradeoffs, product framing, research results, root cause, stakeholder constraints, open questions, and visible risk.
|
|
48
|
-
- **Stop Condition**: stop when the selected route and evidence are recorded, open questions are visible, and the decision is `Proceed`, `Defer`, or `Reject`.
|
|
49
|
-
- **Handoff**: only an approved `Proceed` discovery may hand off to `10-define {discovery_id}`.
|
|
50
|
-
|
|
51
|
-
### 1. Supporting Routes & Built-in Lenses
|
|
52
|
-
|
|
53
|
-
1. **Brainstorming Lens (Divergent & Convergent)**:
|
|
54
|
-
- Formulate 2-3 viable options.
|
|
55
|
-
- Construct a **Trade-off Comparison Table**:
|
|
56
|
-
| Option | Pros | Cons | Recommendation |
|
|
57
|
-
| :--- | :--- | :--- | :--- |
|
|
58
|
-
2. **Research & Empirical Proof Lens**:
|
|
59
|
-
- Inspect existing codebase patterns with search tools (`grep_search`, `rg`).
|
|
60
|
-
- Conduct external web search if library feasibility or API contracts are uncertain.
|
|
61
|
-
- Record verifiable empirical facts.
|
|
62
|
-
3. **PRD & Scoping Lens**:
|
|
63
|
-
- Problem Statement & Target User Persona.
|
|
64
|
-
- Core User Stories (`As a... I want to... So that...`).
|
|
65
|
-
- In-Scope vs. Out-of-Scope boundaries.
|
|
66
|
-
4. **Issue & Bug Triage Lens**:
|
|
67
|
-
- Classify severity (`Critical/Blocker`, `Major`, `Minor`).
|
|
68
|
-
- Determine whether root-cause analysis (`debug`) is required before spec.
|
|
69
|
-
|
|
70
|
-
### 2. Decision & Approval Gate
|
|
71
|
-
|
|
72
|
-
Set one decision:
|
|
73
|
-
- `Proceed`: enough value and evidence exist to define delivery work
|
|
74
|
-
- `Defer`: the idea remains relevant but timing, evidence, or ownership is not ready
|
|
75
|
-
- `Reject`: the idea should not proceed under the current framing
|
|
76
|
-
|
|
77
|
-
### 3. Write `00-explore.md`
|
|
78
|
-
|
|
79
|
-
Record selected routes, returned findings, open questions, decision, and rationale.
|
|
80
|
-
|
|
81
|
-
## Next Workflow Recommendation
|
|
82
|
-
|
|
83
|
-
- **Primary**: `10-define {discovery_id}` only after approved Proceed
|
|
84
|
-
- **Defer/Reject**: No next command needed
|
|
@@ -1,84 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 00-explore
|
|
3
|
-
description: "[devflow][D] Explore stage in DevFlow 2.0 - explore a request, route supporting inquiry, and decide whether delivery work should begin without allocating a running ID."
|
|
4
|
-
argument-hint: "{title, request, or discovery-id}"
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Phase 00: Explore
|
|
8
|
-
|
|
9
|
-
$ARGUMENTS
|
|
10
|
-
|
|
11
|
-
Explore a request before delivery commitment. Create or resume a Discovery ID, choose only the supporting route that the uncertainty requires, and finish with a visible `Proceed`, `Defer`, or `Reject` decision. Do not create a Running ID in this stage.
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
```text
|
|
16
|
-
00-explore {title or request}
|
|
17
|
-
00-explore IDEA-xxx
|
|
18
|
-
00-explore {discovery-id}
|
|
19
|
-
```
|
|
20
|
-
|
|
21
|
-
Use this when:
|
|
22
|
-
|
|
23
|
-
- a new request needs discussion before the team commits to delivery
|
|
24
|
-
- exploring a pending idea from `devflow/ideas.md` (`00-explore IDEA-xxx`)
|
|
25
|
-
- the best route may be `Brainstorm`, `PRD`, `Research`, or `Debug`
|
|
26
|
-
- supporting findings need to be synthesized into a go/no-go decision
|
|
27
|
-
|
|
28
|
-
## Markdown-First Contract
|
|
29
|
-
|
|
30
|
-
Write the primary discovery artifact to:
|
|
31
|
-
|
|
32
|
-
```text
|
|
33
|
-
devflow/discoveries/{DISCOVERY_ID}-{slug}/00-explore.md
|
|
34
|
-
```
|
|
35
|
-
|
|
36
|
-
A Discovery ID uses a separate namespace such as `DISC-YYYYMMDD-NNN`. It is not a Running ID and must not reserve a numeric delivery run.
|
|
37
|
-
|
|
38
|
-
## Process
|
|
39
|
-
|
|
40
|
-
### Loop Contract
|
|
41
|
-
|
|
42
|
-
Run discovery as a decision-and-routing loop, not as task initialization.
|
|
43
|
-
|
|
44
|
-
- **Intent**: understand the request, select proportionate supporting inquiry, and decide whether the idea should enter delivery definition.
|
|
45
|
-
- **Context**: read the request, discovery artifact when resuming, project context, constraints, and available evidence.
|
|
46
|
-
- **Action**: restate the problem, identify the decision-blocking uncertainty, select `Brainstorm`, `PRD`, `Research`, `Debug`, or direct decision, then synthesize returned findings.
|
|
47
|
-
- **Observation**: use concrete evidence such as option tradeoffs, product framing, research results, root cause, stakeholder constraints, open questions, and visible risk.
|
|
48
|
-
- **Stop Condition**: stop when the selected route and evidence are recorded, open questions are visible, and the decision is `Proceed`, `Defer`, or `Reject`.
|
|
49
|
-
- **Handoff**: only an approved `Proceed` discovery may hand off to `10-define {discovery_id}`.
|
|
50
|
-
|
|
51
|
-
### 1. Supporting Routes & Built-in Lenses
|
|
52
|
-
|
|
53
|
-
1. **Brainstorming Lens (Divergent & Convergent)**:
|
|
54
|
-
- Formulate 2-3 viable options.
|
|
55
|
-
- Construct a **Trade-off Comparison Table**:
|
|
56
|
-
| Option | Pros | Cons | Recommendation |
|
|
57
|
-
| :--- | :--- | :--- | :--- |
|
|
58
|
-
2. **Research & Empirical Proof Lens**:
|
|
59
|
-
- Inspect existing codebase patterns with search tools (`grep_search`, `rg`).
|
|
60
|
-
- Conduct external web search if library feasibility or API contracts are uncertain.
|
|
61
|
-
- Record verifiable empirical facts.
|
|
62
|
-
3. **PRD & Scoping Lens**:
|
|
63
|
-
- Problem Statement & Target User Persona.
|
|
64
|
-
- Core User Stories (`As a... I want to... So that...`).
|
|
65
|
-
- In-Scope vs. Out-of-Scope boundaries.
|
|
66
|
-
4. **Issue & Bug Triage Lens**:
|
|
67
|
-
- Classify severity (`Critical/Blocker`, `Major`, `Minor`).
|
|
68
|
-
- Determine whether root-cause analysis (`debug`) is required before spec.
|
|
69
|
-
|
|
70
|
-
### 2. Decision & Approval Gate
|
|
71
|
-
|
|
72
|
-
Set one decision:
|
|
73
|
-
- `Proceed`: enough value and evidence exist to define delivery work
|
|
74
|
-
- `Defer`: the idea remains relevant but timing, evidence, or ownership is not ready
|
|
75
|
-
- `Reject`: the idea should not proceed under the current framing
|
|
76
|
-
|
|
77
|
-
### 3. Write `00-explore.md`
|
|
78
|
-
|
|
79
|
-
Record selected routes, returned findings, open questions, decision, and rationale.
|
|
80
|
-
|
|
81
|
-
## Next Workflow Recommendation
|
|
82
|
-
|
|
83
|
-
- **Primary**: `10-define {discovery_id}` only after approved Proceed
|
|
84
|
-
- **Defer/Reject**: No next command needed
|