sinapse-ai 7.4.7 → 7.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.
Files changed (29) hide show
  1. package/.claude/CLAUDE.md +10 -7
  2. package/.claude/rules/documentation-first.md +77 -0
  3. package/.claude/rules/mandatory-delegation.md +96 -0
  4. package/.codex/instructions.md +2 -1
  5. package/.sinapse-ai/constitution.md +59 -6
  6. package/.sinapse-ai/core/doctor/checks/constitution-consistency.js +116 -0
  7. package/.sinapse-ai/core/doctor/checks/index.js +10 -2
  8. package/.sinapse-ai/core/doctor/index.js +4 -3
  9. package/.sinapse-ai/core/health-check/checks/project/constitution-consistency.js +157 -0
  10. package/.sinapse-ai/core/health-check/checks/project/index.js +2 -0
  11. package/.sinapse-ai/data/entity-registry.yaml +807 -777
  12. package/.sinapse-ai/data/registry-update-log.jsonl +16 -0
  13. package/.sinapse-ai/development/tasks/dev-develop-story.md +14 -6
  14. package/.sinapse-ai/development/tasks/health-check.yaml +2 -2
  15. package/.sinapse-ai/development/templates/chrome-brain/knowledge-base/claude-in-chrome.md +62 -0
  16. package/.sinapse-ai/install-manifest.yaml +29 -17
  17. package/.sinapse-ai/product/templates/ide-rules/claude-rules.md +10 -6
  18. package/README.en.md +10 -8
  19. package/README.md +10 -8
  20. package/bin/modules/chrome-brain-installer.js +164 -29
  21. package/bin/sinapse.js +8 -0
  22. package/docs/framework/memory-lifecycle.md +1 -1
  23. package/docs/getting-started.md +2 -2
  24. package/docs/guides/user-guide.md +9 -7
  25. package/docs/guides/workflows/xref-phase6-supporting.md +1 -1
  26. package/docs/guides/workflows-guide.md +1 -1
  27. package/package.json +1 -1
  28. package/packages/sinapse-install/src/capabilities/chrome-brain.js +183 -12
  29. package/squads/claude-code-mastery/agents/project-integrator.md +1 -1
@@ -535,3 +535,19 @@
535
535
  {"timestamp":"2026-03-26T01:16:16.894Z","action":"unlink","path":".sinapse-ai/product/templates/ide-rules/gemini-rules.md","trigger":"watcher"}
536
536
  {"timestamp":"2026-03-27T03:02:17.627Z","action":"change","path":".sinapse-ai/development/agents/sinapse-orqx.md","trigger":"watcher"}
537
537
  {"timestamp":"2026-03-27T03:02:28.546Z","action":"change","path":".sinapse-ai/development/agents/sinapse-orqx.md","trigger":"watcher"}
538
+ {"timestamp":"2026-03-30T18:05:29.064Z","action":"add","path":".sinapse-ai/core/doctor/checks/constitution-consistency.js","trigger":"watcher"}
539
+ {"timestamp":"2026-03-30T18:05:29.066Z","action":"change","path":".sinapse-ai/core/doctor/checks/index.js","trigger":"watcher"}
540
+ {"timestamp":"2026-03-30T18:05:29.066Z","action":"change","path":".sinapse-ai/core/doctor/index.js","trigger":"watcher"}
541
+ {"timestamp":"2026-03-30T18:05:29.067Z","action":"add","path":".sinapse-ai/core/health-check/checks/project/constitution-consistency.js","trigger":"watcher"}
542
+ {"timestamp":"2026-03-30T18:05:29.067Z","action":"change","path":".sinapse-ai/core/health-check/checks/project/index.js","trigger":"watcher"}
543
+ {"timestamp":"2026-03-30T18:05:29.067Z","action":"change","path":".sinapse-ai/development/tasks/dev-develop-story.md","trigger":"watcher"}
544
+ {"timestamp":"2026-03-30T18:05:29.068Z","action":"change","path":".sinapse-ai/development/tasks/health-check.yaml","trigger":"watcher"}
545
+ {"timestamp":"2026-03-30T18:05:29.068Z","action":"change","path":".sinapse-ai/product/templates/ide-rules/claude-rules.md","trigger":"watcher"}
546
+ {"timestamp":"2026-03-30T18:05:54.950Z","action":"add","path":".sinapse-ai/core/doctor/checks/constitution-consistency.js","trigger":"watcher"}
547
+ {"timestamp":"2026-03-30T18:05:54.951Z","action":"change","path":".sinapse-ai/core/doctor/checks/index.js","trigger":"watcher"}
548
+ {"timestamp":"2026-03-30T18:05:54.951Z","action":"change","path":".sinapse-ai/core/doctor/index.js","trigger":"watcher"}
549
+ {"timestamp":"2026-03-30T18:05:54.952Z","action":"add","path":".sinapse-ai/core/health-check/checks/project/constitution-consistency.js","trigger":"watcher"}
550
+ {"timestamp":"2026-03-30T18:05:54.952Z","action":"change","path":".sinapse-ai/core/health-check/checks/project/index.js","trigger":"watcher"}
551
+ {"timestamp":"2026-03-30T18:05:54.953Z","action":"change","path":".sinapse-ai/development/tasks/dev-develop-story.md","trigger":"watcher"}
552
+ {"timestamp":"2026-03-30T18:05:54.953Z","action":"change","path":".sinapse-ai/development/tasks/health-check.yaml","trigger":"watcher"}
553
+ {"timestamp":"2026-03-30T18:05:54.953Z","action":"change","path":".sinapse-ai/product/templates/ide-rules/claude-rules.md","trigger":"watcher"}
@@ -93,29 +93,37 @@ atomic_layer: Organism
93
93
  > **Reference:** Constitution Articles I, III
