mega-brain-ai 1.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.
- package/.antigravity/README.md +46 -0
- package/.antigravity/rules/.gitkeep +0 -0
- package/.antigravity/rules/mega-brain.md +39 -0
- package/.claude/CLAUDE.md +172 -0
- package/.claude/agents.yaml +44 -0
- package/.claude/commands/agents.md +161 -0
- package/.claude/commands/ask.md +117 -0
- package/.claude/commands/benchmark.md +224 -0
- package/.claude/commands/chat.md +343 -0
- package/.claude/commands/compare.md +116 -0
- package/.claude/commands/conclave.md +196 -0
- package/.claude/commands/config.md +133 -0
- package/.claude/commands/create-agent.md +467 -0
- package/.claude/commands/debate.md +159 -0
- package/.claude/commands/documentation/create-architecture-documentation.md +175 -0
- package/.claude/commands/dossiers.md +180 -0
- package/.claude/commands/evolve.md +223 -0
- package/.claude/commands/extract-dna.md +172 -0
- package/.claude/commands/extract-knowledge.md +507 -0
- package/.claude/commands/gsd/add-phase.md +43 -0
- package/.claude/commands/gsd/add-tests.md +41 -0
- package/.claude/commands/gsd/add-todo.md +47 -0
- package/.claude/commands/gsd/audit-milestone.md +36 -0
- package/.claude/commands/gsd/check-todos.md +45 -0
- package/.claude/commands/gsd/cleanup.md +18 -0
- package/.claude/commands/gsd/complete-milestone.md +136 -0
- package/.claude/commands/gsd/debug.md +167 -0
- package/.claude/commands/gsd/discuss-phase.md +83 -0
- package/.claude/commands/gsd/execute-phase.md +41 -0
- package/.claude/commands/gsd/health.md +22 -0
- package/.claude/commands/gsd/help.md +22 -0
- package/.claude/commands/gsd/insert-phase.md +32 -0
- package/.claude/commands/gsd/join-discord.md +18 -0
- package/.claude/commands/gsd/list-phase-assumptions.md +46 -0
- package/.claude/commands/gsd/map-codebase.md +71 -0
- package/.claude/commands/gsd/new-milestone.md +44 -0
- package/.claude/commands/gsd/new-project.md +42 -0
- package/.claude/commands/gsd/pause-work.md +38 -0
- package/.claude/commands/gsd/plan-milestone-gaps.md +34 -0
- package/.claude/commands/gsd/plan-phase.md +45 -0
- package/.claude/commands/gsd/progress.md +24 -0
- package/.claude/commands/gsd/quick.md +41 -0
- package/.claude/commands/gsd/reapply-patches.md +110 -0
- package/.claude/commands/gsd/remove-phase.md +31 -0
- package/.claude/commands/gsd/research-phase.md +189 -0
- package/.claude/commands/gsd/resume-work.md +40 -0
- package/.claude/commands/gsd/set-profile.md +34 -0
- package/.claude/commands/gsd/settings.md +36 -0
- package/.claude/commands/gsd/update.md +37 -0
- package/.claude/commands/gsd/verify-work.md +38 -0
- package/.claude/commands/inbox.md +296 -0
- package/.claude/commands/ingest-empresa.md +191 -0
- package/.claude/commands/ingest.md +183 -0
- package/.claude/commands/jarvis-briefing.md +67 -0
- package/.claude/commands/jarvis-control.md +169 -0
- package/.claude/commands/jarvis-full.md +182 -0
- package/.claude/commands/jarvis.md +212 -0
- package/.claude/commands/ler-drive.md +212 -0
- package/.claude/commands/log.md +158 -0
- package/.claude/commands/loop.md +133 -0
- package/.claude/commands/loops.md +73 -0
- package/.claude/commands/mission-autopilot.md +538 -0
- package/.claude/commands/mission.md +353 -0
- package/.claude/commands/process-inbox.md +148 -0
- package/.claude/commands/process-jarvis.md +3036 -0
- package/.claude/commands/process-video.md +131 -0
- package/.claude/commands/rag-search.md +78 -0
- package/.claude/commands/resume.md +33 -0
- package/.claude/commands/save.md +38 -0
- package/.claude/commands/scan-inbox.md +125 -0
- package/.claude/commands/setup.md +99 -0
- package/.claude/commands/system-digest.md +243 -0
- package/.claude/commands/verify.md +182 -0
- package/.claude/commands/view-dna.md +169 -0
- package/.claude/get-shit-done/VERSION +1 -0
- package/.claude/get-shit-done/bin/gsd-tools.cjs +588 -0
- package/.claude/get-shit-done/bin/lib/commands.cjs +553 -0
- package/.claude/get-shit-done/bin/lib/config.cjs +162 -0
- package/.claude/get-shit-done/bin/lib/core.cjs +411 -0
- package/.claude/get-shit-done/bin/lib/frontmatter.cjs +299 -0
- package/.claude/get-shit-done/bin/lib/init.cjs +710 -0
- package/.claude/get-shit-done/bin/lib/milestone.cjs +216 -0
- package/.claude/get-shit-done/bin/lib/phase.cjs +871 -0
- package/.claude/get-shit-done/bin/lib/roadmap.cjs +298 -0
- package/.claude/get-shit-done/bin/lib/state.cjs +679 -0
- package/.claude/get-shit-done/bin/lib/template.cjs +222 -0
- package/.claude/get-shit-done/bin/lib/verify.cjs +773 -0
- package/.claude/get-shit-done/references/checkpoints.md +776 -0
- package/.claude/get-shit-done/references/continuation-format.md +249 -0
- package/.claude/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/.claude/get-shit-done/references/git-integration.md +248 -0
- package/.claude/get-shit-done/references/git-planning-commit.md +38 -0
- package/.claude/get-shit-done/references/model-profile-resolution.md +34 -0
- package/.claude/get-shit-done/references/model-profiles.md +92 -0
- package/.claude/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/.claude/get-shit-done/references/planning-config.md +196 -0
- package/.claude/get-shit-done/references/questioning.md +145 -0
- package/.claude/get-shit-done/references/tdd.md +263 -0
- package/.claude/get-shit-done/references/ui-brand.md +160 -0
- package/.claude/get-shit-done/references/verification-patterns.md +612 -0
- package/.claude/get-shit-done/templates/DEBUG.md +164 -0
- package/.claude/get-shit-done/templates/UAT.md +247 -0
- package/.claude/get-shit-done/templates/VALIDATION.md +76 -0
- package/.claude/get-shit-done/templates/codebase/architecture.md +255 -0
- package/.claude/get-shit-done/templates/codebase/concerns.md +310 -0
- package/.claude/get-shit-done/templates/codebase/conventions.md +307 -0
- package/.claude/get-shit-done/templates/codebase/integrations.md +280 -0
- package/.claude/get-shit-done/templates/codebase/stack.md +186 -0
- package/.claude/get-shit-done/templates/codebase/structure.md +285 -0
- package/.claude/get-shit-done/templates/codebase/testing.md +480 -0
- package/.claude/get-shit-done/templates/config.json +37 -0
- package/.claude/get-shit-done/templates/context.md +283 -0
- package/.claude/get-shit-done/templates/continue-here.md +78 -0
- package/.claude/get-shit-done/templates/debug-subagent-prompt.md +91 -0
- package/.claude/get-shit-done/templates/discovery.md +146 -0
- package/.claude/get-shit-done/templates/milestone-archive.md +123 -0
- package/.claude/get-shit-done/templates/milestone.md +115 -0
- package/.claude/get-shit-done/templates/phase-prompt.md +569 -0
- package/.claude/get-shit-done/templates/planner-subagent-prompt.md +117 -0
- package/.claude/get-shit-done/templates/project.md +184 -0
- package/.claude/get-shit-done/templates/requirements.md +231 -0
- package/.claude/get-shit-done/templates/research-project/ARCHITECTURE.md +204 -0
- package/.claude/get-shit-done/templates/research-project/FEATURES.md +147 -0
- package/.claude/get-shit-done/templates/research-project/PITFALLS.md +200 -0
- package/.claude/get-shit-done/templates/research-project/STACK.md +120 -0
- package/.claude/get-shit-done/templates/research-project/SUMMARY.md +170 -0
- package/.claude/get-shit-done/templates/research.md +552 -0
- package/.claude/get-shit-done/templates/retrospective.md +54 -0
- package/.claude/get-shit-done/templates/roadmap.md +202 -0
- package/.claude/get-shit-done/templates/state.md +176 -0
- package/.claude/get-shit-done/templates/summary-complex.md +59 -0
- package/.claude/get-shit-done/templates/summary-minimal.md +41 -0
- package/.claude/get-shit-done/templates/summary-standard.md +48 -0
- package/.claude/get-shit-done/templates/summary.md +248 -0
- package/.claude/get-shit-done/templates/user-setup.md +311 -0
- package/.claude/get-shit-done/templates/verification-report.md +322 -0
- package/.claude/get-shit-done/workflows/add-phase.md +111 -0
- package/.claude/get-shit-done/workflows/add-tests.md +350 -0
- package/.claude/get-shit-done/workflows/add-todo.md +157 -0
- package/.claude/get-shit-done/workflows/audit-milestone.md +297 -0
- package/.claude/get-shit-done/workflows/check-todos.md +176 -0
- package/.claude/get-shit-done/workflows/cleanup.md +152 -0
- package/.claude/get-shit-done/workflows/complete-milestone.md +763 -0
- package/.claude/get-shit-done/workflows/diagnose-issues.md +219 -0
- package/.claude/get-shit-done/workflows/discovery-phase.md +289 -0
- package/.claude/get-shit-done/workflows/discuss-phase.md +542 -0
- package/.claude/get-shit-done/workflows/execute-phase.md +449 -0
- package/.claude/get-shit-done/workflows/execute-plan.md +448 -0
- package/.claude/get-shit-done/workflows/health.md +156 -0
- package/.claude/get-shit-done/workflows/help.md +489 -0
- package/.claude/get-shit-done/workflows/insert-phase.md +129 -0
- package/.claude/get-shit-done/workflows/list-phase-assumptions.md +178 -0
- package/.claude/get-shit-done/workflows/map-codebase.md +315 -0
- package/.claude/get-shit-done/workflows/new-milestone.md +382 -0
- package/.claude/get-shit-done/workflows/new-project.md +1116 -0
- package/.claude/get-shit-done/workflows/pause-work.md +122 -0
- package/.claude/get-shit-done/workflows/plan-milestone-gaps.md +274 -0
- package/.claude/get-shit-done/workflows/plan-phase.md +569 -0
- package/.claude/get-shit-done/workflows/progress.md +381 -0
- package/.claude/get-shit-done/workflows/quick.md +453 -0
- package/.claude/get-shit-done/workflows/remove-phase.md +154 -0
- package/.claude/get-shit-done/workflows/research-phase.md +73 -0
- package/.claude/get-shit-done/workflows/resume-project.md +306 -0
- package/.claude/get-shit-done/workflows/set-profile.md +80 -0
- package/.claude/get-shit-done/workflows/settings.md +213 -0
- package/.claude/get-shit-done/workflows/transition.md +544 -0
- package/.claude/get-shit-done/workflows/update.md +219 -0
- package/.claude/get-shit-done/workflows/verify-phase.md +242 -0
- package/.claude/get-shit-done/workflows/verify-work.md +569 -0
- package/.claude/gsd-file-manifest.json +144 -0
- package/.claude/hooks/agent_creation_trigger.py +168 -0
- package/.claude/hooks/agent_index_updater.py +255 -0
- package/.claude/hooks/agent_memory_persister.py +203 -0
- package/.claude/hooks/claude_md_agent_sync.py +162 -0
- package/.claude/hooks/claude_md_guard.py +154 -0
- package/.claude/hooks/continuous_save.py +414 -0
- package/.claude/hooks/creation_validator.py +360 -0
- package/.claude/hooks/enforce_dual_location.py +501 -0
- package/.claude/hooks/enforce_plan_mode.py +220 -0
- package/.claude/hooks/gsd-check-update.js +62 -0
- package/.claude/hooks/gsd-context-monitor.js +122 -0
- package/.claude/hooks/gsd-statusline.js +108 -0
- package/.claude/hooks/inbox_age_alert.py +367 -0
- package/.claude/hooks/ledger_updater.py +303 -0
- package/.claude/hooks/memory_hints_injector.py +251 -0
- package/.claude/hooks/memory_updater.py +202 -0
- package/.claude/hooks/notification_system.py +115 -0
- package/.claude/hooks/pending_tracker.py +188 -0
- package/.claude/hooks/pipeline_checkpoint.py +583 -0
- package/.claude/hooks/post_batch_cascading.py +1740 -0
- package/.claude/hooks/post_tool_use.py +120 -0
- package/.claude/hooks/quality_watchdog.py +394 -0
- package/.claude/hooks/ralph_wiggum.py +286 -0
- package/.claude/hooks/session-source-sync.py +223 -0
- package/.claude/hooks/session_autosave_v2.py +1135 -0
- package/.claude/hooks/session_end.py +203 -0
- package/.claude/hooks/session_start.py +939 -0
- package/.claude/hooks/skill_indexer.py +48 -0
- package/.claude/hooks/skill_router.py +358 -0
- package/.claude/hooks/stop_hook_completeness.py +187 -0
- package/.claude/hooks/user_prompt_submit.py +125 -0
- package/.claude/package.json +1 -0
- package/.claude/rules/ANTHROPIC-STANDARDS.md +384 -0
- package/.claude/rules/CLAUDE-LITE.md +201 -0
- package/.claude/rules/RULE-GROUP-1.md +320 -0
- package/.claude/rules/RULE-GROUP-2.md +307 -0
- package/.claude/rules/RULE-GROUP-3.md +248 -0
- package/.claude/rules/RULE-GROUP-4.md +427 -0
- package/.claude/rules/RULE-GROUP-5.md +388 -0
- package/.claude/rules/RULE-GROUP-6.md +387 -0
- package/.claude/rules/RULE-GSD-MANDATORY.md +106 -0
- package/.claude/rules/agent-cognition.md +779 -0
- package/.claude/rules/agent-integrity.md +692 -0
- package/.claude/rules/epistemic-standards.md +333 -0
- package/.claude/rules/logging.md +53 -0
- package/.claude/rules/mcp-governance.md +128 -0
- package/.claude/rules/pipeline.md +60 -0
- package/.claude/rules/state-management.md +93 -0
- package/.claude/scripts/apply-tags.py +77 -0
- package/.claude/scripts/batch-extract-transcriptions.py +132 -0
- package/.claude/scripts/build-complete-index.py +250 -0
- package/.claude/scripts/build-planilha-index.py +170 -0
- package/.claude/scripts/complete-tag-matching.py +250 -0
- package/.claude/scripts/deduplicate-inbox.py +139 -0
- package/.claude/scripts/docx-xml-extractor.py +141 -0
- package/.claude/scripts/extract-docx-text.py +58 -0
- package/.claude/scripts/extract-single-transcription.py +74 -0
- package/.claude/scripts/extract_docx_from_gdrive.py +77 -0
- package/.claude/scripts/jarvis_orchestrator.py +5 -0
- package/.claude/scripts/organized-downloader.py +246 -0
- package/.claude/scripts/planilha-tagger.py +187 -0
- package/.claude/scripts/revert-tags.py +70 -0
- package/.claude/scripts/source-sync.py +265 -0
- package/.claude/scripts/tag-inbox-files.py +276 -0
- package/.claude/scripts/tag-inbox-v2.py +253 -0
- package/.claude/scripts/test-extraction.py +35 -0
- package/.claude/scripts/test-full-extraction.py +74 -0
- package/.claude/scripts/validate_cascading_integrity.py +409 -0
- package/.claude/settings.json +215 -0
- package/.claude/skills/DETECTION-PROTOCOL.md +217 -0
- package/.claude/skills/README.md +240 -0
- package/.claude/skills/SKILL-REGISTRY.md +283 -0
- package/.claude/skills/SKILL-SUGGESTIONS.md +114 -0
- package/.claude/skills/_TEMPLATES/SKILL-WRITER-GUIDE.md +385 -0
- package/.claude/skills/agent-creation/SKILL.md +374 -0
- package/.claude/skills/ask-company/SKILL.md +198 -0
- package/.claude/skills/brainstorming/SKILL.md +72 -0
- package/.claude/skills/chronicler/SKILL.md +146 -0
- package/.claude/skills/chronicler/chronicler_core.py +468 -0
- package/.claude/skills/code-review/SKILL.md +160 -0
- package/.claude/skills/convert-to-company-docs/SKILL.md +68 -0
- package/.claude/skills/convert-to-company-docs/convert.py +532 -0
- package/.claude/skills/dispatching-parallel-agents/SKILL.md +193 -0
- package/.claude/skills/docs-megabrain/SKILL.md +251 -0
- package/.claude/skills/executing-plans/SKILL.md +114 -0
- package/.claude/skills/executor/SKILL.md +161 -0
- package/.claude/skills/fase-2-5-tagging/SKILL.md +182 -0
- package/.claude/skills/feature-dev/SKILL.md +154 -0
- package/.claude/skills/frontend-design/SKILL.md +165 -0
- package/.claude/skills/gdrive-transcription-downloader/SKILL.md +249 -0
- package/.claude/skills/gemini-fallback/SKILL.md +67 -0
- package/.claude/skills/gemini-fallback/gemini_fetch.py +0 -0
- package/.claude/skills/gha/SKILL.md +96 -0
- package/.claude/skills/gha/gha_diagnostic.py +227 -0
- package/.claude/skills/github-workflow/SKILL.md +190 -0
- package/.claude/skills/hookify/SKILL.md +134 -0
- package/.claude/skills/hybrid-source-reading/SKILL.md +265 -0
- package/.claude/skills/jarvis/SKILL.md +546 -0
- package/.claude/skills/jarvis-briefing/SKILL.md +340 -0
- package/.claude/skills/knowledge-extraction/SKILL.md +318 -0
- package/.claude/skills/ler-planilha/SKILL.md +281 -0
- package/.claude/skills/pipeline-jarvis/SKILL.md +430 -0
- package/.claude/skills/plugin-dev/SKILL.md +176 -0
- package/.claude/skills/pr-review-toolkit/SKILL.md +178 -0
- package/.claude/skills/process-company-inbox/SKILL.md +183 -0
- package/.claude/skills/python-megabrain/SKILL.md +323 -0
- package/.claude/skills/resume/SKILL.md +61 -0
- package/.claude/skills/save/SKILL.md +87 -0
- package/.claude/skills/skill-creator-internal/SKILL.md +186 -0
- package/.claude/skills/skill-writer/SKILL.md +153 -0
- package/.claude/skills/skill-writer/examples.md +191 -0
- package/.claude/skills/skill-writer/troubleshooting.md +205 -0
- package/.claude/skills/smart-download-tagger/SKILL.md +148 -0
- package/.claude/skills/source-sync/SKILL.md +240 -0
- package/.claude/skills/sync-docs/SKILL.md +193 -0
- package/.claude/skills/sync-docs/config.json +37 -0
- package/.claude/skills/sync-docs/gdrive_sync.py +358 -0
- package/.claude/skills/sync-docs/reauth.py +71 -0
- package/.claude/skills/using-superpowers/SKILL.md +105 -0
- package/.claude/skills/verification-before-completion/SKILL.md +130 -0
- package/.claude/skills/verify/SKILL.md +154 -0
- package/.claude/skills/verify/verify_runner.py +0 -0
- package/.claude/skills/verify-6-levels/SKILL.md +234 -0
- package/.claude/skills/writing-plans/SKILL.md +184 -0
- package/.claude/templates/BATCH-LOG-TEMPLATE.md +221 -0
- package/.claudeignore +9 -0
- package/.cursor/agents.yaml +44 -0
- package/.cursor/rules/mega-brain.md +39 -0
- package/.gitattributes +19 -0
- package/.github/CODEOWNERS +8 -0
- package/.github/ISSUE_TEMPLATE/agent.md +96 -0
- package/.github/ISSUE_TEMPLATE/bug.md +67 -0
- package/.github/ISSUE_TEMPLATE/feature.md +56 -0
- package/.github/ISSUE_TEMPLATE/pipeline.md +70 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +30 -0
- package/.github/assets/banner.svg +152 -0
- package/.github/assets/logo-dark.svg +79 -0
- package/.github/assets/social-preview.png +0 -0
- package/.github/layer1-allowlist.txt +196 -0
- package/.github/layer2-manifest.txt +42 -0
- package/.github/layer3-manifest.txt +94 -0
- package/.github/workflows/claude-code-pr.yml +198 -0
- package/.github/workflows/claude-code-review.yml +57 -0
- package/.github/workflows/claude.yml +76 -0
- package/.github/workflows/publish-pro.yml +72 -0
- package/.github/workflows/publish.yml +86 -0
- package/.github/workflows/verification.yml +251 -0
- package/.gitignore +244 -0
- package/.gitleaks.toml +118 -0
- package/.windsurf/agents.yaml +44 -0
- package/.windsurf/rules/mega-brain.md +39 -0
- package/CONTRIBUTING.md +62 -0
- package/QUICK-START.md +231 -0
- package/README.md +168 -0
- package/agents/AGENT-INDEX.yaml +107 -0
- package/agents/MASTER-AGENT.md +612 -0
- package/agents/README.md +48 -0
- package/agents/_templates/INDEX.md +741 -0
- package/agents/_templates/TEMPLATE-AGENT-MD-ULTRA-ROBUSTO-V3.md +2399 -0
- package/agents/boardroom/CHECKLIST-MASTER.md +281 -0
- package/agents/boardroom/INTEGRATION-GUIDE.md +406 -0
- package/agents/boardroom/README.md +238 -0
- package/agents/boardroom/config/BOARDROOM-CONFIG.md +186 -0
- package/agents/boardroom/config/TTS-INTEGRATION.md +258 -0
- package/agents/boardroom/config/VOICE-PROFILES.md +624 -0
- package/agents/boardroom/scripts/audio_generator.py +375 -0
- package/agents/boardroom/scripts/audio_generator_edge.py +353 -0
- package/agents/boardroom/scripts/jarvis_boardroom_hook.py +415 -0
- package/agents/boardroom/scripts/notebooklm_generator.py +578 -0
- package/agents/boardroom/templates/EPISODE-TEMPLATE.md +367 -0
- package/agents/boardroom/templates/scene-templates/SCENE-AGENT-DEBATE.md +252 -0
- package/agents/boardroom/templates/scene-templates/SCENE-COUNCIL.md +270 -0
- package/agents/boardroom/templates/scene-templates/SCENE-DNA-CONSULTATION.md +126 -0
- package/agents/boardroom/templates/scene-templates/SCENE-QUESTION.md +174 -0
- package/agents/boardroom/workflows/WORKFLOW-AUDIO-GENERATION.md +421 -0
- package/agents/conclave/CRITIC.md +197 -0
- package/agents/conclave/DEVILS-ADVOCATE.md +274 -0
- package/agents/conclave/README.md +35 -0
- package/agents/conclave/SYNTHESIZER.md +293 -0
- package/agents/conclave/advogado-do-diabo/AGENT.md +502 -0
- package/agents/conclave/advogado-do-diabo/SOUL.md +100 -0
- package/agents/conclave/critico-metodologico/AGENT.md +683 -0
- package/agents/conclave/critico-metodologico/SOUL.md +107 -0
- package/agents/conclave/sintetizador/AGENT.md +571 -0
- package/agents/conclave/sintetizador/SOUL.md +94 -0
- package/agents/constitution/BASE-CONSTITUTION.md +254 -0
- package/agents/persona-registry.yaml +300 -0
- package/agents/sua-empresa/.gitkeep +0 -0
- package/agents/sua-empresa/README.md +44 -0
- package/agents/sua-empresa/_example/jds/EXAMPLE-JD.md +42 -0
- package/agents/sua-empresa/_example/org/EXAMPLE-ORG.md +32 -0
- package/agents/sua-empresa/_example/roles/EXAMPLE-ROLE.md +38 -0
- package/artifacts/README.md +11 -0
- package/artifacts/canonical/.gitkeep +0 -0
- package/artifacts/chunks/.gitkeep +0 -0
- package/artifacts/insights/.gitkeep +0 -0
- package/artifacts/narratives/.gitkeep +0 -0
- package/bin/cli.js +2 -0
- package/bin/lib/ascii-art.js +202 -0
- package/bin/lib/feature-gate.js +46 -0
- package/bin/lib/installer.js +593 -0
- package/bin/lib/license.js +59 -0
- package/bin/lib/pro-commands.js +75 -0
- package/bin/lib/setup-wizard.js +547 -0
- package/bin/lib/validate-email.js +113 -0
- package/bin/mega-brain.js +136 -0
- package/bin/pre-publish-gate.js +229 -0
- package/bin/push.js +1056 -0
- package/bin/templates/env.example +27 -0
- package/bin/utils/pro-detector.js +50 -0
- package/bin/validate-package.js +190 -0
- package/core/__init__.py +2 -0
- package/core/glossary/INDEX.md +63 -0
- package/core/glossary/digital.md +243 -0
- package/core/glossary/finance.md +49 -0
- package/core/glossary/marketing.md +69 -0
- package/core/glossary/operations.md +50 -0
- package/core/glossary/sales.md +690 -0
- package/core/intelligence/__init__.py +41 -0
- package/core/intelligence/agent_trigger.py +468 -0
- package/core/intelligence/audit_layers.py +491 -0
- package/core/intelligence/autonomous_processor.py +796 -0
- package/core/intelligence/bootstrap_registry.py +550 -0
- package/core/intelligence/business_model_detector.py +476 -0
- package/core/intelligence/dossier_trigger.py +336 -0
- package/core/intelligence/entity_normalizer.py +565 -0
- package/core/intelligence/org_chain_detector.py +411 -0
- package/core/intelligence/review_dashboard.py +338 -0
- package/core/intelligence/role_detector.py +855 -0
- package/core/intelligence/session_autosave.py +46 -0
- package/core/intelligence/skill_generator.py +601 -0
- package/core/intelligence/sow_generator.py +711 -0
- package/core/intelligence/sync_package_files.py +504 -0
- package/core/intelligence/task_orchestrator.py +780 -0
- package/core/intelligence/theme_analyzer.py +562 -0
- package/core/intelligence/tool_discovery.py +432 -0
- package/core/intelligence/validate_json_integrity.py +106 -0
- package/core/intelligence/validate_layers.py +310 -0
- package/core/intelligence/verify_classifications.py +94 -0
- package/core/intelligence/viability_scorer.py +592 -0
- package/core/jarvis/02-JARVIS-SOUL.md +390 -0
- package/core/jarvis/03-JARVIS-DNA.yaml +312 -0
- package/core/jarvis/AGENT.md +191 -0
- package/core/jarvis/agent-creator/AGENT.md +199 -0
- package/core/jarvis/agent-creator/SOUL.md +82 -0
- package/core/jarvis/agent-creator/tasks/create-agent.md +133 -0
- package/core/jarvis/agent-creator/tasks/sync-agents.md +100 -0
- package/core/jarvis/agent-creator/workflows/wf-create-agent.yaml +110 -0
- package/core/jarvis/agent-creator/workflows/wf-pipeline-trigger.yaml +111 -0
- package/core/jarvis/autonomous/benchmark/AGENT.md +347 -0
- package/core/jarvis/autonomous/benchmark/SOUL.md +78 -0
- package/core/jarvis/autonomous/critic/AGENT.md +324 -0
- package/core/jarvis/autonomous/critic/SOUL.md +78 -0
- package/core/jarvis/autonomous/evolver/AGENT.md +294 -0
- package/core/jarvis/autonomous/evolver/SOUL.md +85 -0
- package/core/jarvis/autonomous/playbook-generator/AGENT.md +399 -0
- package/core/jarvis/autonomous/playbook-generator/SOUL.md +80 -0
- package/core/patterns/_ROLE_PATTERNS.yaml +547 -0
- package/core/patterns/quality_gates.yaml +259 -0
- package/core/patterns/trigger_config.yaml +193 -0
- package/core/schemas/SCHEMA-INDEX.md +94 -0
- package/core/schemas/canonical-map.schema.json +98 -0
- package/core/schemas/chunks-state.schema.json +131 -0
- package/core/schemas/decisions-registry.schema.json +120 -0
- package/core/schemas/file-registry.schema.json +69 -0
- package/core/schemas/insights-state.schema.json +111 -0
- package/core/schemas/narratives-state.schema.json +150 -0
- package/core/tasks/CHANGELOG.md +55 -0
- package/core/tasks/TASK-REGISTRY.md +113 -0
- package/core/tasks/_templates/task-tmpl.md +105 -0
- package/core/tasks/analyze-themes.md +84 -0
- package/core/tasks/detect-role.md +82 -0
- package/core/tasks/extract-dna.md +114 -0
- package/core/tasks/normalize-entities.md +82 -0
- package/core/tasks/process-batch.md +111 -0
- package/core/tasks/validate-cascade.md +105 -0
- package/core/templates/README.md +27 -0
- package/core/templates/agents/dna-config-template.yaml +181 -0
- package/core/templates/agents/enrichment-protocol.md +408 -0
- package/core/templates/agents/memory-template.md +567 -0
- package/core/templates/agents/reasoning-model.md +331 -0
- package/core/templates/agents/soul-template.md +416 -0
- package/core/templates/agents/template-evolution.md +544 -0
- package/core/templates/debates/CONCLAVE-LOG-TEMPLATE-v2.md +309 -0
- package/core/templates/debates/conclave-log-template.md +309 -0
- package/core/templates/debates/conclave-protocol.md +518 -0
- package/core/templates/debates/debate-dynamics-config.yaml +322 -0
- package/core/templates/debates/debate-dynamics.md +613 -0
- package/core/templates/debates/debate-protocol.md +323 -0
- package/core/templates/logs/LOG-TEMPLATES.md +1068 -0
- package/core/templates/logs/batch-visual-template.md +841 -0
- package/core/templates/logs/log-structure.md +65 -0
- package/core/templates/logs/visual-diff.md +159 -0
- package/core/templates/phases/dossier-compilation.md +790 -0
- package/core/templates/phases/narrative-metabolism.md +292 -0
- package/core/templates/phases/narrative-synthesis.md +278 -0
- package/core/templates/phases/phase4-checkpoint.md +146 -0
- package/core/templates/phases/prompt-1.1-chunking.md +154 -0
- package/core/templates/phases/prompt-1.2-entity-resolution.md +186 -0
- package/core/templates/phases/prompt-2.1-dna-tags.md +208 -0
- package/core/templates/phases/prompt-2.1-insight-extraction.md +191 -0
- package/core/templates/phases/prompt-3.1-narrative.md +331 -0
- package/core/templates/phases/sources-compilation.md +340 -0
- package/core/workflows/PIPELINE-JARVIS-DOCS.md +606 -0
- package/core/workflows/wf-conclave.yaml +139 -0
- package/core/workflows/wf-extract-dna.yaml +158 -0
- package/core/workflows/wf-ingest.yaml +88 -0
- package/core/workflows/wf-pipeline-full.yaml +138 -0
- package/docs/API-KEYS-GUIDE.md +372 -0
- package/docs/INTEGRATION-POINTS.md +501 -0
- package/docs/LAYERS.md +403 -0
- package/docs/PLAN-MODE-PROTOCOL.md +388 -0
- package/docs/RESTORE-AND-INDEX.md +203 -0
- package/docs/TAG-RESOLVER-IMPLEMENTATION.md +597 -0
- package/docs/conselho.md +337 -0
- package/docs/context7-readme.md +28 -0
- package/docs/jarvis-logging-protocol.md +380 -0
- package/docs/pipeline-completa-v4.md +1315 -0
- package/docs/prompts/meta_agente_mapeamento_processos.md +297 -0
- package/docs/quick-start.md +197 -0
- package/docs/readme-ralph-cascateamento.md +207 -0
- package/docs/template-master.md +727 -0
- package/docs/templates/phase5/IMPLEMENTATION-GUIDE.md +355 -0
- package/docs/templates/phase5/MOGA-BRAIN-PHASE5-TEMPLATES.md +1284 -0
- package/docs/templates/phase5/README.md +165 -0
- package/docs/workflow-continuous-claude.md +2232 -0
- package/inbox/.gitkeep +0 -0
- package/inbox/README.md +15 -0
- package/knowledge/NAVIGATION-MAP.json +292 -0
- package/knowledge/README.md +11 -0
- package/knowledge/dna/.gitkeep +0 -0
- package/knowledge/dossiers/persons/.gitkeep +0 -0
- package/knowledge/dossiers/system/.gitkeep +0 -0
- package/knowledge/dossiers/themes/.gitkeep +0 -0
- package/knowledge/playbooks/.gitkeep +0 -0
- package/knowledge/sources/.gitkeep +0 -0
- package/logs/.gitkeep +0 -0
- package/logs/README.md +11 -0
- package/package.json +180 -0
- package/requirements.txt +4 -0
|
@@ -0,0 +1,409 @@
|
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Validate Cascading Integrity - Mega Brain Pipeline Hardening
|
|
4
|
+
|
|
5
|
+
Validates that batch cascading actually updated destination files.
|
|
6
|
+
|
|
7
|
+
Usage:
|
|
8
|
+
python3 validate_cascading_integrity.py BATCH-050
|
|
9
|
+
python3 validate_cascading_integrity.py BATCH-050 --json
|
|
10
|
+
python3 validate_cascading_integrity.py --all
|
|
11
|
+
python3 validate_cascading_integrity.py --json # validates all batches
|
|
12
|
+
|
|
13
|
+
Exit codes:
|
|
14
|
+
0 - PASSED or WARNING
|
|
15
|
+
1 - FAILED
|
|
16
|
+
"""
|
|
17
|
+
|
|
18
|
+
import json
|
|
19
|
+
import re
|
|
20
|
+
import sys
|
|
21
|
+
from datetime import datetime
|
|
22
|
+
from pathlib import Path
|
|
23
|
+
from typing import Dict, List, Optional, Tuple
|
|
24
|
+
|
|
25
|
+
# ============================================================================
|
|
26
|
+
# CONFIGURATION
|
|
27
|
+
# ============================================================================
|
|
28
|
+
|
|
29
|
+
SCRIPT_DIR = Path(__file__).parent
|
|
30
|
+
PROJECT_ROOT = SCRIPT_DIR.parent.parent
|
|
31
|
+
LOGS_PATH = PROJECT_ROOT / "logs"
|
|
32
|
+
BATCHES_PATH = LOGS_PATH / "batches"
|
|
33
|
+
AGENTS_PATH = PROJECT_ROOT / "agents"
|
|
34
|
+
PLAYBOOKS_PATH = PROJECT_ROOT / "knowledge" / "playbooks"
|
|
35
|
+
DOSSIERS_PATH = PROJECT_ROOT / "knowledge" / "dossiers"
|
|
36
|
+
DNA_PATH = PROJECT_ROOT / "knowledge" / "dna"
|
|
37
|
+
VERIFIED_LOG = LOGS_PATH / "cascading-verified.jsonl"
|
|
38
|
+
|
|
39
|
+
# ============================================================================
|
|
40
|
+
# DESTINATION EXTRACTION
|
|
41
|
+
# ============================================================================
|
|
42
|
+
|
|
43
|
+
def extract_destinations_from_batch(content: str) -> Dict[str, List[str]]:
|
|
44
|
+
"""
|
|
45
|
+
Extract destination files from batch content.
|
|
46
|
+
|
|
47
|
+
Parses ASCII box format with emojis:
|
|
48
|
+
🤖 AGENTES A ALIMENTAR
|
|
49
|
+
📘 PLAYBOOKS IMPACTADOS
|
|
50
|
+
🧬 DNAs ENRIQUECIDOS
|
|
51
|
+
📁 DOSSIERS
|
|
52
|
+
|
|
53
|
+
Returns:
|
|
54
|
+
Dict with keys: agents, playbooks, dnas, dossiers
|
|
55
|
+
"""
|
|
56
|
+
destinations = {
|
|
57
|
+
"agents": [],
|
|
58
|
+
"playbooks": [],
|
|
59
|
+
"dnas": [],
|
|
60
|
+
"dossiers": []
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
# Pattern: Extract lines starting with • followed by filename
|
|
64
|
+
# Handles both: • AGENT-SALES-LEADER.md and • DNA-CG.md (+42 elementos)
|
|
65
|
+
item_pattern = re.compile(r'^\s*[•·]\s*([A-Z][A-Za-z0-9_-]+\.md|DNA-[A-Z]+\.(?:md|yaml))', re.MULTILINE)
|
|
66
|
+
|
|
67
|
+
# Find sections
|
|
68
|
+
sections = {
|
|
69
|
+
"agents": ["AGENTES A ALIMENTAR", "AGENTES:", "🤖"],
|
|
70
|
+
"playbooks": ["PLAYBOOKS IMPACTADOS", "PLAYBOOKS:", "📘"],
|
|
71
|
+
"dnas": ["DNAs ENRIQUECIDOS", "DNA:", "🧬"],
|
|
72
|
+
"dossiers": ["DOSSIERS", "📁"]
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
for dest_type, markers in sections.items():
|
|
76
|
+
for marker in markers:
|
|
77
|
+
# Find section start
|
|
78
|
+
marker_idx = content.find(marker)
|
|
79
|
+
if marker_idx == -1:
|
|
80
|
+
continue
|
|
81
|
+
|
|
82
|
+
# Extract text from marker to next section or box end
|
|
83
|
+
section_start = marker_idx
|
|
84
|
+
section_end = content.find("│", section_start + len(marker))
|
|
85
|
+
if section_end == -1:
|
|
86
|
+
section_end = content.find("└", section_start)
|
|
87
|
+
if section_end == -1:
|
|
88
|
+
section_end = len(content)
|
|
89
|
+
|
|
90
|
+
section_text = content[section_start:section_end]
|
|
91
|
+
|
|
92
|
+
# Extract items
|
|
93
|
+
for match in item_pattern.finditer(section_text):
|
|
94
|
+
filename = match.group(1).strip()
|
|
95
|
+
if filename and filename not in destinations[dest_type]:
|
|
96
|
+
destinations[dest_type].append(filename)
|
|
97
|
+
|
|
98
|
+
return destinations
|
|
99
|
+
|
|
100
|
+
# ============================================================================
|
|
101
|
+
# PATH RESOLUTION
|
|
102
|
+
# ============================================================================
|
|
103
|
+
|
|
104
|
+
def resolve_agent_path(agent_name: str) -> Optional[Path]:
|
|
105
|
+
"""
|
|
106
|
+
Resolve agent name to MEMORY.md or AGENT.md path.
|
|
107
|
+
|
|
108
|
+
Searches in:
|
|
109
|
+
- agents/cargo/*/
|
|
110
|
+
- agents/minds/*/
|
|
111
|
+
- agents/boardroom/*/
|
|
112
|
+
- agents/sua-empresa/*/
|
|
113
|
+
"""
|
|
114
|
+
if not AGENTS_PATH.exists():
|
|
115
|
+
return None
|
|
116
|
+
|
|
117
|
+
# Remove extension if present
|
|
118
|
+
base_name = agent_name.replace(".md", "")
|
|
119
|
+
|
|
120
|
+
# Search patterns
|
|
121
|
+
search_dirs = ["cargo", "minds", "boardroom", "sua-empresa"]
|
|
122
|
+
|
|
123
|
+
for category in search_dirs:
|
|
124
|
+
category_path = AGENTS_PATH / category
|
|
125
|
+
if not category_path.exists():
|
|
126
|
+
continue
|
|
127
|
+
|
|
128
|
+
# Search in subdirectories
|
|
129
|
+
for subdir in category_path.iterdir():
|
|
130
|
+
if not subdir.is_dir():
|
|
131
|
+
continue
|
|
132
|
+
|
|
133
|
+
# Check MEMORY.md first (preferred)
|
|
134
|
+
memory_path = subdir / "MEMORY.md"
|
|
135
|
+
if memory_path.exists():
|
|
136
|
+
return memory_path
|
|
137
|
+
|
|
138
|
+
# Check AGENT.md
|
|
139
|
+
agent_path = subdir / "AGENT.md"
|
|
140
|
+
if agent_path.exists():
|
|
141
|
+
return agent_path
|
|
142
|
+
|
|
143
|
+
return None
|
|
144
|
+
|
|
145
|
+
def resolve_playbook_path(playbook_name: str) -> Optional[Path]:
|
|
146
|
+
"""Resolve playbook name to path in knowledge/playbooks/"""
|
|
147
|
+
if not PLAYBOOKS_PATH.exists():
|
|
148
|
+
return None
|
|
149
|
+
|
|
150
|
+
# Try exact match
|
|
151
|
+
exact = PLAYBOOKS_PATH / playbook_name
|
|
152
|
+
if exact.exists():
|
|
153
|
+
return exact
|
|
154
|
+
|
|
155
|
+
# Try pattern match
|
|
156
|
+
pattern = playbook_name.replace(".md", "")
|
|
157
|
+
for path in PLAYBOOKS_PATH.glob(f"{pattern}*.md"):
|
|
158
|
+
return path
|
|
159
|
+
|
|
160
|
+
return None
|
|
161
|
+
|
|
162
|
+
def resolve_dossier_path(dossier_name: str) -> Optional[Path]:
|
|
163
|
+
"""Resolve dossier name to path in knowledge/dossiers/**/"""
|
|
164
|
+
if not DOSSIERS_PATH.exists():
|
|
165
|
+
return None
|
|
166
|
+
|
|
167
|
+
# Try exact match in any subdirectory
|
|
168
|
+
pattern = dossier_name.replace(".md", "")
|
|
169
|
+
for path in DOSSIERS_PATH.rglob(f"{pattern}*.md"):
|
|
170
|
+
return path
|
|
171
|
+
|
|
172
|
+
return None
|
|
173
|
+
|
|
174
|
+
def resolve_dna_path(dna_name: str) -> Optional[Path]:
|
|
175
|
+
"""Resolve DNA name to path in knowledge/dna/persons/*/DNA.yaml"""
|
|
176
|
+
if not DNA_PATH.exists():
|
|
177
|
+
return None
|
|
178
|
+
|
|
179
|
+
# Extract person code (e.g., DNA-CG.md -> CG)
|
|
180
|
+
match = re.match(r'DNA-([A-Z]+)', dna_name)
|
|
181
|
+
if not match:
|
|
182
|
+
return None
|
|
183
|
+
|
|
184
|
+
person_code = match.group(1).lower()
|
|
185
|
+
|
|
186
|
+
# Search in persons directory
|
|
187
|
+
persons_path = DNA_PATH / "persons"
|
|
188
|
+
if not persons_path.exists():
|
|
189
|
+
return None
|
|
190
|
+
|
|
191
|
+
for person_dir in persons_path.iterdir():
|
|
192
|
+
if not person_dir.is_dir():
|
|
193
|
+
continue
|
|
194
|
+
|
|
195
|
+
if person_code in person_dir.name.lower():
|
|
196
|
+
dna_file = person_dir / "DNA.yaml"
|
|
197
|
+
if dna_file.exists():
|
|
198
|
+
return dna_file
|
|
199
|
+
|
|
200
|
+
return None
|
|
201
|
+
|
|
202
|
+
# ============================================================================
|
|
203
|
+
# VALIDATION LOGIC
|
|
204
|
+
# ============================================================================
|
|
205
|
+
|
|
206
|
+
def check_file_references_batch(file_path: Path, batch_id: str) -> bool:
|
|
207
|
+
"""Check if file content references the batch ID."""
|
|
208
|
+
try:
|
|
209
|
+
content = file_path.read_text(encoding='utf-8')
|
|
210
|
+
return batch_id in content
|
|
211
|
+
except Exception:
|
|
212
|
+
return False
|
|
213
|
+
|
|
214
|
+
def validate_batch_integrity(batch_id: str) -> Dict:
|
|
215
|
+
"""
|
|
216
|
+
Validate cascading integrity for a batch.
|
|
217
|
+
|
|
218
|
+
Returns:
|
|
219
|
+
Dict with: status, batch_id, errors, warnings, destinations_detail
|
|
220
|
+
"""
|
|
221
|
+
result = {
|
|
222
|
+
"batch_id": batch_id,
|
|
223
|
+
"status": "PASSED",
|
|
224
|
+
"errors": [],
|
|
225
|
+
"warnings": [],
|
|
226
|
+
"destinations_total": 0,
|
|
227
|
+
"destinations_detail": {
|
|
228
|
+
"agents": [],
|
|
229
|
+
"playbooks": [],
|
|
230
|
+
"dnas": [],
|
|
231
|
+
"dossiers": []
|
|
232
|
+
},
|
|
233
|
+
"validated_at": datetime.now().isoformat()
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
# Normalize batch ID
|
|
237
|
+
if not batch_id.startswith("BATCH-"):
|
|
238
|
+
batch_id = f"BATCH-{batch_id}"
|
|
239
|
+
|
|
240
|
+
# Find batch file
|
|
241
|
+
batch_path = None
|
|
242
|
+
for pattern in [f"{batch_id}.md", f"{batch_id}-*.md"]:
|
|
243
|
+
matches = list(BATCHES_PATH.glob(pattern))
|
|
244
|
+
if matches:
|
|
245
|
+
batch_path = matches[0]
|
|
246
|
+
break
|
|
247
|
+
|
|
248
|
+
if not batch_path:
|
|
249
|
+
result["status"] = "FAILED"
|
|
250
|
+
result["errors"].append(f"Batch file not found: {batch_id}")
|
|
251
|
+
return result
|
|
252
|
+
|
|
253
|
+
# Read batch content
|
|
254
|
+
try:
|
|
255
|
+
content = batch_path.read_text(encoding='utf-8')
|
|
256
|
+
except Exception as e:
|
|
257
|
+
result["status"] = "FAILED"
|
|
258
|
+
result["errors"].append(f"Failed to read batch file: {e}")
|
|
259
|
+
return result
|
|
260
|
+
|
|
261
|
+
# Check for cascading section
|
|
262
|
+
if "Cascateamento Executado" not in content and "DESTINO DO CONHECIMENTO" not in content:
|
|
263
|
+
result["status"] = "WARNING"
|
|
264
|
+
result["warnings"].append("No cascading section found in batch")
|
|
265
|
+
return result
|
|
266
|
+
|
|
267
|
+
# Extract destinations
|
|
268
|
+
destinations = extract_destinations_from_batch(content)
|
|
269
|
+
|
|
270
|
+
# Count total
|
|
271
|
+
result["destinations_total"] = sum(len(v) for v in destinations.values())
|
|
272
|
+
|
|
273
|
+
if result["destinations_total"] == 0:
|
|
274
|
+
result["status"] = "WARNING"
|
|
275
|
+
result["warnings"].append("No destinations extracted from batch")
|
|
276
|
+
return result
|
|
277
|
+
|
|
278
|
+
# Validate each destination
|
|
279
|
+
resolvers = {
|
|
280
|
+
"agents": resolve_agent_path,
|
|
281
|
+
"playbooks": resolve_playbook_path,
|
|
282
|
+
"dnas": resolve_dna_path,
|
|
283
|
+
"dossiers": resolve_dossier_path
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
for dest_type, dest_list in destinations.items():
|
|
287
|
+
resolver = resolvers[dest_type]
|
|
288
|
+
|
|
289
|
+
for dest_name in dest_list:
|
|
290
|
+
dest_path = resolver(dest_name)
|
|
291
|
+
|
|
292
|
+
detail = {
|
|
293
|
+
"name": dest_name,
|
|
294
|
+
"exists": dest_path is not None,
|
|
295
|
+
"references_batch": False,
|
|
296
|
+
"path": str(dest_path) if dest_path else None
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
if dest_path is None:
|
|
300
|
+
result["warnings"].append(f"{dest_type.capitalize()} not found: {dest_name}")
|
|
301
|
+
else:
|
|
302
|
+
detail["references_batch"] = check_file_references_batch(dest_path, batch_id)
|
|
303
|
+
if not detail["references_batch"]:
|
|
304
|
+
result["warnings"].append(f"{dest_type.capitalize()} exists but doesn't reference batch: {dest_name}")
|
|
305
|
+
|
|
306
|
+
result["destinations_detail"][dest_type].append(detail)
|
|
307
|
+
|
|
308
|
+
# Determine final status
|
|
309
|
+
if result["errors"]:
|
|
310
|
+
result["status"] = "FAILED"
|
|
311
|
+
elif result["warnings"]:
|
|
312
|
+
result["status"] = "WARNING"
|
|
313
|
+
|
|
314
|
+
return result
|
|
315
|
+
|
|
316
|
+
def validate_all_batches() -> Dict:
|
|
317
|
+
"""Validate all batches and return summary."""
|
|
318
|
+
if not BATCHES_PATH.exists():
|
|
319
|
+
return {
|
|
320
|
+
"status": "FAILED",
|
|
321
|
+
"error": "Batches directory not found",
|
|
322
|
+
"total": 0
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
batches = list(BATCHES_PATH.glob("BATCH-*.md"))
|
|
326
|
+
|
|
327
|
+
summary = {
|
|
328
|
+
"total": len(batches),
|
|
329
|
+
"passed": 0,
|
|
330
|
+
"warning": 0,
|
|
331
|
+
"failed": 0,
|
|
332
|
+
"validated_at": datetime.now().isoformat(),
|
|
333
|
+
"details": []
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
for batch_path in batches:
|
|
337
|
+
batch_id = batch_path.stem
|
|
338
|
+
result = validate_batch_integrity(batch_id)
|
|
339
|
+
|
|
340
|
+
if result["status"] == "PASSED":
|
|
341
|
+
summary["passed"] += 1
|
|
342
|
+
elif result["status"] == "WARNING":
|
|
343
|
+
summary["warning"] += 1
|
|
344
|
+
else:
|
|
345
|
+
summary["failed"] += 1
|
|
346
|
+
|
|
347
|
+
summary["details"].append({
|
|
348
|
+
"batch_id": result["batch_id"],
|
|
349
|
+
"status": result["status"],
|
|
350
|
+
"destinations": result["destinations_total"],
|
|
351
|
+
"errors": len(result["errors"]),
|
|
352
|
+
"warnings": len(result["warnings"])
|
|
353
|
+
})
|
|
354
|
+
|
|
355
|
+
return summary
|
|
356
|
+
|
|
357
|
+
# ============================================================================
|
|
358
|
+
# CLI INTERFACE
|
|
359
|
+
# ============================================================================
|
|
360
|
+
|
|
361
|
+
def main():
|
|
362
|
+
"""CLI entry point."""
|
|
363
|
+
args = sys.argv[1:]
|
|
364
|
+
|
|
365
|
+
json_output = "--json" in args
|
|
366
|
+
if json_output:
|
|
367
|
+
args.remove("--json")
|
|
368
|
+
|
|
369
|
+
validate_all = "--all" in args or len(args) == 0
|
|
370
|
+
|
|
371
|
+
if validate_all:
|
|
372
|
+
# Validate all batches
|
|
373
|
+
summary = validate_all_batches()
|
|
374
|
+
|
|
375
|
+
if json_output:
|
|
376
|
+
print(json.dumps(summary, indent=2))
|
|
377
|
+
else:
|
|
378
|
+
print(f"Validating all batches...")
|
|
379
|
+
print(f"Total: {summary['total']}")
|
|
380
|
+
print(f"PASSED: {summary['passed']}")
|
|
381
|
+
print(f"WARNING: {summary['warning']}")
|
|
382
|
+
print(f"FAILED: {summary['failed']}")
|
|
383
|
+
|
|
384
|
+
sys.exit(0 if summary["failed"] == 0 else 1)
|
|
385
|
+
|
|
386
|
+
else:
|
|
387
|
+
# Validate single batch
|
|
388
|
+
batch_id = args[0]
|
|
389
|
+
result = validate_batch_integrity(batch_id)
|
|
390
|
+
|
|
391
|
+
if json_output:
|
|
392
|
+
print(json.dumps(result, indent=2))
|
|
393
|
+
else:
|
|
394
|
+
print(f"Batch: {result['batch_id']}")
|
|
395
|
+
print(f"Status: {result['status']}")
|
|
396
|
+
print(f"Destinations: {result['destinations_total']}")
|
|
397
|
+
if result['errors']:
|
|
398
|
+
print(f"\nErrors:")
|
|
399
|
+
for error in result['errors']:
|
|
400
|
+
print(f" - {error}")
|
|
401
|
+
if result['warnings']:
|
|
402
|
+
print(f"\nWarnings:")
|
|
403
|
+
for warning in result['warnings']:
|
|
404
|
+
print(f" - {warning}")
|
|
405
|
+
|
|
406
|
+
sys.exit(0 if result["status"] != "FAILED" else 1)
|
|
407
|
+
|
|
408
|
+
if __name__ == "__main__":
|
|
409
|
+
main()
|
|
@@ -0,0 +1,215 @@
|
|
|
1
|
+
{
|
|
2
|
+
"hooks": {
|
|
3
|
+
"SessionStart": [
|
|
4
|
+
{
|
|
5
|
+
"matcher": "",
|
|
6
|
+
"hooks": [
|
|
7
|
+
{
|
|
8
|
+
"type": "command",
|
|
9
|
+
"command": "python3 .claude/hooks/session_start.py",
|
|
10
|
+
"timeout": 10000
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"type": "command",
|
|
14
|
+
"command": "python3 .claude/hooks/inbox_age_alert.py",
|
|
15
|
+
"timeout": 5000
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"type": "command",
|
|
19
|
+
"command": "python3 .claude/hooks/skill_indexer.py",
|
|
20
|
+
"timeout": 5000
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"hooks": [
|
|
26
|
+
{
|
|
27
|
+
"type": "command",
|
|
28
|
+
"command": "node .claude/hooks/gsd-check-update.js"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"UserPromptSubmit": [
|
|
34
|
+
{
|
|
35
|
+
"matcher": "",
|
|
36
|
+
"hooks": [
|
|
37
|
+
{
|
|
38
|
+
"type": "command",
|
|
39
|
+
"command": "python3 .claude/hooks/continuous_save.py",
|
|
40
|
+
"timeout": 2000
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"type": "command",
|
|
44
|
+
"command": "python3 .claude/hooks/user_prompt_submit.py",
|
|
45
|
+
"timeout": 5000
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"type": "command",
|
|
49
|
+
"command": "python3 .claude/hooks/skill_router.py",
|
|
50
|
+
"timeout": 5000
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"type": "command",
|
|
54
|
+
"command": "python3 .claude/hooks/quality_watchdog.py",
|
|
55
|
+
"timeout": 5000
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"type": "command",
|
|
59
|
+
"command": "python3 .claude/hooks/memory_hints_injector.py",
|
|
60
|
+
"timeout": 5000
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"type": "command",
|
|
64
|
+
"command": "python3 .claude/hooks/enforce_plan_mode.py",
|
|
65
|
+
"timeout": 5000
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"type": "command",
|
|
69
|
+
"command": "python3 .claude/hooks/memory_updater.py",
|
|
70
|
+
"timeout": 5000
|
|
71
|
+
}
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"PreToolUse": [
|
|
76
|
+
{
|
|
77
|
+
"matcher": "Write|Edit",
|
|
78
|
+
"hooks": [
|
|
79
|
+
{
|
|
80
|
+
"type": "command",
|
|
81
|
+
"command": "python3 .claude/hooks/claude_md_guard.py",
|
|
82
|
+
"timeout": 5000
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"type": "command",
|
|
86
|
+
"command": "python3 .claude/hooks/creation_validator.py",
|
|
87
|
+
"timeout": 5000
|
|
88
|
+
}
|
|
89
|
+
]
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"PostToolUse": [
|
|
93
|
+
{
|
|
94
|
+
"matcher": "Edit|Write|MultiEdit",
|
|
95
|
+
"hooks": [
|
|
96
|
+
{
|
|
97
|
+
"type": "command",
|
|
98
|
+
"command": "python3 .claude/hooks/continuous_save.py",
|
|
99
|
+
"timeout": 2000
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"type": "command",
|
|
103
|
+
"command": "python3 .claude/hooks/post_tool_use.py",
|
|
104
|
+
"timeout": 5000
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"type": "command",
|
|
108
|
+
"command": "python3 .claude/hooks/post_batch_cascading.py",
|
|
109
|
+
"timeout": 30000
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"type": "command",
|
|
113
|
+
"command": "python3 .claude/hooks/enforce_dual_location.py",
|
|
114
|
+
"timeout": 5000
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"type": "command",
|
|
118
|
+
"command": "python3 .claude/hooks/pending_tracker.py",
|
|
119
|
+
"timeout": 5000
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"type": "command",
|
|
123
|
+
"command": "python3 .claude/hooks/agent_creation_trigger.py",
|
|
124
|
+
"timeout": 10000
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"type": "command",
|
|
128
|
+
"command": "python3 .claude/hooks/agent_index_updater.py",
|
|
129
|
+
"timeout": 5000
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"type": "command",
|
|
133
|
+
"command": "python3 .claude/hooks/claude_md_agent_sync.py",
|
|
134
|
+
"timeout": 5000
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
"type": "command",
|
|
138
|
+
"command": "python3 .claude/hooks/pipeline_checkpoint.py",
|
|
139
|
+
"timeout": 5000
|
|
140
|
+
}
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"hooks": [
|
|
145
|
+
{
|
|
146
|
+
"type": "command",
|
|
147
|
+
"command": "node .claude/hooks/gsd-context-monitor.js"
|
|
148
|
+
}
|
|
149
|
+
]
|
|
150
|
+
}
|
|
151
|
+
],
|
|
152
|
+
"Stop": [
|
|
153
|
+
{
|
|
154
|
+
"matcher": "",
|
|
155
|
+
"hooks": [
|
|
156
|
+
{
|
|
157
|
+
"type": "command",
|
|
158
|
+
"command": "python3 .claude/hooks/continuous_save.py",
|
|
159
|
+
"timeout": 2000
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"type": "command",
|
|
163
|
+
"command": "python3 .claude/hooks/stop_hook_completeness.py",
|
|
164
|
+
"timeout": 10000
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"type": "command",
|
|
168
|
+
"command": "python3 .claude/hooks/ralph_wiggum.py",
|
|
169
|
+
"timeout": 5000
|
|
170
|
+
}
|
|
171
|
+
]
|
|
172
|
+
}
|
|
173
|
+
],
|
|
174
|
+
"SessionEnd": [
|
|
175
|
+
{
|
|
176
|
+
"matcher": "",
|
|
177
|
+
"hooks": [
|
|
178
|
+
{
|
|
179
|
+
"type": "command",
|
|
180
|
+
"command": "python3 .claude/hooks/session_end.py",
|
|
181
|
+
"timeout": 10000
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"type": "command",
|
|
185
|
+
"command": "python3 .claude/hooks/session_autosave_v2.py save session_end",
|
|
186
|
+
"timeout": 10000
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"type": "command",
|
|
190
|
+
"command": "python3 .claude/hooks/agent_memory_persister.py",
|
|
191
|
+
"timeout": 5000
|
|
192
|
+
}
|
|
193
|
+
]
|
|
194
|
+
}
|
|
195
|
+
]
|
|
196
|
+
},
|
|
197
|
+
"permissions": {
|
|
198
|
+
"deny": [
|
|
199
|
+
"Bash(rm -rf *)",
|
|
200
|
+
"Bash(sudo *)",
|
|
201
|
+
"Bash(chmod 777 *)",
|
|
202
|
+
"Bash(git push --force *)",
|
|
203
|
+
"Bash(git push --force)",
|
|
204
|
+
"Bash(git push *)",
|
|
205
|
+
"Bash(git push)",
|
|
206
|
+
"Bash(git reset --hard *)",
|
|
207
|
+
"Bash(npm publish *)",
|
|
208
|
+
"Bash(npm publish)"
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
"statusLine": {
|
|
212
|
+
"type": "command",
|
|
213
|
+
"command": "node .claude/hooks/gsd-statusline.js"
|
|
214
|
+
}
|
|
215
|
+
}
|