wogiflow 1.0.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.
Files changed (221) hide show
  1. package/.workflow/agents/reviewer.md +81 -0
  2. package/.workflow/agents/security.md +94 -0
  3. package/.workflow/agents/story-writer.md +58 -0
  4. package/.workflow/bridges/base-bridge.js +395 -0
  5. package/.workflow/bridges/claude-bridge.js +434 -0
  6. package/.workflow/bridges/index.js +130 -0
  7. package/.workflow/lib/assumption-detector.js +481 -0
  8. package/.workflow/lib/config-substitution.js +371 -0
  9. package/.workflow/lib/failure-categories.js +478 -0
  10. package/.workflow/state/app-map.md.template +15 -0
  11. package/.workflow/state/architecture.md.template +24 -0
  12. package/.workflow/state/component-index.json.template +5 -0
  13. package/.workflow/state/decisions.md.template +15 -0
  14. package/.workflow/state/feedback-patterns.md.template +9 -0
  15. package/.workflow/state/knowledge-sync.json.template +6 -0
  16. package/.workflow/state/progress.md.template +14 -0
  17. package/.workflow/state/ready.json.template +7 -0
  18. package/.workflow/state/request-log.md.template +14 -0
  19. package/.workflow/state/session-state.json.template +11 -0
  20. package/.workflow/state/stack.md.template +33 -0
  21. package/.workflow/state/testing.md.template +36 -0
  22. package/.workflow/templates/claude-md.hbs +257 -0
  23. package/.workflow/templates/correction-report.md +67 -0
  24. package/.workflow/templates/gemini-md.hbs +52 -0
  25. package/README.md +1802 -0
  26. package/bin/flow +205 -0
  27. package/lib/index.js +33 -0
  28. package/lib/installer.js +467 -0
  29. package/lib/release-channel.js +269 -0
  30. package/lib/skill-registry.js +526 -0
  31. package/lib/upgrader.js +401 -0
  32. package/lib/utils.js +305 -0
  33. package/package.json +64 -0
  34. package/scripts/flow +985 -0
  35. package/scripts/flow-adaptive-learning.js +1259 -0
  36. package/scripts/flow-aggregate.js +488 -0
  37. package/scripts/flow-archive +133 -0
  38. package/scripts/flow-auto-context.js +1015 -0
  39. package/scripts/flow-auto-learn.js +615 -0
  40. package/scripts/flow-bridge.js +223 -0
  41. package/scripts/flow-browser-suggest.js +316 -0
  42. package/scripts/flow-bug.js +247 -0
  43. package/scripts/flow-cascade.js +711 -0
  44. package/scripts/flow-changelog +85 -0
  45. package/scripts/flow-checkpoint.js +483 -0
  46. package/scripts/flow-cli.js +403 -0
  47. package/scripts/flow-code-intelligence.js +760 -0
  48. package/scripts/flow-complexity.js +502 -0
  49. package/scripts/flow-config-set.js +152 -0
  50. package/scripts/flow-constants.js +157 -0
  51. package/scripts/flow-context +152 -0
  52. package/scripts/flow-context-init.js +482 -0
  53. package/scripts/flow-context-monitor.js +384 -0
  54. package/scripts/flow-context-scoring.js +886 -0
  55. package/scripts/flow-correct.js +458 -0
  56. package/scripts/flow-damage-control.js +985 -0
  57. package/scripts/flow-deps +101 -0
  58. package/scripts/flow-diff.js +700 -0
  59. package/scripts/flow-done +151 -0
  60. package/scripts/flow-done.js +489 -0
  61. package/scripts/flow-durable-session.js +1541 -0
  62. package/scripts/flow-entropy-monitor.js +345 -0
  63. package/scripts/flow-export-profile +349 -0
  64. package/scripts/flow-export-scanner.js +1046 -0
  65. package/scripts/flow-figma-confirm.js +400 -0
  66. package/scripts/flow-figma-extract.js +496 -0
  67. package/scripts/flow-figma-generate.js +683 -0
  68. package/scripts/flow-figma-index.js +909 -0
  69. package/scripts/flow-figma-match.js +617 -0
  70. package/scripts/flow-figma-mcp-server.js +518 -0
  71. package/scripts/flow-figma-pipeline.js +414 -0
  72. package/scripts/flow-file-ops.js +301 -0
  73. package/scripts/flow-gate-confidence.js +825 -0
  74. package/scripts/flow-guided-edit.js +659 -0
  75. package/scripts/flow-health +185 -0
  76. package/scripts/flow-health.js +413 -0
  77. package/scripts/flow-hooks.js +556 -0
  78. package/scripts/flow-http-client.js +249 -0
  79. package/scripts/flow-hybrid-detect.js +167 -0
  80. package/scripts/flow-hybrid-interactive.js +591 -0
  81. package/scripts/flow-hybrid-test.js +152 -0
  82. package/scripts/flow-import-profile +439 -0
  83. package/scripts/flow-init +253 -0
  84. package/scripts/flow-instruction-richness.js +827 -0
  85. package/scripts/flow-jira-integration.js +579 -0
  86. package/scripts/flow-knowledge-router.js +522 -0
  87. package/scripts/flow-knowledge-sync.js +589 -0
  88. package/scripts/flow-linear-integration.js +631 -0
  89. package/scripts/flow-links.js +774 -0
  90. package/scripts/flow-log-manager.js +559 -0
  91. package/scripts/flow-loop-enforcer.js +1246 -0
  92. package/scripts/flow-loop-retry-learning.js +630 -0
  93. package/scripts/flow-lsp.js +923 -0
  94. package/scripts/flow-map-index +348 -0
  95. package/scripts/flow-map-sync +201 -0
  96. package/scripts/flow-memory-blocks.js +668 -0
  97. package/scripts/flow-memory-compactor.js +350 -0
  98. package/scripts/flow-memory-db.js +1110 -0
  99. package/scripts/flow-memory-sync.js +484 -0
  100. package/scripts/flow-metrics.js +353 -0
  101. package/scripts/flow-migrate-ids.js +370 -0
  102. package/scripts/flow-model-adapter.js +802 -0
  103. package/scripts/flow-model-router.js +884 -0
  104. package/scripts/flow-models.js +1231 -0
  105. package/scripts/flow-morning.js +517 -0
  106. package/scripts/flow-multi-approach.js +660 -0
  107. package/scripts/flow-new-feature +86 -0
  108. package/scripts/flow-onboard +1042 -0
  109. package/scripts/flow-orchestrate-llm.js +459 -0
  110. package/scripts/flow-orchestrate.js +3592 -0
  111. package/scripts/flow-output.js +123 -0
  112. package/scripts/flow-parallel-detector.js +399 -0
  113. package/scripts/flow-parallel-dispatch.js +987 -0
  114. package/scripts/flow-parallel.js +428 -0
  115. package/scripts/flow-pattern-enforcer.js +600 -0
  116. package/scripts/flow-prd-manager.js +282 -0
  117. package/scripts/flow-progress.js +323 -0
  118. package/scripts/flow-project-analyzer.js +975 -0
  119. package/scripts/flow-prompt-composer.js +487 -0
  120. package/scripts/flow-providers.js +1381 -0
  121. package/scripts/flow-queue.js +308 -0
  122. package/scripts/flow-ready +82 -0
  123. package/scripts/flow-ready.js +189 -0
  124. package/scripts/flow-regression.js +396 -0
  125. package/scripts/flow-response-parser.js +450 -0
  126. package/scripts/flow-resume.js +284 -0
  127. package/scripts/flow-rules-sync.js +439 -0
  128. package/scripts/flow-run-trace.js +718 -0
  129. package/scripts/flow-safety.js +587 -0
  130. package/scripts/flow-search +104 -0
  131. package/scripts/flow-security.js +481 -0
  132. package/scripts/flow-session-end +106 -0
  133. package/scripts/flow-session-end.js +437 -0
  134. package/scripts/flow-session-state.js +671 -0
  135. package/scripts/flow-setup-hooks +216 -0
  136. package/scripts/flow-setup-hooks.js +377 -0
  137. package/scripts/flow-skill-create.js +329 -0
  138. package/scripts/flow-skill-creator.js +572 -0
  139. package/scripts/flow-skill-generator.js +1046 -0
  140. package/scripts/flow-skill-learn.js +880 -0
  141. package/scripts/flow-skill-matcher.js +578 -0
  142. package/scripts/flow-spec-generator.js +820 -0
  143. package/scripts/flow-stack-wizard.js +895 -0
  144. package/scripts/flow-standup +162 -0
  145. package/scripts/flow-start +74 -0
  146. package/scripts/flow-start.js +235 -0
  147. package/scripts/flow-status +110 -0
  148. package/scripts/flow-status.js +301 -0
  149. package/scripts/flow-step-browser.js +83 -0
  150. package/scripts/flow-step-changelog.js +217 -0
  151. package/scripts/flow-step-comments.js +306 -0
  152. package/scripts/flow-step-complexity.js +234 -0
  153. package/scripts/flow-step-coverage.js +218 -0
  154. package/scripts/flow-step-knowledge.js +193 -0
  155. package/scripts/flow-step-pr-tests.js +364 -0
  156. package/scripts/flow-step-regression.js +89 -0
  157. package/scripts/flow-step-review.js +516 -0
  158. package/scripts/flow-step-security.js +162 -0
  159. package/scripts/flow-step-silent-failures.js +290 -0
  160. package/scripts/flow-step-simplifier.js +346 -0
  161. package/scripts/flow-story +105 -0
  162. package/scripts/flow-story.js +500 -0
  163. package/scripts/flow-suspend.js +252 -0
  164. package/scripts/flow-sync-daemon.js +654 -0
  165. package/scripts/flow-task-analyzer.js +606 -0
  166. package/scripts/flow-team-dashboard.js +748 -0
  167. package/scripts/flow-team-sync.js +752 -0
  168. package/scripts/flow-team.js +977 -0
  169. package/scripts/flow-tech-options.js +528 -0
  170. package/scripts/flow-templates.js +812 -0
  171. package/scripts/flow-tiered-learning.js +728 -0
  172. package/scripts/flow-trace +204 -0
  173. package/scripts/flow-transcript-chunking.js +1106 -0
  174. package/scripts/flow-transcript-digest.js +7918 -0
  175. package/scripts/flow-transcript-language.js +465 -0
  176. package/scripts/flow-transcript-parsing.js +1085 -0
  177. package/scripts/flow-transcript-stories.js +2194 -0
  178. package/scripts/flow-update-map +224 -0
  179. package/scripts/flow-utils.js +2242 -0
  180. package/scripts/flow-verification.js +644 -0
  181. package/scripts/flow-verify.js +1177 -0
  182. package/scripts/flow-voice-input.js +638 -0
  183. package/scripts/flow-watch +168 -0
  184. package/scripts/flow-workflow-steps.js +521 -0
  185. package/scripts/flow-workflow.js +1029 -0
  186. package/scripts/flow-worktree.js +489 -0
  187. package/scripts/hooks/adapters/base-adapter.js +102 -0
  188. package/scripts/hooks/adapters/claude-code.js +359 -0
  189. package/scripts/hooks/adapters/index.js +79 -0
  190. package/scripts/hooks/core/component-check.js +341 -0
  191. package/scripts/hooks/core/index.js +35 -0
  192. package/scripts/hooks/core/loop-check.js +241 -0
  193. package/scripts/hooks/core/session-context.js +294 -0
  194. package/scripts/hooks/core/task-gate.js +177 -0
  195. package/scripts/hooks/core/validation.js +230 -0
  196. package/scripts/hooks/entry/claude-code/post-tool-use.js +65 -0
  197. package/scripts/hooks/entry/claude-code/pre-tool-use.js +89 -0
  198. package/scripts/hooks/entry/claude-code/session-end.js +87 -0
  199. package/scripts/hooks/entry/claude-code/session-start.js +46 -0
  200. package/scripts/hooks/entry/claude-code/stop.js +43 -0
  201. package/scripts/postinstall.js +139 -0
  202. package/templates/browser-test-flow.json +56 -0
  203. package/templates/bug-report.md +43 -0
  204. package/templates/component-detail.md +42 -0
  205. package/templates/component.stories.tsx +49 -0
  206. package/templates/context/constraints.md +83 -0
  207. package/templates/context/conventions.md +177 -0
  208. package/templates/context/stack.md +60 -0
  209. package/templates/correction-report.md +90 -0
  210. package/templates/feature-proposal.md +35 -0
  211. package/templates/hybrid/_base.md +254 -0
  212. package/templates/hybrid/_patterns.md +45 -0
  213. package/templates/hybrid/create-component.md +127 -0
  214. package/templates/hybrid/create-file.md +56 -0
  215. package/templates/hybrid/create-hook.md +145 -0
  216. package/templates/hybrid/create-service.md +70 -0
  217. package/templates/hybrid/fix-bug.md +33 -0
  218. package/templates/hybrid/modify-file.md +55 -0
  219. package/templates/story.md +68 -0
  220. package/templates/task.json +56 -0
  221. package/templates/trace.md +69 -0