94
94
  > **Enforcement:** Automatic validation before execution
95
95
 
96
- ### Gate 1: Story-Driven Development (Article III)
96
+ ### Gate 1: Documentation-First Development (Article III — NON-NEGOTIABLE)
97
97
 
98
98
  ```yaml
99
99
  constitutional_gate:
100
100
  article: III
101
- name: Story-Driven Development
101
+ name: Documentation-First Development
102
102
  severity: BLOCK
103
103
 
104
104
  validation:
105
105
  - Story file MUST exist at docs/stories/{storyId}/story.yaml
106
- - Story MUST have status != "Draft" (Ready, In Progress, or Done)
106
+ - Story MUST have status >= "Ready" (validated by @product-lead)
107
107
  - Story MUST have acceptance criteria defined
108
+ - Story MUST have scope (IN/OUT) documented
108
109
  - Story MUST have at least one task/subtask
110
+ - Pipeline Epic → Story → Validation MUST be completed before implementation
109
111
 
110
112
  on_violation:
111
113
  action: BLOCK
112
114
  message: |
113
- CONSTITUTIONAL VIOLATION: Article III - Story-Driven Development
114
- Cannot develop without a valid story.
115
+ CONSTITUTIONAL VIOLATION: Article III - Documentation-First Development (NON-NEGOTIABLE)
116
+ Cannot develop without a validated story.
115
117
 
116
118
  Issue: {violation_details}
117
119
 
118
- Resolution: Create or update story via @sprint-lead *draft or @product-lead *create-story
120
+ This is NON-NEGOTIABLE. The documentation pipeline MUST be completed first:
121
+ 1. Epic must exist → @project-lead *create-epic
122
+ 2. Story must be drafted → @sprint-lead *draft
123
+ 3. Story must be validated → @product-lead *validate
124
+ 4. Only then can implementation begin
125
+
126
+ Resolution: Follow the pipeline above. No shortcuts allowed.
119
127
  ```
120
128
 
121
129
  ### Gate 2: CLI First (Article I)
@@ -130,7 +130,7 @@ governance_map:
130
130
 
131
131
  entity-registry:
132
132
  article: "III"
133
- article_name: "Story-Driven Development"
133
+ article_name: "Documentation-First Development"
134
134
  governance_note: "Code intelligence registry for entity-aware development"
135
135
  remediation: "sinapse doctor --fix"
136
136
 
@@ -166,7 +166,7 @@ governance_map:
166
166
 
167
167
  code-intel:
168
168
  article: "III"
169
- article_name: "Story-Driven Development"
169
+ article_name: "Documentation-First Development"
170
170
  governance_note: "Code intelligence for entity-aware development workflows"
171
171
  remediation: "sinapse doctor --fix"
172
172
 
