@flydocs/cli 0.6.0-alpha.3 → 0.6.0-alpha.30

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.
Files changed (151) hide show
  1. package/dist/cli.js +2054 -470
  2. package/package.json +1 -1
  3. package/template/.claude/CLAUDE.md +43 -48
  4. package/template/.claude/agents/implementation-agent.md +1 -1
  5. package/template/.claude/agents/pm-agent.md +1 -1
  6. package/template/.claude/commands/activate.md +1 -1
  7. package/template/.claude/commands/attach.md +1 -1
  8. package/template/.claude/commands/block.md +2 -2
  9. package/template/.claude/commands/capture.md +1 -1
  10. package/template/.claude/commands/close.md +1 -1
  11. package/template/.claude/commands/flydocs-setup.md +359 -72
  12. package/template/.claude/commands/flydocs-upgrade.md +26 -27
  13. package/template/.claude/commands/implement.md +1 -1
  14. package/template/.claude/commands/knowledge.md +61 -0
  15. package/template/.claude/commands/new-project.md +1 -1
  16. package/template/.claude/commands/onboard.md +275 -0
  17. package/template/.claude/commands/project-update.md +1 -1
  18. package/template/.claude/commands/refine.md +1 -1
  19. package/template/.claude/commands/review.md +1 -1
  20. package/template/.claude/commands/start-session.md +1 -1
  21. package/template/.claude/commands/status.md +1 -1
  22. package/template/.claude/commands/validate.md +1 -1
  23. package/template/.claude/commands/wrap-session.md +1 -1
  24. package/template/.claude/hooks/auto-approve.py +212 -0
  25. package/template/.claude/hooks/post-pr-check.py +108 -0
  26. package/template/.claude/hooks/post-transition-check.py +281 -0
  27. package/template/.claude/hooks/prompt-submit.py +554 -0
  28. package/template/.claude/hooks/session-start.py +262 -0
  29. package/template/.claude/hooks/stop-gate.py +162 -0
  30. package/template/.claude/settings.json +41 -4
  31. package/template/.claude/skills/README.md +23 -25
  32. package/template/.claude/skills/flydocs-workflow/SKILL.md +134 -42
  33. package/template/.claude/skills/flydocs-workflow/cursor-rule.mdc +9 -8
  34. package/template/.claude/skills/flydocs-workflow/reference/comment-templates.md +1 -0
  35. package/template/.claude/skills/flydocs-workflow/reference/golden-rules.md +28 -17
  36. package/template/.claude/skills/flydocs-workflow/reference/graph-schema.md +116 -0
  37. package/template/.claude/skills/flydocs-workflow/reference/pr-workflow.md +120 -0
  38. package/template/.claude/skills/flydocs-workflow/reference/priority-estimates.md +37 -15
  39. package/template/.claude/skills/flydocs-workflow/reference/service-descriptor-schema.md +260 -0
  40. package/template/.claude/skills/flydocs-workflow/reference/status-workflow.md +26 -26
  41. package/template/.claude/skills/flydocs-workflow/scripts/_local/__init__.py +0 -0
  42. package/template/.claude/skills/{flydocs-local/scripts/flydocs_api.py → flydocs-workflow/scripts/_local/file_store.py} +137 -47
  43. package/template/.claude/skills/flydocs-workflow/scripts/flydocs_api.py +724 -0
  44. package/template/{.flydocs → .claude/skills/flydocs-workflow}/scripts/generate_manifest.py +4 -4
  45. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_build.py +132 -1
  46. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_query.py +18 -5
  47. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_session.py +1 -10
  48. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_update.py +4 -4
  49. package/template/.claude/skills/{flydocs-context-graph → flydocs-workflow}/scripts/graph_utils.py +2 -1
  50. package/template/.claude/skills/flydocs-workflow/scripts/issues.py +738 -0
  51. package/template/.claude/skills/flydocs-workflow/scripts/projects.py +144 -0
  52. package/template/.claude/skills/flydocs-workflow/scripts/pull_services.py +128 -0
  53. package/template/.claude/skills/flydocs-workflow/scripts/push_service.py +132 -0
  54. package/template/.claude/skills/flydocs-workflow/scripts/session.py +54 -0
  55. package/template/.claude/skills/flydocs-workflow/scripts/test_enforcement.py +225 -0
  56. package/template/.claude/skills/flydocs-workflow/scripts/workspace.py +902 -0
  57. package/template/.claude/skills/flydocs-workflow/session.md +87 -29
  58. package/template/.claude/skills/flydocs-workflow/stages/activate.md +18 -7
  59. package/template/.claude/skills/flydocs-workflow/stages/capture.md +10 -5
  60. package/template/.claude/skills/flydocs-workflow/stages/close.md +4 -3
  61. package/template/.claude/skills/flydocs-workflow/stages/implement.md +33 -9
  62. package/template/.claude/skills/flydocs-workflow/stages/refine.md +22 -6
  63. package/template/.claude/skills/flydocs-workflow/stages/review.md +16 -4
  64. package/template/.claude/skills/flydocs-workflow/stages/validate.md +3 -1
  65. package/template/.claude/skills/flydocs-workflow/templates/pr/default.md +33 -0
  66. package/template/.cursor/agents/implementation-agent.md +1 -1
  67. package/template/.cursor/agents/pm-agent.md +2 -2
  68. package/template/.cursor/hooks.json +10 -3
  69. package/template/.env.example +6 -6
  70. package/template/.flydocs/config.json +5 -18
  71. package/template/.flydocs/templates/README.md +13 -14
  72. package/template/.flydocs/templates/bug.md +17 -153
  73. package/template/.flydocs/templates/chore.md +10 -98
  74. package/template/.flydocs/templates/feature.md +12 -158
  75. package/template/.flydocs/templates/idea.md +11 -111
  76. package/template/.flydocs/templates/quick-capture.md +4 -8
  77. package/template/.flydocs/version +1 -1
  78. package/template/AGENTS.md +44 -32
  79. package/template/CHANGELOG.md +37 -0
  80. package/template/flydocs/README.md +1 -3
  81. package/template/flydocs/context/project.md +6 -3
  82. package/template/flydocs/design-system/README.md +3 -3
  83. package/template/flydocs/knowledge/INDEX.md +38 -53
  84. package/template/flydocs/knowledge/README.md +60 -9
  85. package/template/flydocs/knowledge/templates/decision.md +47 -0
  86. package/template/flydocs/knowledge/templates/feature.md +35 -0
  87. package/template/flydocs/knowledge/templates/note.md +25 -0
  88. package/template/manifest.json +24 -20
  89. package/template/.claude/skills/flydocs-cloud/SKILL.md +0 -113
  90. package/template/.claude/skills/flydocs-cloud/cursor-rule.mdc +0 -50
  91. package/template/.claude/skills/flydocs-cloud/scripts/assign.py +0 -22
  92. package/template/.claude/skills/flydocs-cloud/scripts/assign_cycle.py +0 -28
  93. package/template/.claude/skills/flydocs-cloud/scripts/assign_milestone.py +0 -22
  94. package/template/.claude/skills/flydocs-cloud/scripts/comment.py +0 -29
  95. package/template/.claude/skills/flydocs-cloud/scripts/create_issue.py +0 -66
  96. package/template/.claude/skills/flydocs-cloud/scripts/create_milestone.py +0 -35
  97. package/template/.claude/skills/flydocs-cloud/scripts/create_project.py +0 -33
  98. package/template/.claude/skills/flydocs-cloud/scripts/create_team.py +0 -39
  99. package/template/.claude/skills/flydocs-cloud/scripts/estimate.py +0 -29
  100. package/template/.claude/skills/flydocs-cloud/scripts/flydocs_api.py +0 -210
  101. package/template/.claude/skills/flydocs-cloud/scripts/get_issue.py +0 -24
  102. package/template/.claude/skills/flydocs-cloud/scripts/link.py +0 -28
  103. package/template/.claude/skills/flydocs-cloud/scripts/list_cycles.py +0 -28
  104. package/template/.claude/skills/flydocs-cloud/scripts/list_issues.py +0 -44
  105. package/template/.claude/skills/flydocs-cloud/scripts/list_labels.py +0 -19
  106. package/template/.claude/skills/flydocs-cloud/scripts/list_milestones.py +0 -28
  107. package/template/.claude/skills/flydocs-cloud/scripts/list_projects.py +0 -31
  108. package/template/.claude/skills/flydocs-cloud/scripts/list_providers.py +0 -19
  109. package/template/.claude/skills/flydocs-cloud/scripts/list_teams.py +0 -19
  110. package/template/.claude/skills/flydocs-cloud/scripts/priority.py +0 -29
  111. package/template/.claude/skills/flydocs-cloud/scripts/project_update.py +0 -45
  112. package/template/.claude/skills/flydocs-cloud/scripts/set_labels.py +0 -68
  113. package/template/.claude/skills/flydocs-cloud/scripts/set_provider.py +0 -46
  114. package/template/.claude/skills/flydocs-cloud/scripts/set_team.py +0 -41
  115. package/template/.claude/skills/flydocs-cloud/scripts/transition.py +0 -26
  116. package/template/.claude/skills/flydocs-cloud/scripts/update_description.py +0 -36
  117. package/template/.claude/skills/flydocs-cloud/scripts/update_issue.py +0 -82
  118. package/template/.claude/skills/flydocs-context-graph/SKILL.md +0 -87
  119. package/template/.claude/skills/flydocs-context-graph/schema.md +0 -78
  120. package/template/.claude/skills/flydocs-context-graph/scripts/graph_context.py +0 -338
  121. package/template/.claude/skills/flydocs-context7/SKILL.md +0 -105
  122. package/template/.claude/skills/flydocs-context7/cursor-rule.mdc +0 -49
  123. package/template/.claude/skills/flydocs-context7/scripts/context7.py +0 -293
  124. package/template/.claude/skills/flydocs-estimates/SKILL.md +0 -384
  125. package/template/.claude/skills/flydocs-figma/SKILL.md +0 -377
  126. package/template/.claude/skills/flydocs-figma/references/PROMPTING.md +0 -108
  127. package/template/.claude/skills/flydocs-figma/references/TROUBLESHOOTING.md +0 -112
  128. package/template/.claude/skills/flydocs-local/SKILL.md +0 -103
  129. package/template/.claude/skills/flydocs-local/cursor-rule.mdc +0 -43
  130. package/template/.claude/skills/flydocs-local/scripts/assign.py +0 -20
  131. package/template/.claude/skills/flydocs-local/scripts/comment.py +0 -27
  132. package/template/.claude/skills/flydocs-local/scripts/create_issue.py +0 -44
  133. package/template/.claude/skills/flydocs-local/scripts/estimate.py +0 -37
  134. package/template/.claude/skills/flydocs-local/scripts/get_issue.py +0 -20
  135. package/template/.claude/skills/flydocs-local/scripts/link.py +0 -41
  136. package/template/.claude/skills/flydocs-local/scripts/list_issues.py +0 -34
  137. package/template/.claude/skills/flydocs-local/scripts/priority.py +0 -37
  138. package/template/.claude/skills/flydocs-local/scripts/project_update.py +0 -67
  139. package/template/.claude/skills/flydocs-local/scripts/status_summary.py +0 -16
  140. package/template/.claude/skills/flydocs-local/scripts/transition.py +0 -24
  141. package/template/.claude/skills/flydocs-local/scripts/update_description.py +0 -35
  142. package/template/.claude/skills/flydocs-local/scripts/update_issue.py +0 -84
  143. package/template/.flydocs/hooks/auto-approve.py +0 -71
  144. package/template/.flydocs/hooks/prompt-submit.py +0 -277
  145. package/template/.flydocs/scripts/skill_manager.py +0 -541
  146. /package/template/{.flydocs → .claude}/hooks/post-edit.py +0 -0
  147. /package/template/.claude/skills/{flydocs-estimates/references → flydocs-workflow/reference}/provider-costs.md +0 -0
  148. /package/template/.claude/skills/flydocs-workflow/templates/{bug.md → issues/bug.md} +0 -0
  149. /package/template/.claude/skills/flydocs-workflow/templates/{chore.md → issues/chore.md} +0 -0
  150. /package/template/.claude/skills/flydocs-workflow/templates/{feature.md → issues/feature.md} +0 -0
  151. /package/template/.claude/skills/flydocs-workflow/templates/{idea.md → issues/idea.md} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flydocs/cli",
