@dv.nghiem/flowdeck 0.3.2 → 0.3.3
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 +11 -7
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +187 -108
- package/dist/tools/memory-status.d.ts +3 -0
- package/dist/tools/memory-status.d.ts.map +1 -0
- package/docs/commands.md +102 -9
- package/docs/quick-start.md +44 -23
- package/docs/workflows.md +10 -8
- package/package.json +1 -1
- package/src/commands/fd-execute.md +192 -0
- package/src/commands/fd-new-feature.md +44 -157
- package/src/commands/fd-new-project.md +1 -2
- package/src/commands/fd-plan.md +1 -1
- package/src/commands/fd-suggest.md +84 -0
- package/src/commands/fd-verify.md +126 -0
- package/src/rules/common/agent-orchestration.md +5 -5
- package/src/rules/common/coding-style.md +17 -0
package/README.md
CHANGED
|
@@ -45,18 +45,20 @@ See [Installation](docs/installation.md) for prerequisites, verification steps,
|
|
|
45
45
|
|
|
46
46
|
## Core Workflow
|
|
47
47
|
|
|
48
|
-
FlowDeck structures every feature through a
|
|
48
|
+
FlowDeck structures every feature through a six-step cycle:
|
|
49
49
|
|
|
50
50
|
```
|
|
51
|
-
/fd-new-project
|
|
51
|
+
/fd-new-project → /fd-new-feature → /fd-discuss → /fd-plan → /fd-execute → /fd-verify
|
|
52
52
|
```
|
|
53
53
|
|
|
54
54
|
| Step | Command | What happens |
|
|
55
55
|
|------|---------|--------------|
|
|
56
|
-
| **
|
|
57
|
-
| **
|
|
58
|
-
| **
|
|
59
|
-
| **
|
|
56
|
+
| **Setup** | `/fd-new-project MyApp` | Creates `.planning/` directory with `PROJECT.md`, `STATE.md`, and `ROADMAP.md` |
|
|
57
|
+
| **Define Feature** | `/fd-new-feature "…"` | Initialize feature context, creates `FEATURE.md` in current phase |
|
|
58
|
+
| **Discuss** | `/fd-discuss` | `@discusser` runs structured Q&A, saves decisions to `DISCUSS.md` |
|
|
59
|
+
| **Plan** | `/fd-plan` | `@planner` builds a wave-structured `PLAN.md`; you type `CONFIRM` to proceed |
|
|
60
|
+
| **Execute** | `/fd-execute` | `@orchestrator` delegates to `@architect`, `@coder`, `@tester`, `@reviewer` via TDD |
|
|
61
|
+
| **Verify** | `/fd-verify` | Full test suite, code review, security scan, and deploy check |
|
|
60
62
|
|
|
61
63
|
State is written to `.planning/STATE.md` after each phase. Use `/fd-checkpoint` to save mid-session and `/fd-resume` to reload context in a new session.
|
|
62
64
|
|
|
@@ -70,9 +72,11 @@ State is written to `.planning/STATE.md` after each phase. Use `/fd-checkpoint`
|
|
|
70
72
|
|---------|---------|
|
|
71
73
|
| `/fd-new-project` | Bootstrap a new project with PROJECT.md, ROADMAP.md, STATE.md |
|
|
72
74
|
| `/fd-map-codebase` | Analyse and index the codebase into structured `.codebase/` files |
|
|
75
|
+
| `/fd-new-feature` | Define a new feature and initialize feature context |
|
|
73
76
|
| `/fd-discuss` | Pre-planning structured Q&A to capture decisions |
|
|
74
77
|
| `/fd-plan` | Generate a wave-structured execution plan from decisions |
|
|
75
|
-
| `/fd-
|
|
78
|
+
| `/fd-execute` | Implement feature with TDD discipline and parallel agents |
|
|
79
|
+
| `/fd-verify` | Full verification pipeline: tests, code review, security scan, deploy check |
|
|
76
80
|
| `/fd-fix-bug` | Diagnose, fix, and verify a bug with regression test |
|
|
77
81
|
| `/fd-write-docs` | Explore APIs and generate accurate documentation |
|
|
78
82
|
| `/fd-deploy-check` | Pre-deploy safety check with test, security, and build verification |
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,qBAAqB,CAAA;AAkGjD,QAAA,MAAM,MAAM,EAAE,MA6Ob,CAAA;AAED,eAAe,MAAM,CAAA"}
|