@@ -0,0 +1,62 @@
1
+ # claude-in-chrome — Chrome Extension for Visual Browser Interaction
2
+
3
+ > Manual install required. This extension cannot be auto-installed via CLI.
4
+
5
+ ---
6
+
7
+ ## What It Does
8
+
9
+ claude-in-chrome is a Chrome extension that acts as an MCP server directly from
10
+ within Chrome. It exposes browser automation tools via a local WebSocket, enabling
11
+ screen-level visual interaction (computer use) as a fallback when CDP and Playwright
12
+ cannot handle a task (e.g., complex visual layouts, canvas elements, iframes).
13
+
14
+ ---
15
+
16
+ ## Installation
17
+
18
+ 1. Open Chrome and navigate to the Chrome Web Store
19
+ 2. Search for "claude-in-chrome" or visit:
20
+ https://chromewebstore.google.com/detail/claude-in-chrome
21
+ 3. Click "Add to Chrome" and confirm
22
+ 4. The extension icon should appear in the Chrome toolbar
23
+ 5. Click the extension icon and follow the setup wizard
24
+
25
+ ---
26
+
27
+ ## MCP Configuration
28
+
29
+ The extension manages its own MCP registration automatically after install.
30
+ **Do NOT** manually add a "claude-in-chrome" entry to ~/.claude.json.
31
+
32
+ If the extension is installed and Chrome is running with debug port 9222,
33
+ claude-in-chrome tools will be available to Claude Code automatically.
34
+
35
+ ---
36
+
37
+ ## When to Use
38
+
39
+ | Scenario | Use claude-in-chrome? |
40
+ |----------|----------------------|
41
+ | CDP tools handle the task | No — use chrome-devtools-mcp |
42
+ | Playwright can scrape/interact | No — use dev-browser |
43
+ | Complex visual layout, canvas, WebGL | Yes |
44
+ | Cross-origin iframe interaction | Maybe — try CDP Input events first |
45
+ | Screen coordinate-based interaction | Yes |
46
+
47
+ **Priority:** CDP > dev-browser > claude-in-chrome (visual fallback only)
48
+
49
+ ---
50
+
51
+ ## Troubleshooting
52
+
53
+ - **Extension not showing tools:** Ensure Chrome is running with --remote-debugging-port=9222
54
+ - **Tools timeout:** Restart Chrome via chrome-debug script, then reload extension
55
+ - **Extension disabled:** Check chrome://extensions and re-enable
56
+
57
+ ---
58
+
59
+ ## Reference
60
+
61
+ - Master KB: ~/.sinapse/sinapse/knowledge-base/chrome-brain.md
62
+ - Chrome Brain auto-activation rule: ~/.sinapse/.claude/rules/chrome-brain-autoload.md
@@ -7,10 +7,10 @@
7
7
  # - SHA256 hashes for change detection
8
8
  # - File types for categorization
9
9
  #
10
- version: 7.4.7
11
- generated_at: "2026-03-29T07:44:02.128Z"
10
+ version: 7.5.0
11
+ generated_at: "2026-03-30T18:06:06.639Z"
12
12
  generator: scripts/generate-install-manifest.js
13
- file_count: 1101
13
+ file_count: 1104
14
14
  files:
15
15
  - path: cli/commands/config/index.js
16
16
  hash: sha256:66f111eceef0f60fa0a8904add783b615d55b01d5fe36408623c3dd828e702f6
@@ -300,6 +300,10 @@ files:
300
300
  hash: sha256:5a8b983ffe7cc31a8145c5067298badbb6c445a5ccf66e300bca0269312869df
301
301
  type: core
302
302
  size: 1724
303
+ - path: core/doctor/checks/constitution-consistency.js
304
+ hash: sha256:659489ab7c353f4b69473e72b046e43ada1342acdc017398cb6a0b60ffb0ef5b
305
+ type: core
306
+ size: 3083
303
307
  - path: core/doctor/checks/core-config.js
304
308
  hash: sha256:5424528eefbc2f19213b30d00dcd96128acefdbb289c25712be844f0fbddb963
305
309
  type: core
@@ -325,9 +329,9 @@ files:
325
329
  type: core
326
330
  size: 2159
327
331
  - path: core/doctor/checks/index.js
328
- hash: sha256:67334b98927b9d581c262527a5af1b332e0c7b46822724b176f21a87817c5e23
332
+ hash: sha256:46c492327d3aa9e704ee098c43fad1fd884edfb96620d15f51e6f54699f1ea39
329
333
  type: core
330
- size: 1193
334
+ size: 1418
331
335
  - path: core/doctor/checks/node-version.js
332
336
  hash: sha256:37812997bb9611c4245477b9444c2b7899b37d06850a616f43706a8c79bc6f04
333
337
  type: core
@@ -361,9 +365,9 @@ files:
361
365
  type: core