3
- "version": "0.6.0-alpha.3",
3
+ "version": "0.6.0-alpha.30",
4
4
  "type": "module",
5
5
  "description": "FlyDocs AI CLI — install, setup, and manage FlyDocs projects",
6
6
  "bin": {
@@ -1,8 +1,8 @@
1
1
  # Claude Code Configuration
2
2
 
3
- IMPORTANT: Prefer skill-led reasoning over pre-training reasoning for all
4
- workflow, issue management, process, and pattern decisions. Read the relevant
5
- skill file before acting do not guess procedures from training data.
3
+ IMPORTANT: For workflow operations (issue creation, status transitions,
4
+ session management), prefer skill-led reasoning read the relevant skill
5
+ file before acting. For general coding tasks, just write code.
6
6
 
7
7
  > For cross-platform agent instructions, see `AGENTS.md`.
8
8
 
@@ -10,16 +10,18 @@ skill file before acting — do not guess procedures from training data.
10
10
 
11
11
  These are non-negotiable and enforced by hooks:
12
12
 
13
- 1. **Scripts for all issue operations.** Use mechanism scripts (create, transition, comment, assign, etc.) — never describe actions you should execute.
13
+ 1. **Scripts for all issue operations.** Use workflow dispatcher scripts (`issues.py`, `projects.py`, etc.) — never describe actions you should execute.
14
14
  2. **Every status transition gets a comment.** No silent moves. Use the comment templates from the workflow skill.
15
- 3. **Assignment required before In Progress.** Hard gate — transition.py enforces this for cloud tier.
16
- 4. **Checkboxes live in issue description, never comments.** Use `update_description.py` to update acceptance criteria.
17
- 5. **Session wrap posts a project update.** End-of-session summary via `project_update.py` (cloud) or local summary file.
15
+ 3. **Assignment required before In Progress.** Hard gate — `issues.py transition` enforces this for cloud tier.
16
+ 4. **Checkboxes live in issue description, never comments.** Use `issues.py description` to update acceptance criteria.
17
+ 5. **Session wrap posts a project update.** End-of-session summary via `session.py project-update`.
18
18
  6. **No secrets in commits.** Never commit `.env`, credentials, or API keys.
19
19
 
20
20
  ## Workflow
21
21
 
22
- The FlyDocs development lifecycle. Read the workflow skill before taking any workflow action.
22
+ The FlyDocs development lifecycle. Slash commands (`/capture`, `/activate`,
23
+ etc.) load stage procedures automatically. For manual workflow actions, the
24
+ stage files contain required procedures, templates, and field requirements.
23
25
 
24
26
  | Action | Skill | Entry Point |
25
27
  | -------------------- | ------------------ | --------------------------------- |
@@ -31,48 +33,46 @@ The FlyDocs development lifecycle. Read the workflow skill before taking any wor
31
33
  | QE validation | `flydocs-workflow` | `stages/validate.md` |
32
34
  | Close issue | `flydocs-workflow` | `stages/close.md` |
33
35
  | Start / wrap session | `flydocs-workflow` | `session.md` |
36
+ | Knowledge capture | `flydocs-workflow` | `/knowledge` command |
37
+ | PR & git workflow | `flydocs-workflow` | `reference/pr-workflow.md` |
34
38
  | Comment templates | `flydocs-workflow` | `reference/comment-templates.md` |
35
39
  | Status transitions | `flydocs-workflow` | `reference/status-workflow.md` |
36
40
  | Priority & estimates | `flydocs-workflow` | `reference/priority-estimates.md` |
37
41
  | Issue templates | `flydocs-workflow` | `templates/` |
38
42
 
39
- ## Mechanism Scripts
43
+ ## Scripts
40
44
 
41
- Issue operations are handled by the installed mechanism skill. Only one is active at a time.
45
+ All issue, project, workspace, and graph operations use grouped dispatcher
46
+ scripts in `flydocs-workflow/scripts/`. The unified client auto-detects tier
47
+ (cloud vs local) — scripts never check tier directly.
42
48
 
43
- | Tier | Skill | Backend |
44
- | ----------------- | --------------- | ------------------------------ |
45
- | Local (free) | `flydocs-local` | File-based (`flydocs/issues/`) |
46
- | Cloud (connected) | `flydocs-cloud` | Linear GraphQL API |
47
-
48
- Read the active mechanism skill's `SKILL.md` for script catalog and calling conventions.
49
-
50
- **Shared contract scripts** (both tiers implement):
51
- `create_issue.py`, `transition.py`, `comment.py`, `list_issues.py`, `get_issue.py`, `assign.py`, `update_description.py`
52
-
53
- ## Premium Skills
54
-
55
- FlyDocs platform skills with premium functionality.
56
-
57
- | Skill | When to Read |
58
- | ------------------- | ---------------------------------------------------------- |
59
- | `flydocs-figma` | Building UI from Figma designs — extraction, token mapping |
60
- | `flydocs-estimates` | Estimating AI token usage and costs (opt-in via config) |
49
+ | Dispatcher | Operations |
50
+ | ---------------- | ------------------------------------------------------------------ |
51
+ | `issues.py` | create, get, list, transition, assign, update, comment, audit, fix |
52
+ | `projects.py` | list-projects, create-project, milestones, cycles |
53
+ | `workspace.py` | validate, labels, statuses, teams, config, identity |
54
+ | `session.py` | project-update, status-summary |
55
+ | `graph_*.py` | build, query, update, session recording |
56
+ | `push/pull_*.py` | Service descriptor sync (cloud tier) |
61
57
 
62
58
  ## Project Context
63
59
 
64
- | File | Purpose |
65
- | ---------------------------- | -------------------------------------------- |
66
- | `flydocs/context/project.md` | Product scope, tech stack, active priorities |
67
- | `.flydocs/config.json` | Tier, provider, labels, active projects |
60
+ | File | Purpose |
61
+ | ------------------------------ | ------------------------------------------------- |
62
+ | `flydocs/context/project.md` | Product scope, tech stack, active priorities |
63
+ | `flydocs/context/service.json` | Service descriptor, topology, cross-repo context |
64
+ | `.flydocs/config.json` | Tier, provider, labels, active projects, topology |
68
65
 
69
66
  ## Hooks
70
67
 
71
- | Hook | Trigger | Purpose |
72
- | -------------------------- | ----------------------- | ------------------------------ |
73
- | `PostToolUse` (Edit/Write) | After code changes | Auto-format |
74
- | `UserPromptSubmit` | Before prompt | Inject git/issue context |
75
- | `PreToolUse` | Before script execution | Auto-approve mechanism scripts |
68
+ | Hook | Trigger | Purpose |
69
+ | -------------------------- | ----------------------- | ---------------------------------------------------------- |
70
+ | `PreToolUse` (Bash/Edit) | Before tool execution | Auto-approve scripts, validate create args, comment hints |
71
+ | `PostToolUse` (Edit/Write) | After code changes | Auto-format |
72
+ | `PostToolUse` (Bash) | After shell commands | Transition validation, session file updates, create audit |
73
+ | `UserPromptSubmit` | Before prompt | Directive workflow context, milestone/label injection |
74
+ | `Stop` | Agent finishes response | Full lifecycle gate (READY, IMPLEMENTING, REVIEW, BLOCKED) |
75
+ | `SessionStart` | New session begins | Inject continuity context |
76
76
 
77
77
  ## Output Formatting
78
78
 
@@ -110,16 +110,11 @@ response — session summaries, issue comments, status updates, and plans.
110
110
 
111
111
  ## Skills Index
112
112
 
113
- IMPORTANT: Prefer skill-led reasoning over pre-training reasoning.
114
- Consult the relevant skill BEFORE writing code or making workflow decisions.
115
-
116
- | Skill | Triggers | Entry |
117
- | ----------------- | ----------------------------------------------------------------------------------------------------------------------- | ----------------------------------------- |
118
- | flydocs-cloud | create issue, transition, comment, list issues, assign, update description, update issue, project update, Linear, cloud | .claude/skills/flydocs-cloud/SKILL.md |
119
- | flydocs-context7 | context7, library docs, documentation lookup, framework docs, package docs, API reference | .claude/skills/flydocs-context7/SKILL.md |
120
- | flydocs-estimates | estimate, cost, token usage, API cost, labor estimate, sizing, effort | .claude/skills/flydocs-estimates/SKILL.md |
121
- | flydocs-figma | Figma, design, screenshot, token mapping, component from design, pixel-perfect, design system | .claude/skills/flydocs-figma/SKILL.md |
122
- | flydocs-local | create issue, transition, comment, list issues, assign, update description, status summary, local | .claude/skills/flydocs-local/SKILL.md |
123
- | flydocs-workflow | capture, refine, activate, implement, review, validate, close, session, workflow, transition, status, issue | .claude/skills/flydocs-workflow/SKILL.md |
113
+ For issue operations and status transitions only — not general coding.
114
+ Slash commands load procedures automatically; use scripts directly for CRUD.
115
+
116
+ | Skill | Triggers | Entry |
117
+ | ---------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------- |
118
+ | flydocs-workflow | create issue, capture issue, log a bug, add to backlog, transition, move to, mark as, set status, assign issue, close issue, start session, wrap session, project update, status update, add comment, set priority, set estimate | .claude/skills/flydocs-workflow/SKILL.md |
124
119
 
125
120
  <!-- flydocs:skills-manifest:end -->
@@ -20,7 +20,7 @@ Implementation agent for FlyDocs spec-driven development.
20
20
 
21
21
  ## Constraints
22
22
 
23
- - **Scripts for issue updates** — use mechanism scripts for progress comments and transitions
23
+ - **Scripts for issue updates** — use workflow dispatcher scripts for progress comments and transitions
24
24
  - Follow installed community skills for code quality patterns
25
25
  - Keep changes focused on the spec — don't over-engineer
26
26
 
@@ -21,7 +21,7 @@ Product management agent for FlyDocs spec-driven workflow.
21
21
  ## Constraints
22
22
 
23
23
  - **Read-only** — cannot modify code files (Write/Edit disabled)
24
- - **Scripts for all issue ops** — read the mechanism skill's SKILL.md for calling conventions
24
+ - **Scripts for all issue ops** — use workflow dispatcher scripts (`issues.py`, `projects.py`, etc.) for all operations
25
25
  - Defer technical decisions to implementation agent
26
26
 
27
27
  Read `.claude/skills/flydocs-workflow/SKILL.md` for lifecycle and stage procedures.
@@ -3,7 +3,7 @@
3
3
  Recommend or assign work and transition to In Progress.
4
4
 
5
5
  Read `.claude/skills/flydocs-workflow/stages/activate.md` and follow the procedure.
6
- Read the active mechanism skill's `SKILL.md` for script calling conventions.
6
+ Read `.claude/skills/flydocs-workflow/SKILL.md` for script calling conventions.
7
7
 
8
8
  Triggers: "activate", "start work on", "what should I work on"
9
9
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  Add a reference or file link to an issue via comment.
4
4
 
5
- Use `comment.py <ref> "<attachment details>"` from the active mechanism skill.
5
+ Use `issues.py comment <ref> "<attachment details>"` from `.claude/skills/flydocs-workflow/scripts/`.
6
6
 
7
7
  Triggers: "attach this", "link this to the issue"
8
8
 
@@ -2,8 +2,8 @@
2
2
 
3
3
  Move an issue to Blocked status with reason and optional blocker link.
4
4
 
5
- Use `transition.py <ref> BLOCKED "<reason>"` from the active mechanism skill.
6
- For dependency links (cloud only): use `link.py <ref> <blocker_ref> blocks`.
5
+ Use `issues.py transition <ref> BLOCKED "<reason>"` from `.claude/skills/flydocs-workflow/scripts/`.
6
+ For dependency links (cloud only): use `issues.py link <ref> <blocker_ref> blocks`.
7
7
 
8
8
  Triggers: "I'm blocked", "can't proceed", "stuck on"
9
9
 
@@ -3,7 +3,7 @@
3
3
  Create a new issue from user input — feature, bug, chore, or idea.
4
4
 
5
5
  Read `.claude/skills/flydocs-workflow/stages/capture.md` and follow the procedure.
6
- Read the active mechanism skill's `SKILL.md` for script calling conventions.
6
+ Read `.claude/skills/flydocs-workflow/SKILL.md` for script calling conventions.
7
7
 
8
8
  Triggers: "capture that", "add to backlog", "found a bug", "new idea", "quick capture"
9
9
 
@@ -3,7 +3,7 @@
3
3
  Move a validated issue to its terminal state (Done, Archived, Canceled, Duplicate).
4
4
 
5
5
  Read `.claude/skills/flydocs-workflow/stages/close.md` and follow the procedure.
6
- Read the active mechanism skill's `SKILL.md` for script calling conventions.
6
+ Read `.claude/skills/flydocs-workflow/SKILL.md` for script calling conventions.
7
7
 
8
8
  Triggers: "close", "done", "archive", "cancel"
9
9