sagaz-ai 0.2.0 → 0.3.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/CHANGELOG.md +63 -1
  2. package/RELEASE_NOTES.md +25 -26
  3. package/ai-orchestration-ecosystem/INDEX.md +19 -0
  4. package/ai-orchestration-ecosystem/README.md +16 -5
  5. package/ai-orchestration-ecosystem/examples/README.md +38 -60
  6. package/ai-orchestration-ecosystem/examples/brownfield-refactor.md +90 -0
  7. package/ai-orchestration-ecosystem/examples/bugfix-production-release.md +90 -0
  8. package/ai-orchestration-ecosystem/examples/mobile-habit-tracker.md +111 -0
  9. package/ai-orchestration-ecosystem/examples/web-saas-vercel.md +114 -0
  10. package/ai-orchestration-ecosystem/governance/capabilities-matrix.md +169 -0
  11. package/ai-orchestration-ecosystem/governance/operations-runbook.md +236 -0
  12. package/ai-orchestration-ecosystem/manifest.json +18 -1
  13. package/ai-orchestration-ecosystem/protocols/agent-observability.md +111 -36
  14. package/ai-orchestration-ecosystem/protocols/github-operations.md +1 -0
  15. package/ai-orchestration-ecosystem/protocols/mcp-connector-policy.md +173 -0
  16. package/ai-orchestration-ecosystem/protocols/permission-contract.md +99 -0
  17. package/ai-orchestration-ecosystem/protocols/release-versioning-gate.md +2 -0
  18. package/ai-orchestration-ecosystem/stack-playbooks/README.md +61 -0
  19. package/ai-orchestration-ecosystem/stack-playbooks/expo-eas.md +63 -0
  20. package/ai-orchestration-ecosystem/stack-playbooks/firebase.md +61 -0
  21. package/ai-orchestration-ecosystem/stack-playbooks/nextjs-vercel-supabase.md +64 -0
  22. package/ai-orchestration-ecosystem/stack-playbooks/node-api.md +61 -0
  23. package/ai-orchestration-ecosystem/stack-playbooks/react-vite-static.md +60 -0
  24. package/ai-orchestration-ecosystem/templates/execution-trace.md +89 -0
  25. package/ai-orchestration-ecosystem/templates/run-state.md +7 -0
  26. package/ai-orchestration-ecosystem/tools/tool-registry.md +4 -0
  27. package/codex-skill/sagaz/SKILL.md +14 -2
  28. package/package.json +1 -1
  29. package/scripts/verify-package.js +184 -0