362
366
  size: 1460
363
367
  - path: core/doctor/index.js
364
- hash: sha256:d663eb70b661440144219a7525f9652a9abfbe2ebb40b61a900c27d5074b5f80
368
+ hash: sha256:e63be0d9a3a974c74232b89a99f13340dc85e65d420806a9d783c127b90eee90
365
369
  type: core
366
- size: 2536
370
+ size: 2604
367
371
  - path: core/elicitation/agent-elicitation.js
368
372
  hash: sha256:ef13ebff1375279e7b8f0f0bbd3699a0d201f9a67127efa64c4142159a26f417
369
373
  type: elicitation
@@ -564,6 +568,10 @@ files:
564
568
  hash: sha256:9e5f0d8e0a14704842f9958d43f2adf04b84757700284364ea486950d88ab2a8
565
569
  type: core
566
570
  size: 4733
571
+ - path: core/health-check/checks/project/constitution-consistency.js
572
+ hash: sha256:55cd12c67c7dfbd35dc25db20b35b94fa4e8e5104488dacf6fc4834be73eb767
573
+ type: core
574
+ size: 5883
567
575
  - path: core/health-check/checks/project/dependencies.js
568
576
  hash: sha256:a8f4d9fcadf5dc3274d8ed0605af6f25d6554b1a9b0d3e66c63d8ea4569c95b9
569
577
  type: core
@@ -573,9 +581,9 @@ files:
573
581
  type: core
574
582
  size: 4028
575
583
  - path: core/health-check/checks/project/index.js
576
- hash: sha256:8564c4ead12e52e157874c7a5875af9ecfcf5a8ec195d51341d7d6f191b58932
584
+ hash: sha256:0fc2732f18f9a853b6d750362836a4472c9921bf3b4e203c9855165fd31a7e88
577
585
  type: core
578
- size: 945
586
+ size: 1053
579
587
  - path: core/health-check/checks/project/node-version.js
580
588
  hash: sha256:386432f5277ae72b741074c518e8230e2b527e6ac0691a994f4bc3e1fac19516
581
589
  type: core
@@ -1217,9 +1225,9 @@ files:
1217
1225
  type: data
1218
1226
  size: 9586
1219
1227
  - path: data/entity-registry.yaml
1220
- hash: sha256:b57be94586adc273f3f57905c2a430ecc9e0135b1101dd076b8b53829b01855f
1228
+ hash: sha256:0ef926d7947a2e9a9b95e20a7309f9910b0ba2004bf18c9472d71bdc2b5fa9c9
1221
1229
  type: data
1222
- size: 511377
1230
+ size: 512364
1223
1231
  - path: data/learned-patterns.yaml
1224
1232
  hash: sha256:24ac0b160615583a0ff783d3da8af80b7f94191575d6db2054ec8e10a3f945dc
1225
1233
  type: data
@@ -1993,9 +2001,9 @@ files:
1993
2001
  type: task
1994
2002
  size: 11063
1995
2003
  - path: development/tasks/dev-develop-story.md
1996
- hash: sha256:41875f2ea2864b0f6b7632e62cf3a5102a1a2f4a975e49a68642066d21dc7235
2004
+ hash: sha256:9e6c42e99c06367930615ecc87b7e126907965bacf321d324d69e74356980ef1
1997
2005
  type: task
1998
- size: 27426
2006
+ size: 27889
1999
2007
  - path: development/tasks/dev-improve-code-quality.md
2000
2008
  hash: sha256:e781d52e3ae4b5b63204a1b1adf51dd4c653eafa3413e5250199ff9abd9403cb
2001
2009
  type: task
@@ -2097,9 +2105,9 @@ files:
2097
2105
  type: task
2098
2106
  size: 3608
2099
2107
  - path: development/tasks/health-check.yaml
2100
- hash: sha256:9bcc8da001b81499fb9af29877d14c06f38680774703a5c2ca6274e3dfcb6a15
2108
+ hash: sha256:eba22298ddc94793d654be4d4082e767cd4a9157f7b7bce54ab3496cd189b43e
2101
2109
  type: task
2102
- size: 8124
2110
+ size: 8138
2103
2111
  - path: development/tasks/ids-governor.md
2104
2112
  hash: sha256:dc904c8e0a71084f5be8980910dd096a2cff6f974c2d78f404a6a2aeabd9f81e
2105
2113
  type: task
@@ -2564,6 +2572,10 @@ files:
2564
2572
  hash: sha256:ed47917601edfe48153290ea57b3d367220ceba6b976e7222c2451af6b4a6566
