@jaimevalasek/aioson 1.6.0 → 1.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +74 -0
- package/README.md +729 -232
- package/docs/design-previews/pt.squarespace.com-homepage.html +889 -0
- package/docs/integrations/sdlc-genius-boundary.md +76 -0
- package/docs/integrations/sdlc-genius-eval-matrix.md +75 -0
- package/docs/integrations/sdlc-genius-install-checklist.md +93 -0
- package/docs/integrations/sdlc-genius-review-samples.md +86 -0
- package/docs/pt/README.md +3 -0
- package/docs/pt/agentes.md +1 -0
- package/docs/pt/comandos-cli.md +888 -2
- package/docs/pt/design-hybrid-forge.md +255 -6
- package/docs/pt/devlog-pipeline.md +270 -0
- package/docs/pt/fluxo-artefatos.md +178 -0
- package/docs/pt/hooks-session-guard.md +454 -0
- package/docs/pt/monitor-de-contexto.md +59 -5
- package/docs/pt/sdd-automation-scripts.md +557 -0
- package/docs/pt/site-forge.md +309 -0
- package/docs/pt/spec-learnings-pipeline.md +265 -0
- package/package.json +1 -1
- package/src/a2a/client.js +165 -0
- package/src/a2a/server.js +223 -0
- package/src/cli.js +235 -1
- package/src/commands/agent-audit.js +397 -0
- package/src/commands/agent-export-skill.js +229 -0
- package/src/commands/artifact-validate.js +189 -0
- package/src/commands/brief-gen.js +405 -0
- package/src/commands/brief-validate.js +65 -0
- package/src/commands/classify.js +256 -0
- package/src/commands/context-compact.js +49 -0
- package/src/commands/context-health.js +175 -0
- package/src/commands/context-monitor.js +71 -0
- package/src/commands/context-trim.js +177 -0
- package/src/commands/detect-test-runner.js +55 -0
- package/src/commands/devlog-export-brains.js +27 -0
- package/src/commands/devlog-process.js +292 -0
- package/src/commands/devlog-watch.js +131 -0
- package/src/commands/feature-close.js +165 -0
- package/src/commands/gate-check.js +228 -0
- package/src/commands/hooks-emit.js +253 -0
- package/src/commands/hooks-install.js +347 -0
- package/src/commands/learning-auto-promote.js +195 -0
- package/src/commands/learning-evolve.js +18 -9
- package/src/commands/learning-export.js +103 -0
- package/src/commands/learning-rollback.js +164 -0
- package/src/commands/live.js +25 -1
- package/src/commands/pattern-detect.js +33 -0
- package/src/commands/preflight-context.js +30 -0
- package/src/commands/preflight.js +208 -0
- package/src/commands/pulse-update.js +130 -0
- package/src/commands/runner-daemon.js +274 -0
- package/src/commands/runner-plan.js +70 -0
- package/src/commands/runner-queue-from-plan.js +166 -0
- package/src/commands/runner-queue.js +189 -0
- package/src/commands/runner-run.js +129 -0
- package/src/commands/runtime.js +47 -1
- package/src/commands/self-implement-loop.js +256 -0
- package/src/commands/session-guard.js +218 -0
- package/src/commands/sizing.js +165 -0
- package/src/commands/skill.js +65 -0
- package/src/commands/spec-checkpoint.js +177 -0
- package/src/commands/spec-status.js +79 -0
- package/src/commands/spec-sync.js +190 -0
- package/src/commands/spec-tasks.js +288 -0
- package/src/commands/squad-autorun.js +1220 -0
- package/src/commands/squad-bus.js +217 -0
- package/src/commands/squad-card.js +149 -0
- package/src/commands/squad-daemon.js +134 -0
- package/src/commands/squad-dependency-graph.js +164 -0
- package/src/commands/squad-review.js +106 -0
- package/src/commands/squad-scaffold.js +55 -0
- package/src/commands/squad-tool-register.js +157 -0
- package/src/commands/state-save.js +122 -0
- package/src/commands/update.js +2 -0
- package/src/commands/verify-gate.js +572 -0
- package/src/commands/workflow-execute.js +241 -0
- package/src/constants.js +22 -0
- package/src/install-profile.js +2 -2
- package/src/install-wizard.js +3 -2
- package/src/installer.js +6 -0
- package/src/lib/health-check.js +158 -0
- package/src/lib/hook-protocol.js +76 -0
- package/src/mcp/apps/squad-dashboard/app.js +163 -0
- package/src/mcp/apps/squad-dashboard/index.html +261 -0
- package/src/mcp/apps/squad-dashboard/mcp-manifest.json +23 -0
- package/src/mcp/resources/squad-state.js +130 -0
- package/src/preflight-engine.js +443 -0
- package/src/runner/cascade.js +97 -0
- package/src/runner/cli-launcher.js +109 -0
- package/src/runner/plan-importer.js +63 -0
- package/src/runner/queue-store.js +159 -0
- package/src/runtime-store.js +61 -3
- package/src/squad/agent-teams-adapter.js +264 -0
- package/src/squad/brief-validator.js +350 -0
- package/src/squad/bus-bridge.js +140 -0
- package/src/squad/context-compactor.js +265 -0
- package/src/squad/cross-ai-synthesizer.js +250 -0
- package/src/squad/hooks-generator.js +196 -0
- package/src/squad/inter-squad-events.js +175 -0
- package/src/squad/intra-bus.js +345 -0
- package/src/squad/learning-extractor.js +213 -0
- package/src/squad/pattern-detector.js +365 -0
- package/src/squad/preflight-context.js +296 -0
- package/src/squad/recovery-context.js +242 -71
- package/src/squad/reflection.js +365 -0
- package/src/squad/squad-scaffold.js +177 -0
- package/src/squad/state-manager.js +310 -0
- package/src/squad/task-decomposer.js +652 -0
- package/src/squad/verify-gate.js +303 -0
- package/src/updater.js +4 -5
- package/src/worker-runner.js +186 -1
- package/template/.aioson/agents/analyst.md +62 -1
- package/template/.aioson/agents/architect.md +61 -1
- package/template/.aioson/agents/copywriter.md +463 -0
- package/template/.aioson/agents/design-hybrid-forge.md +14 -0
- package/template/.aioson/agents/dev.md +271 -25
- package/template/.aioson/agents/deyvin.md +67 -8
- package/template/.aioson/agents/discovery-design-doc.md +44 -0
- package/template/.aioson/agents/genome.md +14 -0
- package/template/.aioson/agents/neo.md +83 -2
- package/template/.aioson/agents/orache.md +50 -4
- package/template/.aioson/agents/orchestrator.md +197 -1
- package/template/.aioson/agents/pm.md +35 -0
- package/template/.aioson/agents/product.md +50 -5
- package/template/.aioson/agents/profiler-enricher.md +14 -0
- package/template/.aioson/agents/profiler-forge.md +14 -0
- package/template/.aioson/agents/profiler-researcher.md +14 -0
- package/template/.aioson/agents/qa.md +273 -21
- package/template/.aioson/agents/setup.md +96 -10
- package/template/.aioson/agents/sheldon.md +131 -6
- package/template/.aioson/agents/site-forge.md +1753 -0
- package/template/.aioson/agents/squad.md +352 -0
- package/template/.aioson/agents/tester.md +53 -0
- package/template/.aioson/agents/ux-ui.md +203 -4
- package/template/.aioson/brains/README.md +128 -0
- package/template/.aioson/brains/_index.json +16 -0
- package/template/.aioson/brains/scripts/query.js +103 -0
- package/template/.aioson/brains/site-forge/visual-patterns.brain.json +205 -0
- package/template/.aioson/config.md +143 -13
- package/template/.aioson/constitution.md +33 -0
- package/template/.aioson/context/project-pulse.md +34 -0
- package/template/.aioson/docs/LAYERS.md +79 -0
- package/template/.aioson/docs/README.md +76 -0
- package/template/.aioson/docs/example-external-api-context.md +72 -0
- package/template/.aioson/genomes/copywriting.md +204 -0
- package/template/.aioson/locales/en/agents/architect.md +17 -0
- package/template/.aioson/locales/en/agents/dev.md +79 -13
- package/template/.aioson/locales/en/agents/orache.md +6 -0
- package/template/.aioson/locales/en/agents/orchestrator.md +24 -0
- package/template/.aioson/locales/en/agents/product.md +50 -0
- package/template/.aioson/locales/en/agents/sheldon.md +115 -0
- package/template/.aioson/locales/en/agents/squad.md +14 -0
- package/template/.aioson/locales/en/agents/tester.md +6 -0
- package/template/.aioson/locales/es/agents/analyst.md +2 -0
- package/template/.aioson/locales/es/agents/architect.md +19 -0
- package/template/.aioson/locales/es/agents/dev.md +64 -4
- package/template/.aioson/locales/es/agents/deyvin.md +2 -0
- package/template/.aioson/locales/es/agents/discovery-design-doc.md +2 -0
- package/template/.aioson/locales/es/agents/genome.md +2 -0
- package/template/.aioson/locales/es/agents/neo.md +2 -0
- package/template/.aioson/locales/es/agents/orache.md +2 -0
- package/template/.aioson/locales/es/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/es/agents/pair.md +2 -0
- package/template/.aioson/locales/es/agents/pm.md +2 -0
- package/template/.aioson/locales/es/agents/product.md +52 -0
- package/template/.aioson/locales/es/agents/profiler-enricher.md +2 -0
- package/template/.aioson/locales/es/agents/profiler-forge.md +2 -0
- package/template/.aioson/locales/es/agents/profiler-researcher.md +2 -0
- package/template/.aioson/locales/es/agents/qa.md +2 -0
- package/template/.aioson/locales/es/agents/setup.md +2 -0
- package/template/.aioson/locales/es/agents/sheldon.md +117 -0
- package/template/.aioson/locales/es/agents/squad.md +16 -0
- package/template/.aioson/locales/es/agents/tester.md +9 -0
- package/template/.aioson/locales/es/agents/ux-ui.md +2 -0
- package/template/.aioson/locales/fr/agents/analyst.md +2 -0
- package/template/.aioson/locales/fr/agents/architect.md +19 -0
- package/template/.aioson/locales/fr/agents/dev.md +64 -4
- package/template/.aioson/locales/fr/agents/deyvin.md +2 -0
- package/template/.aioson/locales/fr/agents/discovery-design-doc.md +2 -0
- package/template/.aioson/locales/fr/agents/genome.md +2 -0
- package/template/.aioson/locales/fr/agents/neo.md +2 -0
- package/template/.aioson/locales/fr/agents/orache.md +2 -0
- package/template/.aioson/locales/fr/agents/orchestrator.md +26 -0
- package/template/.aioson/locales/fr/agents/pair.md +2 -0
- package/template/.aioson/locales/fr/agents/pm.md +2 -0
- package/template/.aioson/locales/fr/agents/product.md +52 -0
- package/template/.aioson/locales/fr/agents/profiler-enricher.md +2 -0
- package/template/.aioson/locales/fr/agents/profiler-forge.md +2 -0
- package/template/.aioson/locales/fr/agents/profiler-researcher.md +2 -0
- package/template/.aioson/locales/fr/agents/qa.md +2 -0
- package/template/.aioson/locales/fr/agents/setup.md +2 -0
- package/template/.aioson/locales/fr/agents/sheldon.md +117 -0
- package/template/.aioson/locales/fr/agents/squad.md +16 -0
- package/template/.aioson/locales/fr/agents/tester.md +9 -0
- package/template/.aioson/locales/fr/agents/ux-ui.md +2 -0
- package/template/.aioson/locales/pt-BR/agents/analyst.md +64 -3
- package/template/.aioson/locales/pt-BR/agents/architect.md +42 -0
- package/template/.aioson/locales/pt-BR/agents/dev.md +147 -14
- package/template/.aioson/locales/pt-BR/agents/deyvin.md +47 -0
- package/template/.aioson/locales/pt-BR/agents/neo.md +62 -1
- package/template/.aioson/locales/pt-BR/agents/orchestrator.md +158 -2
- package/template/.aioson/locales/pt-BR/agents/pm.md +95 -1
- package/template/.aioson/locales/pt-BR/agents/product.md +145 -18
- package/template/.aioson/locales/pt-BR/agents/qa.md +16 -0
- package/template/.aioson/locales/pt-BR/agents/setup.md +101 -18
- package/template/.aioson/locales/pt-BR/agents/sheldon.md +132 -1
- package/template/.aioson/locales/pt-BR/agents/squad.md +14 -0
- package/template/.aioson/locales/pt-BR/agents/tester.md +449 -0
- package/template/.aioson/rules/README.md +69 -0
- package/template/.aioson/rules/data-format-convention.md +136 -0
- package/template/.aioson/rules/example-monetary-values.md +30 -0
- package/template/.aioson/schemas/squad-manifest.schema.json +124 -3
- package/template/.aioson/skills/design/cognitive-core-ui/references/motion.md +2 -0
- package/template/.aioson/skills/design/pt.squarespace.com/.skill-meta.json +31 -0
- package/template/.aioson/skills/design/pt.squarespace.com/SKILL.md +66 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/components.md +368 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/design-tokens.md +150 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/motion.md +270 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/patterns.md +189 -0
- package/template/.aioson/skills/design/pt.squarespace.com/references/websites.md +165 -0
- package/template/.aioson/skills/marketing/references/anti-patterns.md +254 -0
- package/template/.aioson/skills/marketing/references/fascinations.md +192 -0
- package/template/.aioson/skills/marketing/references/five-acts.md +248 -0
- package/template/.aioson/skills/marketing/references/market-intelligence.md +198 -0
- package/template/.aioson/skills/marketing/references/offer-structure.md +203 -0
- package/template/.aioson/skills/marketing/references/one-belief.md +149 -0
- package/template/.aioson/skills/marketing/references/patterns.md +218 -0
- package/template/.aioson/skills/marketing/references/pms-research.md +193 -0
- package/template/.aioson/skills/marketing/vsl-craft.md +385 -0
- package/template/.aioson/skills/process/aioson-spec-driven/SKILL.md +1 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/analyst.md +30 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/architect.md +23 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/dev.md +47 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/deyvin.md +27 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/maintenance-and-state.md +35 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/product.md +25 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/qa.md +30 -0
- package/template/.aioson/skills/process/aioson-spec-driven/references/sheldon.md +25 -0
- package/template/.aioson/skills/process/design-hybrid-forge/SKILL.md +4 -1
- package/template/.aioson/skills/process/design-hybrid-forge/references/output-contract.md +15 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/pair-compatibility.md +32 -0
- package/template/.aioson/skills/process/design-hybrid-forge/references/quality-gates.md +20 -0
- package/template/.aioson/skills/process/simplify/SKILL.md +173 -0
- package/template/.aioson/skills/static/context-budget-guide.md +46 -0
- package/template/.aioson/skills/static/harness-sensors.md +74 -0
- package/template/.aioson/skills/static/landing-page-deploy.md +192 -0
- package/template/.aioson/skills/static/landing-page-forge.md +730 -0
- package/template/.aioson/skills/static/multi-agent-patterns.md +43 -0
- package/template/.aioson/skills/static/react-motion-patterns.md +22 -0
- package/template/.aioson/skills/static/static-html-patterns/checklists.md +43 -0
- package/template/.aioson/skills/static/static-html-patterns/css-tokens.md +609 -0
- package/template/.aioson/skills/static/static-html-patterns/motion.md +193 -0
- package/template/.aioson/skills/static/static-html-patterns/premium.md +711 -0
- package/template/.aioson/skills/static/static-html-patterns/structure.md +209 -0
- package/template/.aioson/skills/static/static-html-patterns/utilities.md +190 -0
- package/template/.aioson/skills/static/static-html-patterns.md +58 -1913
- package/template/.aioson/skills/static/threejs-patterns.md +929 -0
- package/template/.aioson/skills/static/ui-ux-modern.md +1 -0
- package/template/.aioson/skills/static/web-research-cache.md +112 -0
- package/template/.aioson/tasks/implementation-plan.md +21 -1
- package/template/.aioson/tasks/squad-create.md +22 -0
- package/template/.aioson/tasks/squad-design.md +30 -0
- package/template/.aioson/templates/squads/digital-marketing-agency/template.json +96 -0
- package/template/.claude/commands/aioson/agent/design-hybrid-forge.md +5 -0
- package/template/.claude/commands/aioson/agent/orache.md +5 -0
- package/template/.claude/commands/aioson/agent/sheldon.md +5 -0
- package/template/.claude/commands/aioson/agent/site-forge.md +5 -0
- package/template/AGENTS.md +55 -3
- package/template/CLAUDE.md +31 -0
- package/template/OPENCODE.md +4 -0
- package/template/researchs/.gitkeep +0 -0
- package/template/.aioson/skills/design-system/components/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/dashboards/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/foundations/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/motion/SKILL.md:Zone.Identifier +0 -0
- package/template/.aioson/skills/design-system/patterns/SKILL.md:Zone.Identifier +0 -0
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# SDLC Genius — Integration Boundary
|
|
2
|
+
|
|
3
|
+
> Created: 2026-04-02
|
|
4
|
+
> Status: pre-pilot — defines what the app is allowed and not allowed to influence
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
8
|
+
## Boundary Rule
|
|
9
|
+
|
|
10
|
+
**AIOSON artifacts drive work. SDLC Genius may react to GitHub changes. SDLC Genius does not mutate AIOSON source-of-truth artifacts directly.**
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## What SDLC Genius Must NOT Own
|
|
15
|
+
|
|
16
|
+
These artifacts are AIOSON's exclusive responsibility:
|
|
17
|
+
|
|
18
|
+
| Artifact | Owner | Reason |
|
|
19
|
+
|----------|-------|--------|
|
|
20
|
+
| `prd-{slug}.md` | @product | Product decisions require human + agent deliberation |
|
|
21
|
+
| `requirements-{slug}.md` | @analyst | Business rules require structured discovery |
|
|
22
|
+
| `spec-{slug}.md` | @analyst / @dev | Feature memory and phase gates are AIOSON's execution state |
|
|
23
|
+
| `architecture.md` | @architect | Architecture decisions require full project context |
|
|
24
|
+
| `design-doc*.md` | @architect / @discovery-design-doc | Scope decisions are AIOSON artifacts |
|
|
25
|
+
| `implementation-plan*.md` | @dev / @orchestrator | Execution sequencing belongs to AIOSON |
|
|
26
|
+
| `.aioson/constitution.md` | User | Never externally modified |
|
|
27
|
+
| `.aioson/rules/` | User / @dev | Project conventions are internal |
|
|
28
|
+
|
|
29
|
+
SDLC Genius must never write to these files, even indirectly.
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
|
|
33
|
+
## What SDLC Genius May Own Well
|
|
34
|
+
|
|
35
|
+
These are appropriate surfaces for a GitHub execution assistant:
|
|
36
|
+
|
|
37
|
+
| Surface | Notes |
|
|
38
|
+
|---------|-------|
|
|
39
|
+
| PR review comments | Secondary signal — complements @qa, does not replace it |
|
|
40
|
+
| Test generation suggestions | Must be reviewed by developer before accepting |
|
|
41
|
+
| Documentation nudges | Flags stale docs, does not rewrite them |
|
|
42
|
+
| GitHub workflow insights | Metrics and visibility in GitHub context |
|
|
43
|
+
| Code quality signals | Language-level feedback that AIOSON agents do not produce |
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## How to Interpret SDLC Genius Output
|
|
48
|
+
|
|
49
|
+
When SDLC Genius comments on a PR:
|
|
50
|
+
|
|
51
|
+
1. **Check if the comment is already covered by AIOSON artifacts** — if `requirements-{slug}.md` or `spec-{slug}.md` already addresses the point, SDLC Genius is confirming what AIOSON decided
|
|
52
|
+
2. **If the comment contradicts a spec decision** — do not change the code; flag the contradiction to the user for a spec update
|
|
53
|
+
3. **If the comment is about language-level quality** (naming, type safety, unused imports) — act directly without spec update
|
|
54
|
+
4. **If the comment suggests a new requirement** — this is a spec change; route to @product or @analyst, not directly to @dev
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Conflict Resolution
|
|
59
|
+
|
|
60
|
+
When SDLC Genius output conflicts with AIOSON artifacts:
|
|
61
|
+
|
|
62
|
+
**AIOSON artifact wins.** Always.
|
|
63
|
+
|
|
64
|
+
The spec is the single source of truth. SDLC Genius is a secondary signal.
|
|
65
|
+
|
|
66
|
+
If a conflict repeats across multiple PRs, this is a signal that the spec may need updating — not that SDLC Genius is right.
|
|
67
|
+
|
|
68
|
+
---
|
|
69
|
+
|
|
70
|
+
## What Happens When the Pilot Ends
|
|
71
|
+
|
|
72
|
+
After the pilot evaluation (Plan 70 Phase 5):
|
|
73
|
+
|
|
74
|
+
- **Outcome A (adopt):** this boundary document becomes a standing operating note, promoted to `template/.aioson/docs/sdlc-genius-operating-mode.md`
|
|
75
|
+
- **Outcome B (limited use):** this document is updated to reflect the narrower scope approved
|
|
76
|
+
- **Outcome C (reject):** this document is archived; SDLC Genius is uninstalled
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# SDLC Genius — Evaluation Rubric
|
|
2
|
+
|
|
3
|
+
> Created: 2026-04-02
|
|
4
|
+
> Purpose: Measure pilot PR reviews against consistent criteria
|
|
5
|
+
> Use: Fill one row per tested PR in `sdlc-genius-review-samples.md`
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Evaluation Axes
|
|
10
|
+
|
|
11
|
+
For each PR where SDLC Genius commented, score each axis from 0 to 3:
|
|
12
|
+
|
|
13
|
+
| Axis | 0 | 1 | 2 | 3 |
|
|
14
|
+
|------|---|---|---|---|
|
|
15
|
+
| **Relevance** | Comments are unrelated to the change | Partially related | Mostly related | Directly addresses the actual change |
|
|
16
|
+
| **Signal** | No real bugs/risks caught | Low-value noise | Caught something worth reviewing | Caught a real bug or risk not found elsewhere |
|
|
17
|
+
| **Duplication** | Repeats exactly what AIOSON/QA already enforced | Significant overlap | Some overlap | Adds information not in AIOSON artifacts |
|
|
18
|
+
| **Actionability** | Developer cannot act without research | Possible but unclear | Actionable with context | Developer can act immediately |
|
|
19
|
+
| **Traceability** | Cannot link to spec or requirements | Vague connection | Connects to requirements | Explicitly references behavior in spec |
|
|
20
|
+
| **Noise risk** | Too many low-value comments per PR | Several noise comments | Occasional noise | Clean, focused output |
|
|
21
|
+
|
|
22
|
+
**Score range per PR:** 0–18
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## Score Interpretation
|
|
27
|
+
|
|
28
|
+
| Total | Interpretation |
|
|
29
|
+
|-------|---------------|
|
|
30
|
+
| 15–18 | Excellent — strong signal, low noise, high actionability |
|
|
31
|
+
| 10–14 | Good — useful but with improvements needed |
|
|
32
|
+
| 5–9 | Marginal — some value but noise outweighs it in current state |
|
|
33
|
+
| 0–4 | Poor — does not improve on AIOSON-only workflow |
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## Comparison Against AIOSON Artifacts
|
|
38
|
+
|
|
39
|
+
For each scored PR, also answer:
|
|
40
|
+
|
|
41
|
+
| Question | Yes / Partial / No |
|
|
42
|
+
|----------|-------------------|
|
|
43
|
+
| Did SDLC Genius comment on something already in `requirements-{slug}.md`? | |
|
|
44
|
+
| Did SDLC Genius comment on something already in `spec-{slug}.md`? | |
|
|
45
|
+
| Did SDLC Genius catch something AIOSON artifacts missed? | |
|
|
46
|
+
| Did SDLC Genius suggest a change that contradicts a spec decision? | |
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Noise Threshold
|
|
51
|
+
|
|
52
|
+
If more than 30% of comments per PR are scored 0–1 on Relevance or Actionability, the PR is flagged as **noise-dominated**.
|
|
53
|
+
|
|
54
|
+
A pilot with more than 2 noise-dominated PRs out of 5 tested = Outcome C (reject) unless tuning options exist and reduce noise significantly.
|
|
55
|
+
|
|
56
|
+
---
|
|
57
|
+
|
|
58
|
+
## Pilot Conclusion Criteria
|
|
59
|
+
|
|
60
|
+
| Condition | Suggested Outcome |
|
|
61
|
+
|-----------|------------------|
|
|
62
|
+
| Average score ≥ 12 across 5+ PRs, no spec contradictions | Outcome A — Adopt |
|
|
63
|
+
| Average score 7–11, useful in narrow scope (e.g., code quality only) | Outcome B — Limited use |
|
|
64
|
+
| Average score < 7, OR repeated spec contradictions, OR noise-dominated | Outcome C — Reject |
|
|
65
|
+
| Permissions too broad and cannot be scoped | Outcome C — Reject regardless of score |
|
|
66
|
+
|
|
67
|
+
---
|
|
68
|
+
|
|
69
|
+
## How to Use This Matrix
|
|
70
|
+
|
|
71
|
+
1. Run the pilot PR (see Phase 2 of Plan 70)
|
|
72
|
+
2. For each PR where SDLC Genius commented, score each axis
|
|
73
|
+
3. Record in `sdlc-genius-review-samples.md` with the score, evidence, and comparison against AIOSON artifacts
|
|
74
|
+
4. After 5+ PRs, sum up and apply the conclusion criteria above
|
|
75
|
+
5. Write outcome in `plans/70.1-RESULT-sdlc-genius-pilot.md`
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# SDLC Genius — Pilot Install and Rollback Checklist
|
|
2
|
+
|
|
3
|
+
> Created: 2026-04-02
|
|
4
|
+
> Status: template — fill in before installation
|
|
5
|
+
> Purpose: Ensure the pilot is safe, scoped, and reversible before any installation
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## Pre-Installation Gate
|
|
10
|
+
|
|
11
|
+
Do NOT proceed with installation until ALL of the following are confirmed:
|
|
12
|
+
|
|
13
|
+
- [ ] Plan 69 Phase 0 is complete (process-skill reference debt fixed)
|
|
14
|
+
- [ ] `docs/integrations/sdlc-genius-boundary.md` is read and understood by the pilot owner
|
|
15
|
+
- [ ] Public evaluation questions in `searchings/sdlc-genius-public-evaluation.md` are answered
|
|
16
|
+
- [ ] Privacy policy at https://sof.to/privacy-policy has been reviewed
|
|
17
|
+
- [ ] Pilot repo is chosen and is NOT a production-critical repo
|
|
18
|
+
- [ ] At least one person knows how to uninstall the app
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## Pilot Scope
|
|
23
|
+
|
|
24
|
+
| Field | Value |
|
|
25
|
+
|-------|-------|
|
|
26
|
+
| Pilot repo | _(fill in)_ |
|
|
27
|
+
| Installer name | _(fill in)_ |
|
|
28
|
+
| Install date | _(fill in)_ |
|
|
29
|
+
| Planned end date | _(fill in)_ |
|
|
30
|
+
| Organization | _(fill in)_ |
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## Permissions Review
|
|
35
|
+
|
|
36
|
+
Before installation, verify and record the permissions the app requests:
|
|
37
|
+
|
|
38
|
+
| Permission | Requested? | Acceptable? | Notes |
|
|
39
|
+
|------------|-----------|-------------|-------|
|
|
40
|
+
| Repository read (code) | _(confirm)_ | _(yes/no)_ | |
|
|
41
|
+
| Repository write (pull requests) | _(confirm)_ | _(yes/no)_ | |
|
|
42
|
+
| Repo limited to pilot repo only | _(confirm)_ | _(yes/no)_ | |
|
|
43
|
+
| Org-wide access | _(confirm)_ | _(yes/no/reject)_ | Reject if org-wide and cannot scope |
|
|
44
|
+
| Other permissions | _(list any)_ | _(yes/no)_ | |
|
|
45
|
+
|
|
46
|
+
**If org-wide write access cannot be scoped to a single repo: DO NOT INSTALL.**
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
## Rollback Path
|
|
51
|
+
|
|
52
|
+
| Step | Owner | Done? |
|
|
53
|
+
|------|-------|-------|
|
|
54
|
+
| Identify uninstall path in GitHub App settings | _(name)_ | [ ] |
|
|
55
|
+
| Confirm the pilot repo reverts to normal after uninstall | _(name)_ | [ ] |
|
|
56
|
+
| Identify who has permissions to uninstall | _(name)_ | [ ] |
|
|
57
|
+
| Document uninstall steps here | _(fill in)_ | [ ] |
|
|
58
|
+
|
|
59
|
+
Uninstall steps:
|
|
60
|
+
```
|
|
61
|
+
1. _(fill in after confirming from GitHub App settings)_
|
|
62
|
+
2.
|
|
63
|
+
3.
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
---
|
|
67
|
+
|
|
68
|
+
## Safety Settings to Verify Before First PR
|
|
69
|
+
|
|
70
|
+
- [ ] SDLC Genius comments are visible but not blocking (no required status checks set)
|
|
71
|
+
- [ ] The app cannot merge PRs automatically
|
|
72
|
+
- [ ] The app cannot push commits to the repo
|
|
73
|
+
- [ ] A pilot owner has verified the first comment output before telling others to use it
|
|
74
|
+
|
|
75
|
+
---
|
|
76
|
+
|
|
77
|
+
## Rollback Owner
|
|
78
|
+
|
|
79
|
+
| Role | Name |
|
|
80
|
+
|------|------|
|
|
81
|
+
| Pilot owner (decision to install) | _(fill in)_ |
|
|
82
|
+
| Uninstall owner (authorized to remove) | _(fill in)_ |
|
|
83
|
+
| Privacy review owner | _(fill in)_ |
|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+
## Post-Pilot Disposition
|
|
88
|
+
|
|
89
|
+
At the end of the pilot, one of the following applies:
|
|
90
|
+
|
|
91
|
+
- [ ] **Keep** — update boundary doc, promote to template
|
|
92
|
+
- [ ] **Keep with limits** — update scope in boundary doc, document narrow use
|
|
93
|
+
- [ ] **Remove** — uninstall, archive this checklist, record reason in `plans/70.1-RESULT-sdlc-genius-pilot.md`
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
# SDLC Genius — Pilot Evidence Log
|
|
2
|
+
|
|
3
|
+
> Created: 2026-04-02
|
|
4
|
+
> Status: template — fill during pilot
|
|
5
|
+
> Purpose: Record concrete PR review samples for final evaluation
|
|
6
|
+
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
## How to Use This File
|
|
10
|
+
|
|
11
|
+
For each PR where SDLC Genius commented during the pilot:
|
|
12
|
+
|
|
13
|
+
1. Copy one sample block below
|
|
14
|
+
2. Fill in the PR details and SDLC Genius output
|
|
15
|
+
3. Score each axis using the rubric in `sdlc-genius-eval-matrix.md`
|
|
16
|
+
4. Record the comparison against AIOSON artifacts
|
|
17
|
+
5. Write a 1-line decision: keep / tune / reject
|
|
18
|
+
|
|
19
|
+
---
|
|
20
|
+
|
|
21
|
+
## Sample Block Template
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
### PR #N — [short description of change]
|
|
25
|
+
|
|
26
|
+
**Date:** YYYY-MM-DD
|
|
27
|
+
**Repo:** [repo name]
|
|
28
|
+
**Feature slug (if any):** [slug or none]
|
|
29
|
+
|
|
30
|
+
**Most useful SDLC Genius comment:**
|
|
31
|
+
> [paste comment]
|
|
32
|
+
|
|
33
|
+
**Least useful SDLC Genius comment:**
|
|
34
|
+
> [paste comment]
|
|
35
|
+
|
|
36
|
+
**Total SDLC Genius comments on this PR:** N
|
|
37
|
+
|
|
38
|
+
**Axis scores (0–3 each):**
|
|
39
|
+
- Relevance:
|
|
40
|
+
- Signal:
|
|
41
|
+
- Duplication:
|
|
42
|
+
- Actionability:
|
|
43
|
+
- Traceability:
|
|
44
|
+
- Noise risk:
|
|
45
|
+
- **Total:** /18
|
|
46
|
+
|
|
47
|
+
**AIOSON comparison:**
|
|
48
|
+
- Did requirements-{slug}.md already cover the main SDLC Genius point? Yes / No / Partial
|
|
49
|
+
- Did spec-{slug}.md already cover it? Yes / No / Partial
|
|
50
|
+
- Did SDLC Genius catch something AIOSON missed? Yes / No
|
|
51
|
+
- Did SDLC Genius contradict a spec decision? Yes / No — if yes, describe:
|
|
52
|
+
|
|
53
|
+
**Decision:** keep / tune / reject
|
|
54
|
+
**Reason:** [1 line]
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
---
|
|
58
|
+
|
|
59
|
+
## PR Samples
|
|
60
|
+
|
|
61
|
+
_(Empty — fill during pilot)_
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
|
|
65
|
+
## Running Totals
|
|
66
|
+
|
|
67
|
+
| PR | Score | Noise-dominated? | Spec contradiction? |
|
|
68
|
+
|----|-------|-----------------|---------------------|
|
|
69
|
+
| #1 | /18 | | |
|
|
70
|
+
| #2 | /18 | | |
|
|
71
|
+
| #3 | /18 | | |
|
|
72
|
+
| #4 | /18 | | |
|
|
73
|
+
| #5 | /18 | | |
|
|
74
|
+
| **Average** | /18 | | |
|
|
75
|
+
|
|
76
|
+
---
|
|
77
|
+
|
|
78
|
+
## Preliminary Conclusion
|
|
79
|
+
|
|
80
|
+
_(Fill after 5+ PRs — apply criteria from `sdlc-genius-eval-matrix.md`)_
|
|
81
|
+
|
|
82
|
+
- Average score: /18
|
|
83
|
+
- Noise-dominated PRs: / tested
|
|
84
|
+
- Spec contradictions:
|
|
85
|
+
- Suggested outcome: A / B / C
|
|
86
|
+
- Next step: write `plans/70.1-RESULT-sdlc-genius-pilot.md`
|
package/docs/pt/README.md
CHANGED
|
@@ -25,6 +25,9 @@ Bem-vindo à documentação em português do AIOSON — um framework leve de age
|
|
|
25
25
|
| [Cache de Contexto](./cache-de-contexto.md) | Salvar snapshots de contexto e restaurar entre sessões |
|
|
26
26
|
| [Sandbox de Execução](./sandbox.md) | Executar comandos com timeout, redação de secrets e summarização de output |
|
|
27
27
|
| [Agent Sharding](./agent-sharding.md) | Carregar apenas as seções relevantes de instruções de agente para uma tarefa específica |
|
|
28
|
+
| [Spec & Learnings Pipeline](./spec-learnings-pipeline.md) | Sincronizar specs Markdown com o SQLite, exportar learnings para brains e acompanhar progresso de features |
|
|
29
|
+
| [Devlog Pipeline](./devlog-pipeline.md) | Processar devlogs manuais dos agentes, sincronizar artifacts/learnings/verdict com o SQLite e exportar para brains |
|
|
30
|
+
| [Hooks & Session Guard](./hooks-session-guard.md) | Visibilidade automática no dashboard para Claude Code, Antigravity e Codex — instalar hooks, session:guard e diagnóstico |
|
|
28
31
|
|
|
29
32
|
## Documentação em inglês
|
|
30
33
|
|
package/docs/pt/agentes.md
CHANGED
|
@@ -666,6 +666,7 @@ Duração típica: dias a semanas. Análise completa, paralelismo, backlog forma
|
|
|
666
666
|
|
|
667
667
|
## Veja também
|
|
668
668
|
|
|
669
|
+
- [Fluxo de artefatos entre agentes](./fluxo-artefatos.md) — o que cada agente produz, o que @dev lê de fato e como o plano do Sheldon chega à implementação
|
|
669
670
|
- [Cenários completos com exemplos práticos](./cenarios.md)
|
|
670
671
|
- [Início rápido](./inicio-rapido.md)
|
|
671
672
|
- [Guia do engenheiro: pair programming com IA](./guia-engineer.md)
|