@@ -0,0 +1,257 @@
1
+ # Project Instructions
2
+
3
+ You are an AI development assistant using the Wogi Flow methodology v1.9. This is a self-improving workflow that learns from feedback and adapts to your team's preferences.
4
+
5
+ ---
6
+
7
+ {{#if config.enforcement.strictMode}}
8
+ ## Task Gating (MANDATORY)
9
+
10
+ **STOP. Before doing ANY implementation work, you MUST follow these steps:**
11
+
12
+ ### Step 1: Is this an implementation request?
13
+
14
+ **YES - Implementation requests:**
15
+ - "Add X to Y"
16
+ - "Fix the bug in..."
17
+ - "Create a component for..."
18
+ - "Implement feature X"
19
+ - "Build me a [system/feature]"
20
+ - Any request that requires writing/modifying code
21
+
22
+ **NO - Handle normally:**
23
+ - "What does X do?"
24
+ - "How does Y work?"
25
+ - "Show me the code for..."
26
+ - Questions, exploration, reading files
27
+
28
+ If **NO** → Proceed normally without task gating.
29
+ If **YES** → Continue to Step 2.
30
+
31
+ ### Step 2: Does a task already exist?
32
+
33
+ Check `.workflow/state/ready.json` for existing tasks.
34
+
35
+ - If **YES** → Use `/wogi-start TASK-XXX`
36
+ - If **NO** → Continue to Step 3
37
+
38
+ ### Step 3: Assess task size
39
+
40
+ | Size | Criteria | Action |
41
+ |------|----------|--------|
42
+ | **Small** | < {{config.enforcement.taskSizeThresholds.small.maxFiles}} files, < {{config.enforcement.taskSizeThresholds.small.maxHours}} hour, obvious scope | Create task inline, proceed with `/wogi-start` |
43
+ | **Medium** | {{config.enforcement.taskSizeThresholds.small.maxFiles}}-{{config.enforcement.taskSizeThresholds.medium.maxFiles}} files, {{config.enforcement.taskSizeThresholds.small.maxHours}}-{{config.enforcement.taskSizeThresholds.medium.maxHours}} hours, some complexity | **STOP** - Create story first |
44
+ | **Large** | > {{config.enforcement.taskSizeThresholds.medium.maxFiles}} files, > {{config.enforcement.taskSizeThresholds.medium.maxHours}} hours, new feature | **STOP** - Create story first |
45
+
46
+ ### For Medium/Large Tasks:
47
+
48
+ ```
49
+ This looks like a medium/large task.
50
+
51
+ Before I start implementing, I need to create a story with acceptance criteria.
52
+
53
+ **Proposed story:** "[title based on request]"
54
+
55
+ Should I create this story with detailed acceptance criteria for your approval?
56
+ ```
57
+
58
+ Then:
59
+ 1. Run `/wogi-story "[title]"` to create acceptance criteria
60
+ 2. **WAIT for user approval** on the story
61
+ 3. Only then proceed with `/wogi-start`
62
+
63
+ **This is NON-NEGOTIABLE when strict mode is enabled.**
64
+
65
+ ---
66
+ {{/if}}
67
+
68
+ ## Quick Start
69
+
70
+ ```bash
71
+ # New project
72
+ ./scripts/flow install
73
+
74
+ # Existing project
75
+ ./scripts/flow onboard
76
+ ```
77
+
78
+ ## Core Principles
79
+
80
+ 1. **State files are memory** - Read `.workflow/state/` first
81
+ 2. **Config drives behavior** - Follow `.workflow/config.json` rules
82
+ 3. **Log every change** - Append to `request-log.md`
83
+ 4. **Reuse components** - Check `app-map.md` before creating
84
+ 5. **Learn from feedback** - Update instructions when corrected
85
+
86
+ ## Essential Commands
87
+
88
+ | Command | Purpose |
89
+ |---------|---------|
90
+ | `/wogi-ready` | Show available tasks |
91
+ | `/wogi-start TASK-X` | Start task (self-completing loop) |
92
+ | `/wogi-story "title"` | Create story with acceptance criteria |
93
+ | `/wogi-status` | Project overview |
94
+ | `/wogi-health` | Check workflow health |
95
+
96
+ See `.claude/docs/commands.md` for complete command reference.
97
+
98
+ ## Natural Language Command Detection
99
+
100
+ **When you recognize these phrases, auto-invoke the corresponding command:**
101
+
102
+ | Phrase Pattern | Command |
103
+ |----------------|---------|
104
+ | "review what we did", "review this session", "please review", "code review" | `/wogi-session-review` |
105
+ | "show tasks", "what's ready", "available tasks" | `/wogi-ready` |
106
+ | "project status", "show status", "where are we" | `/wogi-status` |
107
+ | "check health", "workflow health", "is everything ok" | `/wogi-health` |
108
+ | "wrap up", "end session", "that's all" | `/wogi-session-end` |
109
+ | "compact context", "save context", "running low on context" | `/wogi-compact` |
110
+
111
+ **IMPORTANT**: When a user's message matches one of these patterns, immediately invoke the Skill tool with the corresponding command. Do not ask for confirmation.
112
+
113
+ ## Session Startup
114
+
115
+ ```bash
116
+ cat .workflow/config.json # Read config
117
+ cat .workflow/state/ready.json # Check tasks
118
+ cat .workflow/state/decisions.md # Project rules
119
+ ```
120
+
121
+ ## Task Execution Rules
122
+
123
+ **These apply to ALL implementation work:**
124
+
125
+ ### Before Starting:
126
+ 1. Check `app-map.md` for existing components
127
+ 2. Check `decisions.md` for coding patterns
128
+ 3. Load task acceptance criteria
129
+
130
+ ### While Working:
131
+ 1. Follow acceptance criteria exactly
132
+ 2. Use existing components from app-map
133
+ 3. Follow patterns from decisions.md
134
+ 4. Validate after EVERY file edit (run lint/typecheck)
135
+
136
+ ### After Completing:
137
+ 1. Update `request-log.md` with tags
138
+ 2. Update `app-map.md` if new components
139
+ 3. Run quality gates (lint, typecheck, test)
140
+ 4. Provide completion report
141
+
142
+ ## Auto-Validation (CRITICAL)
143
+
144
+ After editing ANY TypeScript/JavaScript file:
145
+ ```bash
146
+ npx tsc --noEmit 2>&1 | head -20
147
+ npx eslint [file] --fix
148
+ ```
149
+
150
+ **Do NOT edit another file until current file passes validation.**
151
+
152
+ ## Request Logging
153
+
154
+ After EVERY request that changes files:
155
+ ```markdown
156
+ ### R-[XXX] | [YYYY-MM-DD HH:MM]
157
+ **Type**: new | fix | change | refactor
158
+ **Tags**: #screen:[name] #component:[name]
159
+ **Request**: "[what user asked]"
160
+ **Result**: [what was done]
161
+ **Files**: [files changed]
162
+ ```
163
+
164
+ ## Component Reuse
165
+
166
+ **Before creating ANY component:**
167
+ 1. Check `app-map.md`
168
+ 2. Search codebase for existing
169
+ 3. Priority: Use existing → Add variant → Extend → Create new (last resort)
170
+
171
+ {{#if skills}}
172
+ ## Installed Skills
173
+
174
+ {{#each skills}}
175
+ - {{this}}
176
+ {{/each}}
177
+
178
+ Check `.claude/skills/[name]/skill.md` for skill-specific guidance.
179
+
180
+ {{/if}}
181
+ ## File Locations
182
+
183
+ | What | Where |
184
+ |------|-------|
185
+ | Config | `.workflow/config.json` |
186
+ | Tasks | `.workflow/state/ready.json` |
187
+ | Logs | `.workflow/state/request-log.md` |
188
+ | Components | `.workflow/state/app-map.md` |
189
+ | Rules | `.workflow/state/decisions.md` |
190
+ | Progress | `.workflow/state/progress.md` |
191
+
192
+ ## Commit Behavior
193
+
194
+ Check `config.json → commits` before committing:
195
+
196
+ ```json
197
+ "commits": {
198
+ "requireApproval": {
199
+ "feature": {{config.commits.requireApproval.feature}},
200
+ "bugfix": {{config.commits.requireApproval.bugfix}},
201
+ "refactor": {{config.commits.requireApproval.refactor}},
202
+ "docs": {{config.commits.requireApproval.docs}}
203
+ },
204
+ "autoCommitSmallFixes": {{config.commits.autoCommitSmallFixes}},
205
+ "smallFixThreshold": {{config.commits.smallFixThreshold}}
206
+ }
207
+ ```
208
+
209
+ **Rules:**
210
+ - If `requireApproval[taskType]` is `true` → ASK before committing
211
+ - If task changes > `smallFixThreshold` files → ASK before committing
212
+ - Show git diff and ask: "Ready to commit these changes?"
213
+ - Never commit without user awareness on features/refactors
214
+
215
+ ## Quality Gates
216
+
217
+ Check `config.json → qualityGates` before closing any task:
218
+ ```json
219
+ "qualityGates": {
220
+ "feature": { "require": ["loopComplete", "tests", "appMapUpdate", "requestLogEntry"] }
221
+ }
222
+ ```
223
+
224
+ ## Context Management
225
+
226
+ Use `/wogi-compact` when:
227
+ - After completing 2-3 tasks
228
+ - After 15-20 messages
229
+ - Before starting large tasks
230
+
231
+ Before compacting: Update progress.md, ensure request-log is current, commit work.
232
+
233
+ ## Handling Feedback
234
+
235
+ When corrected:
236
+ 1. Fix it
237
+ 2. Offer to update: decisions.md / agents/*.md / config.json / CLAUDE.md
238
+ 3. If accepted, update and commit
239
+ 4. Log to feedback-patterns.md
240
+
241
+ ## Session End
242
+
243
+ When user says to wrap up:
244
+ 1. Finish current work
245
+ 2. Ensure request-log is current
246
+ 3. Update progress.md
247
+ 4. Commit and push
248
+
249
+ ---
250
+
251
+ ## Generated by CLI Bridge
252
+
253
+ This file was generated by the Wogi Flow CLI bridge.
254
+ Edit `.workflow/templates/claude-md.hbs` to customize.
255
+ Run `flow bridge sync` to regenerate.
256
+
257
+ Last synced: {{timestamp}}
@@ -0,0 +1,67 @@
1
+ # Correction Report: {{TASK_ID}}-Correction-{{N}}
2
+
3
+ **Date**: {{DATE}}
4
+ **Task**: {{TASK_ID}}
5
+ **Correction #**: {{N}}
6
+
7
+ ---
8
+
9
+ ## Problem Description
10
+
11
+ ### What Was Expected
12
+ {{EXPECTED_BEHAVIOR}}
13
+
14
+ ### What Actually Happened
15
+ {{ACTUAL_BEHAVIOR}}
16
+
17
+ ### Error Message
18
+ ```
19
+ {{ERROR_MESSAGE}}
20
+ ```
21
+
22
+ ---
23
+
24
+ ## Root Cause Analysis
25
+
26
+ {{ROOT_CAUSE}}
27
+
28
+ ---
29
+
30
+ ## Solution Applied
31
+
32
+ | File | Change |
33
+ |------|--------|
34
+ | {{FILE_1}} | {{CHANGE_1}} |
35
+
36
+ ### Code Changes
37
+
38
+ ```{{LANGUAGE}}
39
+ // Before
40
+ {{CODE_BEFORE}}
41
+
42
+ // After
43
+ {{CODE_AFTER}}
44
+ ```
45
+
46
+ ---
47
+
48
+ ## Prevention Measures
49
+
50
+ 1. {{PREVENTION_1}}
51
+ 2. {{PREVENTION_2}}
52
+
53
+ ---
54
+
55
+ ## Testing
56
+
57
+ - [ ] Verified fix locally
58
+ - [ ] Added/updated tests
59
+ - [ ] Tested edge cases
60
+
61
+ ---
62
+
63
+ ## Related
64
+
65
+ - **Task**: {{TASK_ID}}
66
+ - **Request Log**: R-{{REQUEST_ID}}
67
+ - **Files Changed**: {{FILES_CHANGED}}
@@ -0,0 +1,52 @@
1
+ # {{projectName}} - Gemini CLI Instructions
2
+
3
+ > **Note**: This is a stub template for Gemini CLI. Full implementation pending.
4
+ > The Gemini bridge is planned but not yet implemented.
5
+
6
+ ## Project Overview
7
+
8
+ **Project Name**: {{projectName}}
9
+ **Workflow Version**: 1.9
10
+ **Generated**: {{timestamp}}
11
+
12
+ ---
13
+
14
+ ## Wogi Flow Integration
15
+
16
+ This project uses the Wogi Flow methodology. Key principles:
17
+
18
+ 1. **Task-based development** - All work is tracked as tasks
19
+ 2. **Component reuse** - Check app-map before creating
20
+ 3. **Request logging** - Log all changes
21
+ 4. **Self-improvement** - Learn from feedback
22
+
23
+ ## Commands
24
+
25
+ The following Wogi Flow commands are available:
26
+
27
+ | Command | Purpose |
28
+ |---------|---------|
29
+ | `flow ready` | Show available tasks |
30
+ | `flow start <id>` | Start working on a task |
31
+ | `flow status` | Project overview |
32
+ | `flow health` | Check workflow health |
33
+
34
+ ## File Locations
35
+
36
+ | What | Where |
37
+ |------|-------|
38
+ | Config | `.workflow/config.json` |
39
+ | Tasks | `.workflow/state/ready.json` |
40
+ | Logs | `.workflow/state/request-log.md` |
41
+ | Components | `.workflow/state/app-map.md` |
42
+ | Decisions | `.workflow/state/decisions.md` |
43
+
44
+ ## Notes
45
+
46
+ - This template will be expanded when Gemini CLI support is fully implemented
47
+ - For now, use Claude Code for full Wogi Flow functionality
48
+ - Bridge status: **Planned**
49
+
50
+ ---
51
+
52
+ Generated by Wogi Flow CLI Bridge (stub template)