2565
2573
  type: template
2566
2574
  size: 5923
2575
+ - path: development/templates/chrome-brain/knowledge-base/claude-in-chrome.md
2576
+ hash: sha256:b91572e0ddf072f21546a8ee7b910c692e052ba87dc3a6eb829fe049d28180c2
2577
+ type: template
2578
+ size: 2048
2567
2579
  - path: development/templates/chrome-brain/rules/chrome-brain-autoload.md
2568
2580
  hash: sha256:a3079e8e30f252f4a0da766b930bccc15d0288c3012482c0ad4901ccba27bc5d
2569
2581
  type: template
@@ -3905,9 +3917,9 @@ files:
3905
3917
  type: template
3906
3918
  size: 3691
3907
3919
  - path: product/templates/ide-rules/claude-rules.md
3908
- hash: sha256:161dca71bac7ecf6187232b9964c0889c3728afd2332967640e4eea4631668a2
3920
+ hash: sha256:ffdaf95cccaba6355368ca2e3ba2d2675e2661c52a91adaeb5cc265dca894f5a
3909
3921
  type: template
3910
- size: 12910
3922
+ size: 13296
3911
3923
  - path: product/templates/ide-rules/codex-rules.md
3912
3924
  hash: sha256:601ffec5e24ff5e247c25e4d61728167503722acc817a1b30fbd695182bed1bc
3913
3925
  type: template
@@ -21,10 +21,12 @@ O SINAPSE possui uma **Constitution formal** com princípios inegociáveis e gat
21
21
  |--------|-----------|------------|
22
22
  | I | CLI First | NON-NEGOTIABLE |
23
23
  | II | Agent Authority | NON-NEGOTIABLE |
24
- | III | Story-Driven Development | MUST |
24
+ | III | Documentation-First Development | NON-NEGOTIABLE |
25
25
  | IV | No Invention | MUST |
26
26
  | V | Quality First | MUST |
27
27
  | VI | Absolute Imports | SHOULD |
28
+ | VII | Ecosystem Metrics Accuracy | NON-NEGOTIABLE |
29
+ | VIII | Mandatory Delegation | NON-NEGOTIABLE |
28
30
 
29
31
  **Gates automáticos bloqueiam violações.** Consulte a Constitution para detalhes completos.
30
32
  <!-- SINAPSE-MANAGED-END: constitution -->
@@ -73,11 +75,13 @@ When an agent is active:
73
75
 
74
76
  ## Development Methodology
75
77
 
76
- ### Story-Driven Development
77
- 1. **Work from stories** - All development starts with a story in `docs/stories/`
78
- 2. **Update progress** - Mark checkboxes as tasks complete: [ ] [x]
79
- 3. **Track changes** - Maintain the File List section in the story
80
- 4. **Follow criteria** - Implement exactly what the acceptance criteria specify
78
+ ### Documentation-First Development (NON-NEGOTIABLE)
79
+ 1. **Documentation pipeline is AUTOMATIC** - Every briefing triggers: Epic Story Validation → Implementation
80
+ 2. **No code without validated story** - Story must be in `docs/stories/` with status >= Ready
81
+ 3. **Update progress** - Mark checkboxes as tasks complete: [ ] → [x]
82
+ 4. **Track changes** - Maintain the File List section in the story
83
+ 5. **Follow criteria** - Implement exactly what the acceptance criteria specify
84
+ 6. **Delegation is mandatory** - Orchestrators NEVER execute domain work, they ALWAYS delegate to specialists
81
85
 
82
86
  ### Code Standards
83
87
  - Write clean, self-documenting code
package/README.en.md CHANGED
@@ -22,7 +22,7 @@ SINAPSE AI is not another chatbot. It is an orchestration system where each agen
22
22
  - **18 squad orchestrators (orqx)** ready to activate from the terminal
23
23
  - **175 specialized agents** with their own knowledge bases
24
24
  - **Complete workflows** for planning, development, QA and deploy
25
- - **Story-Driven Development** with automatic progress tracking
25
+ - **Documentation-First Development** with automatic epic, story and validation pipeline
26
26
  - **Multi-IDE support**: Claude Code and Codex CLI
27
27
 
28
28
  ### Architecture: CLI First
@@ -166,14 +166,16 @@ SINAPSE comes with 12 core agents for the complete development cycle:
166
166
 
167
167
  ---
168
168
 