@@ -0,0 +1,114 @@
1
+ # Example: Web SaaS On Vercel
2
+
3
+ ## User Prompt
4
+
5
+ ```text
6
+ Sagaz: create a premium appointment scheduling SaaS for small clinics.
7
+
8
+ Requirements:
9
+ - user login
10
+ - calendar
11
+ - admin dashboard
12
+ - payments later
13
+ - premium responsive design
14
+ - production-ready deployment on Vercel
15
+ ```
16
+
17
+ ## Selected Workflow
18
+
19
+ `workflows/greenfield-web-app.md`
20
+
21
+ ## Required Squads
22
+
23
+ - `squads/research-to-spec.md`
24
+ - `squads/product-factory.md`
25
+ - `squads/design-studio.md`
26
+ - `squads/production-critical.md`
27
+ - `squads/github-ops.md`
28
+
29
+ ## First Actions
30
+
31
+ 1. Confirm target users, appointment model, clinic roles, calendar rules, and payment timing.
32
+ 2. Create or update run state from `templates/run-state.md`.
33
+ 3. Use `tasks/intake-brief.md`.
34
+ 4. Use `tasks/product-requirements.md`.
35
+ 5. Use `tasks/stack-recommendation.md`.
36
+ 6. Ask permission before moving from planning into implementation.
37
+
38
+ ## Stack Recommendation
39
+
40
+ Default recommendation:
41
+
42
+ - Next.js.
43
+ - TypeScript.
44
+ - Vercel.
45
+ - Supabase for auth, database, and storage.
46
+ - shadcn/ui when the project uses React and wants a polished, composable UI baseline.
47
+ - Playwright for end-to-end checks.
48
+ - GitHub Actions for package and deployment checks.
49
+
50
+ Decision points:
51
+
52
+ - Use Stripe only when payments are in scope.
53
+ - Use a dedicated calendar integration only when external calendar sync is required.
54
+ - Use PostgreSQL migrations and RLS review before production.
55
+
56
+ ## Handoff Sequence
57
+
58
+ | Phase | From | To | Evidence |
59
+ | --- | --- | --- | --- |
60
+ | Intake | research-to-spec | product-factory | user roles, constraints, success criteria |
61
+ | Requirements | product-factory | design-studio | product spec, core flows, acceptance criteria |
62
+ | Design | design-studio | production-critical | design system, responsive views, accessibility expectations |
63
+ | Build | production-critical | production-critical | implementation plan, tests, env vars |
64
+ | Release | production-critical | github-ops | QA report, production checklist, residual risks |
65
+
66
+ ## Expected Artifacts
67
+
68
+ - `templates/product-spec.md`.
69
+ - `templates/stack-recommendation.md`.
70
+ - `templates/design-system-spec.md`.
71
+ - `templates/implementation-plan.md`.
72
+ - `templates/qa-report.md`.
73
+ - `templates/future-change-guide.md`.
74
+ - `templates/final-handoff.md`.
75
+
76
+ ## Verification Plan
77
+
78
+ - Install/build check.
79
+ - Unit or integration tests for scheduling logic.
80
+ - Playwright smoke flow for signup, booking, admin review.
81
+ - Accessibility pass on core views.
82
+ - Responsive visual QA on mobile and desktop.
83
+ - Security review for auth, roles, RLS, env vars, and secrets.
84
+ - Production readiness check before Vercel release.
85
+
86
+ ## GitHub Actions To Suggest
87
+
88
+ - Commit after implementation evidence exists.
89
+ - Push after local checks pass.
90
+ - Pull request if collaborating.
91
+ - Release notes only after production readiness is complete.
92
+
93
+ ## Deployment Path
94
+
95
+ 1. Prepare Vercel project.
96
+ 2. Configure env vars.
97
+ 3. Configure Supabase project and migrations.
98
+ 4. Deploy preview.
99
+ 5. Run smoke tests against preview.
100
+ 6. Promote to production after approval.
101
+
102
+ ## Final Handoff Shape
103
+
104
+ ```md
105
+ Current team:
106
+ What was completed:
107
+ Evidence/artifacts:
108
+ Checks run:
109
+ Deployment status:
110
+ Risks or pending items:
111
+ Next recommended action:
112
+ Permission needed:
113
+ ```
114
+
@@ -0,0 +1,169 @@
1
+ # Capabilities Matrix
2
+
3
+ ## Purpose
4
+
5
+ Clarify what Sagaz does, what it does not try to do, and how it compares with external orchestration systems and agent frameworks.
6
+
7
+ Use this matrix when deciding whether Sagaz needs a new capability, whether a project should use Sagaz alone, or whether Sagaz should coordinate with another framework.
8
+
9
+ ## Scope
10
+
11
+ Sagaz is a Codex Desktop operating system for software delivery. It is not a standalone agent runtime, model gateway, hosted automation platform, or Python/TypeScript agent SDK.
12
+
13
+ External systems in this matrix are grouped by practical role:
14
+
15
+ - Agent frameworks: CrewAI, AutoGen, LangChain, LangGraph.
16
+ - Enterprise orchestration platforms: AIOX, Synkra, and similar systems when the user provides internal context.
17
+ - Adjacent infrastructure: MCP servers, GitHub, Vercel, Figma, Canva, Supabase, Firebase, and observability tools.
18
+
19
+ ## Source Notes
20
+
21
+ - CrewAI publicly positions itself around collaborative AI agents, crews, flows, guardrails, memory, knowledge, observability, deployment, triggers, and enterprise controls.
22
+ - AutoGen publicly positions itself as a framework for building AI agents and applications, including conversational single and multi-agent applications, event-driven multi-agent systems, extensions, MCP support, Docker code execution, distributed runtimes, and Studio.
23
+ - LangChain publicly positions its platform around agent engineering, LangSmith observability/evaluation/prompt engineering/deployment, and LangGraph for low-level orchestration, memory, and human-in-the-loop support.
24
+ - AIOX, Synkra, and similar systems should be compared from user-provided documentation or internal knowledge. Do not claim exact feature parity without a source.
25
+
26
+ ## High-Level Positioning
27
+
28
+ | Capability Area | Sagaz | CrewAI | AutoGen | LangChain/LangGraph | AIOX/Synkra-Like Systems |
29
+ | --- | --- | --- | --- | --- | --- |
30
+ | Primary role | Codex Desktop delivery operating system | Agent/crew automation framework and platform | Multi-agent application framework | Agent engineering platform and graph runtime | Enterprise orchestration layer |
31
+ | Runtime | Codex Desktop plus local Markdown rules | Python/package/platform runtime | Python/.NET ecosystem and Studio | Python/TypeScript plus hosted LangSmith/LangGraph options | Usually hosted, server, or enterprise runtime |
32
+ | Best use | Software projects with planning, design, build, QA, GitHub, release | Building autonomous agents, crews, flows, automations | Building programmable multi-agent apps and experiments | Building agentic apps, graph workflows, observability, evaluation | Broad enterprise coordination, policy, governance, routing |
33
+ | Requires coding framework | No, uses Codex and repo files | Yes for framework use | Yes for framework use | Yes for framework use | Usually yes or platform configuration |
34
+ | Standalone agent runtime | No | Yes | Yes | Yes | Usually yes |
35
+ | Codex Desktop integration | Native goal | Not primary | Not primary | Not primary | Not primary unless integrated |
36
+
37
+ ## Detailed Capability Matrix
38
+
39
+ | Capability | Sagaz Status | Notes |
40
+ | --- | --- | --- |
41
+ | Named squads and agents | Strong | Markdown-defined squads and roles guide Codex behavior. |
42
+ | Formal workflows | Strong | Workflow contracts, phases, gates, and handoffs are validated. |
43
+ | Formal task contracts | Strong | Tasks define inputs, outputs, evidence, verification, and stop conditions. |
44
+ | Durable run state | Strong | Markdown run state supports resume, skipped phases, blockers, and handoffs. |
45
+ | Human approval gates | Strong | Built into handoffs, GitHub operations, release gates, and dangerous actions. |
46
+ | GitHub release operations | Strong | Guided commit, push, tag, release, and npm flow with explicit permission. |
47
+ | Package/release governance | Strong | Release/versioning gate, changelog, release notes, Actions, and npm packaging. |
48
+ | Installed skill synchronization | Strong | `sync`, `doctor`, and protocol prevent installed skill drift. |
49
+ | Design quality governance | Strong | UX/UI, Figma MCP guidance, responsive/accessibility/visual QA rules. |
50
+ | Stack advisory | Strong | Stack presets and recommendation criteria guide web/mobile/backend choices. |
51
+ | Evaluation suite | Medium-strong | Scenario contracts exist; automated agent-behavior execution is not yet implemented. |
52
+ | Observability | Medium | Agent observability exists as a protocol; stronger structured traces remain future work. |
53
+ | Tool and MCP policy | Medium | Tool registry exists; connector-specific policy remains future work. |
54
+ | Multi-agent runtime execution | Limited | Sagaz does not spawn independent runtime agents; Codex executes under Sagaz rules. |
55
+ | Distributed workers | Not a goal | Use AutoGen, LangGraph, CrewAI, or another runtime if needed. |
56
+ | Model routing engine | Protocol-level only | Sagaz can guide model selection but does not provide live routing infrastructure. |
57
+ | Hosted dashboard | Not a goal | Sagaz is local Markdown plus Codex Desktop. |
58
+ | Visual workflow builder | Not a goal | Use external platforms if visual orchestration is required. |
59
+ | Autonomous background jobs | Not a goal | Sagaz works in active Codex sessions unless paired with external automation. |
60
+ | Enterprise RBAC | Not a goal | Use GitHub/org/platform controls or external enterprise orchestration. |
61
+ | Provider gateway | Not a goal | Use LangSmith gateway, provider SDKs, or enterprise infra if needed. |
62
+ | Vector/RAG runtime | Not a goal | Sagaz can recommend RAG architecture but does not host it. |
63
+
64
+ ## Sagaz vs CrewAI
65
+
66
+ Use Sagaz when the goal is to guide Codex Desktop through software delivery with specs, implementation, QA, handoffs, GitHub, and release evidence.
67
+
68
+ Use CrewAI when the goal is to build autonomous agent crews and flows as an application/runtime outside Codex Desktop.
69
+
70
+ Complementary pattern:
71
+
72
+ - Sagaz plans the product, architecture, tests, release, and governance.
73
+ - CrewAI implements runtime automations when the product itself needs agent crews.
74
+
75
+ Sagaz should not claim CrewAI-style runtime parity. CrewAI has a runtime and platform orientation; Sagaz has a Codex Desktop operating-system orientation.
76
+
77
+ ## Sagaz vs AutoGen
78
+
79
+ Use Sagaz when the goal is delivery orchestration for a repository.
80
+
81
+ Use AutoGen when the goal is to program multi-agent applications, conversational agents, distributed runtimes, MCP-backed agents, Docker code execution, or Studio-based agent prototyping.
82
+
83
+ Complementary pattern:
84
+
85
+ - Sagaz specifies and validates the software project.
86
+ - AutoGen becomes an implementation dependency if the product needs programmable multi-agent behavior.
87
+
88
+ Sagaz should not claim AutoGen-style distributed or event-driven agent runtime parity.
89
+
90
+ ## Sagaz vs LangChain And LangGraph
91
+
92
+ Use Sagaz when the goal is to coordinate Codex work across planning, build, verification, and release.
93
+
94
+ Use LangChain or LangGraph when the product needs an agentic application framework, graph-based execution, memory, human-in-the-loop runtime flows, tracing, evaluation, deployment, or LangSmith operations.
95
+
96
+ Complementary pattern:
97
+
98
+ - Sagaz decides whether an app needs LangChain/LangGraph.
99
+ - LangChain/LangGraph implement runtime application behavior.
100
+ - LangSmith can provide production tracing/evaluation that Sagaz records as release evidence.
101
+
102
+ Sagaz should not claim LangGraph-style graph runtime or LangSmith-style hosted observability parity.
103
+
104
+ ## Sagaz vs AIOX, Synkra, And Similar Systems
105
+
106
+ Use this comparison only when the user provides reliable details about those systems.
107
+
108
+ Typical external orchestration platforms may include:
109
+
110
+ - Runtime execution.
111
+ - Agent registries.
112
+ - Model routing.
113
+ - Dashboards.
114
+ - Enterprise permissions.
115
+ - Background jobs.
116
+ - Cross-framework orchestration.
117
+ - Monitoring.
118
+ - Hosted workflow state.
119
+
120
+ Sagaz currently covers the delivery governance side strongly but does not aim to replace hosted enterprise orchestration runtimes.
121
+
122
+ Sagaz can become more similar in selected areas by adding:
123
+
124
+ - Stronger execution observability.
125
+ - Connector/MCP policy.
126
+ - Permission contracts.
127
+ - Stack playbooks.
128
+ - More complete examples.
129
+ - Optional external automation hooks.
130
+
131
+ ## Decision Guide
132
+
133
+ | Need | Recommended Path |
134
+ | --- | --- |
135
+ | Build a web/mobile product in Codex Desktop | Sagaz |
136
+ | Refactor or fix a codebase safely in Codex Desktop | Sagaz |
137
+ | Add governance, gates, release discipline, handoffs | Sagaz |
138
+ | Build runtime multi-agent app behavior | CrewAI, AutoGen, LangGraph, or similar |
139
+ | Build graph-based long-running agent workflows | LangGraph |
140
+ | Build conversational multi-agent applications | AutoGen |
141
+ | Build crew/flow business automations | CrewAI |
142
+ | Need hosted tracing/evaluation/deployment for agents | LangSmith/LangGraph Platform or similar |
143
+ | Need enterprise RBAC, dashboards, background jobs | External orchestration platform |
144
+ | Need Figma app-like mockups and design handoff | Sagaz plus Figma MCP |
145
+
146
+ ## Gaps To Consider
147
+
148
+ Sagaz does not need a standalone CLI runtime if it remains Codex Desktop-focused.
149
+
150
+ The next useful additions are:
151
+
152
+ - Permission contract.
153
+ - Stack playbooks.
154
+ - Stronger execution observability.
155
+ - MCP and connector policy.
156
+
157
+ ## Output
158
+
159
+ ```md
160
+ Capability question:
161
+ Sagaz fit:
162
+ External system fit:
163
+ Recommended path:
164
+ Reason:
165
+ Missing capability:
166
+ Next action:
167
+ Permission needed:
168
+ ```
169
+
@@ -0,0 +1,236 @@
1
+ # Sagaz Operations Runbook
2
+
3
+ ## Purpose
4
+
5
+ Provide the day-to-day operating procedure for using Sagaz inside Codex Desktop.
6
+
7
+ Use this runbook when starting work, resuming work, approving handoffs, verifying delivery, syncing the installed skill, preparing releases, publishing packages, or recovering from common errors.
8
+
9
+ Apply `protocols/permission-contract.md` before actions that change local state, remote state, accounts, deployments, packages, credentials, or GitHub history.
10
+
11
+ Apply `protocols/mcp-connector-policy.md` before using MCPs or external connectors such as Figma, GitHub, Canva, Browser, Vercel, Supabase, Firebase, npm, or observability tools.
12
+
13
+ ## Daily Start
14
+
15
+ 1. Confirm the workspace is the intended project or the Sagaz repository.
16
+ 2. If using Sagaz itself, read `ai-orchestration-ecosystem/quickstart.md`.
17
+ 3. If navigation is needed, read `ai-orchestration-ecosystem/INDEX.md`.
18
+ 4. Choose the smallest sufficient workflow, squad, task, or protocol.
19
+ 5. For medium or large work, create or update `templates/run-state.md`.
20
+ 6. For multi-phase, production, release, deployment, package, or high-risk work, create or update `templates/execution-trace.md`.
21
+ 7. State the current objective, current squad, next action, and permission needed.
22
+
23
+ ## Start A New Project
24
+
25
+ Use this sequence:
26
+
27
+ 1. Intake: clarify goal, platform, audience, constraints, budget, timeline, and risk.
28
+ 2. Workflow selection: choose the named workflow that matches the project.
29
+ 3. Task selection: map the first phase to a formal task.
30
+ 4. Stack recommendation: use stack presets only as starting points.
31
+ 5. Planning: produce product, technical, design, testing, and release expectations.
32
+ 6. Handoff: ask permission before moving into implementation.
33
+
34
+ Standard start prompt:
35
+
36
+ ```text
37
+ Sagaz: use the appropriate workflow for this project. Maintain run state, handoffs, and verification evidence.
38
+ ```
39
+
40
+ ## Resume Work
41
+
42
+ When resuming after a pause, context compaction, or a new Codex Desktop thread:
43
+
44
+ 1. Read the newest user request.
45
+ 2. Read `templates/run-state.md` if it exists.
46
+ 3. Check `git status --short --branch`.
47
+ 4. Identify the current workflow, phase, squad, task, blockers, and next action.
48
+ 5. Continue from the newest approved point instead of restarting the whole run.
49
+ 6. Update run state if the work is medium, large, production, or multi-phase.
50
+
51
+ Resume output:
52
+
53
+ ```md
54
+ Current workflow:
55
+ Current phase:
56
+ Current squad:
57
+ Current task:
58
+ Completed:
59
+ Evidence:
60
+ Blockers:
61
+ Next action:
62
+ Permission needed:
63
+ ```
64
+
65
+ ## Handoff Procedure
66
+
67
+ Use handoffs whenever work moves between squads or phases.
68
+
69
+ Required handoff:
70
+
71
+ ```md
72
+ Current team:
73
+ What was completed:
74
+ Evidence/artifacts:
75
+ Risks or pending items:
76
+ Next team:
77
+ What it will do:
78
+ Why now:
79
+ May I perform the handoff?
80
+ ```
81
+
82
+ Do not proceed to a new phase when the handoff requires user approval and approval has not been given.
83
+
84
+ ## Verification Procedure
85
+
86
+ Verification must match risk.
87
+
88
+ Minimum Sagaz repository checks:
89
+
90
+ ```powershell
91
+ npm test
92
+ npm run doctor
93
+ npm pack --dry-run
94
+ ```
95
+
96
+ For product work, choose checks from the active project:
97
+
98
+ - Build.
99
+ - Lint.
100
+ - Unit tests.
101
+ - Integration tests.
102
+ - End-to-end tests.
103
+ - Accessibility checks.
104
+ - Visual QA.
105
+ - Security checks.
106
+ - Deployment preview.
107
+ - Manual smoke test.
108
+
109
+ Never declare done without saying which checks were run and what risk remains.
110
+
111
+ ## Sync Installed Skill
112
+
113
+ When Sagaz rules, activation, release behavior, or `codex-skill/sagaz/SKILL.md` change, sync the installed Codex Desktop skill.
114
+
115
+ Windows PowerShell and macOS Terminal:
116
+
117
+ ```bash
118
+ npx sagaz-ai sync
119
+ npx sagaz-ai doctor
120
+ ```
121
+
122
+ Then open a new Codex Desktop thread so the updated skill can be discovered.
123
+
124
+ If `doctor` reports a stale installed skill, run:
125
+
126
+ ```bash
127
+ npx sagaz-ai install --force
128
+ ```
129
+
130
+ ## Release Procedure
131
+
132
+ Before version bumps, tags, GitHub releases, or npm publishes:
133
+
134
+ 1. Apply `protocols/release-versioning-gate.md`.
135
+ 2. Decide patch, minor, or major.
136
+ 3. Update `CHANGELOG.md` and `RELEASE_NOTES.md`.
137
+ 4. Run `npm test`.
138
+ 5. Run `npm run doctor`.
139
+ 6. Run `npm pack --dry-run`.
140
+ 7. Confirm `git status --short --branch`.
141
+ 8. Ask for approval before commit, tag, push, GitHub release, or npm publish.
142
+
143
+ Release output:
144
+
145
+ ```md
146
+ Version:
147
+ Release type:
148
+ Checks:
149
+ Git status:
150
+ Tag:
151
+ GitHub release:
152
+ npm publish:
153
+ Residual risk:
154
+ ```
155
+
156
+ ## GitHub Procedure
157
+
158
+ Before GitHub operations:
159
+
160
+ 1. Inspect `git status --short --branch`.
161
+ 2. Avoid including unrelated user changes.
162
+ 3. Run required checks.
163
+ 4. Apply `protocols/permission-contract.md`.
164
+ 5. Ask approval before commit, push, tag, release, issue, or pull request.
165
+ 6. Report commit hash, branch, push status, and release URL when created.
166
+
167
+ ## Common Errors
168
+
169
+ ### npm E401 Unauthorized
170
+
171
+ Meaning: npm is not authenticated or the token is invalid.
172
+
173
+ Action:
174
+
175
+ ```powershell
176
+ npm logout
177
+ npm login
178
+ npm whoami
179
+ ```
180
+
181
+ ### npm ENOENT package.json
182
+
183
+ Meaning: the command was run outside the package folder.
184
+
185
+ Action:
186
+
187
+ ```powershell
188
+ cd C:\Users\tscab\Documents\Projects\Sagaz
189
+ dir package.json
190
+ ```
191
+
192
+ ### npm Cannot Publish Over Previous Version
193
+
194
+ Meaning: that version is already published.
195
+
196
+ Action:
197
+
198
+ ```powershell
199
+ npm view sagaz-ai version
200
+ ```
201
+
202
+ If the published version is correct, stop. If another release is needed, bump the version first.
203
+
204
+ ### Stale Installed Skill
205
+
206
+ Meaning: the installed Codex Desktop skill differs from the repository skill.
207
+
208
+ Action:
209
+
210
+ ```bash
211
+ npx sagaz-ai sync
212
+ npx sagaz-ai doctor
213
+ ```
214
+
215
+ ## Stop Conditions
216
+
217
+ Stop and ask the user when:
218
+
219
+ - A destructive action is needed.
220
+ - Remote publication is needed.
221
+ - Credentials or account permissions are missing.
222
+ - Git status contains unrelated changes.
223
+ - Required checks fail.
224
+ - The next action changes cost, account state, deployment, package publication, or release state.
225
+
226
+ ## Output
227
+
228
+ ```md
229
+ Runbook step:
230
+ Current state:
231
+ Action taken:
232
+ Evidence:
233
+ Risk:
234
+ Next action:
235
+ Permission needed:
236
+ ```
@@ -80,6 +80,8 @@
80
80
  "protocols/installed-skill-sync.md",