169
- ## Story-Driven Development
169
+ ## Documentation-First Development
170
170
 
171
- All SINAPSE development follows stories:
171
+ All SINAPSE development follows the automatic documentation pipeline (NON-NEGOTIABLE):
172
172
 
173
- 1. **Stories in** `docs/stories/` with clear acceptance criteria
174
- 2. **Progress tracked** via checkboxes `[ ]` > `[x]`
175
- 3. **File List** kept updated in the story
176
- 4. **Quality gates** run automatically before merge
173
+ 1. **Epic defined** for each initiative
174
+ 2. **Stories in** `docs/stories/` with clear acceptance criteria
175
+ 3. **Validation** by @product-lead before any code
176
+ 4. **Progress tracked** via checkboxes `[ ]` > `[x]`
177
+ 5. **File List** kept updated in the story
178
+ 6. **Quality gates** run automatically before merge
177
179
 
178
180
  ---
179
181
 
@@ -205,7 +207,7 @@ SINAPSE works on both IDEs. Both support most features with different approaches
205
207
  | **18 squads with 175 agents** | YES | YES | Identical on both |
206
208
  | **Knowledge bases per squad** | YES | YES | Identical on both |
207
209
  | **Tasks and workflows** | YES | YES | Identical on both |
208
- | **Story-Driven Development** | YES | YES | Identical on both |
210
+ | **Documentation-First Development** | YES | YES | Identical on both |
209
211
  | **Agent commands (`*help`, `*task`)** | YES | YES | Identical on both |
210
212
  | **Squad awareness auto-routing** | YES | YES | Identical on both |
211
213
  | **NSN Mode (Never Say Never)** | YES | YES | Global rule on both |
package/README.md CHANGED
@@ -22,7 +22,7 @@ O SINAPSE AI nao e mais um chatbot. E um sistema de orquestracao onde cada agent
22
22
  - **18 orquestradores de squad (orqx)** prontos para ativar direto no terminal
23
23
  - **175 agentes especializados** com knowledge bases proprias
24
24
  - **Workflows completos** de planejamento, desenvolvimento, QA e deploy
25
- - **Story-Driven Development** com rastreamento automatico de progresso
25
+ - **Documentation-First Development** com pipeline automatico de epics, stories e validacao
26
26
  - **Compatibilidade multi-IDE**: Claude Code e Codex CLI
27
27
 
28
28
  ### Arquitetura: CLI First
@@ -191,14 +191,16 @@ O SINAPSE vem com 12 agentes core para o ciclo completo de desenvolvimento:
191
191
 
192
192
  ---
193
193
 
194
- ## Story-Driven Development
194
+ ## Documentation-First Development
195
195
 
196
- Todo desenvolvimento no SINAPSE segue stories:
196
+ Todo desenvolvimento no SINAPSE segue o pipeline de documentacao automatico (NON-NEGOTIABLE):
197
197
 
198
- 1. **Stories em** `docs/stories/` com acceptance criteria claros
199
- 2. **Progresso rastreado** via checkboxes `[ ]` > `[x]`
200
- 3. **File List** mantida atualizada na story
201
- 4. **Quality gates** automaticos antes de merge
198
+ 1. **Epic definida** para cada iniciativa
199
+ 2. **Stories em** `docs/stories/` com acceptance criteria claros
200
+ 3. **Validacao** por @product-lead antes de qualquer codigo
201
+ 4. **Progresso rastreado** via checkboxes `[ ]` > `[x]`
202
+ 5. **File List** mantida atualizada na story
203
+ 6. **Quality gates** automaticos antes de merge
202
204
 
203
205
  ---
204
206
 
@@ -230,7 +232,7 @@ O SINAPSE funciona em ambas as IDEs. Ambas suportam a maioria das funcionalidade
230
232
  | **18 squads com 175 agentes** | SIM | SIM | Identico em ambas |
231
233
  | **Knowledge bases por squad** | SIM | SIM | Identico em ambas |
232
234
  | **Tasks e workflows** | SIM | SIM | Identico em ambas |
233
- | **Story-Driven Development** | SIM | SIM | Identico em ambas |
235
+ | **Documentation-First Development** | SIM | SIM | Identico em ambas |
234
236
  | **Agent commands (`*help`, `*task`)** | SIM | SIM | Identico em ambas |
235
237
  | **Squad awareness auto-routing** | SIM | SIM | Identico em ambas |
236
238
  | **NSN Mode (Never Say Never)** | SIM | SIM | Regra global em ambas |