81
81
  "protocols/memory.md",
82
82
  "protocols/model-routing.md",
83
+ "protocols/mcp-connector-policy.md",
84
+ "protocols/permission-contract.md",
83
85
  "protocols/performance-budgets.md",
84
86
  "protocols/post-delivery-monitoring.md",
85
87
  "protocols/production-readiness.md",
@@ -103,6 +105,14 @@
103
105
  "stack-presets/static-site.md",
104
106
  "stack-presets/supabase.md"
105
107
  ],
108
+ "stack_playbooks": [
109
+ "stack-playbooks/README.md",
110
+ "stack-playbooks/expo-eas.md",
111
+ "stack-playbooks/firebase.md",
112
+ "stack-playbooks/nextjs-vercel-supabase.md",
113
+ "stack-playbooks/node-api.md",
114
+ "stack-playbooks/react-vite-static.md"
115
+ ],
106
116
  "templates": [
107
117
  "templates/changelog.md",
108
118
  "templates/design-system-spec.md",
@@ -110,6 +120,7 @@
110
120
  "templates/future-change-guide.md",
111
121
  "templates/github-actions-checklist.md",
112
122
  "templates/implementation-plan.md",
123
+ "templates/execution-trace.md",
113
124
  "templates/mobile-release-checklist.md",
114
125
  "templates/product-spec.md",
115
126
  "templates/qa-report.md",
@@ -134,7 +145,9 @@
134
145
  "engineering/software-engineering-deep-guide.md"
135
146
  ],
136
147
  "governance": [
148
+ "governance/capabilities-matrix.md",
137
149
  "governance/ecosystem-maintenance.md",
150
+ "governance/operations-runbook.md",
138
151
  "governance/package-release-policy.md",
139
152
  "governance/quality-policy.md",
140
153
  "governance/security-policy.md",
@@ -144,7 +157,11 @@
144
157
  "evals/sagaz-evaluation-suite.md"
145
158
  ],
146
159
  "examples": [
147
- "examples/README.md"
160
+ "examples/README.md",
161
+ "examples/brownfield-refactor.md",
162
+ "examples/bugfix-production-release.md",
163
+ "examples/mobile-habit-tracker.md",
164
+ "examples/web-saas-vercel.md"
148
165
  ],
149
166
  "docs": [
150
167
  "ACTIVATE.md",