aiox-core 5.0.0 → 5.0.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/.aiox-core/data/entity-registry.yaml +5297 -1814
- package/.aiox-core/data/registry-update-log.jsonl +2 -0
- package/.aiox-core/development/templates/service-template/README.md.hbs +158 -158
- package/.aiox-core/development/templates/service-template/__tests__/index.test.ts.hbs +237 -237
- package/.aiox-core/development/templates/service-template/client.ts.hbs +403 -403
- package/.aiox-core/development/templates/service-template/errors.ts.hbs +182 -182
- package/.aiox-core/development/templates/service-template/index.ts.hbs +120 -120
- package/.aiox-core/development/templates/service-template/package.json.hbs +87 -87
- package/.aiox-core/development/templates/service-template/types.ts.hbs +145 -145
- package/.aiox-core/development/templates/squad-template/LICENSE +21 -21
- package/.aiox-core/infrastructure/scripts/tool-resolver.js +4 -4
- package/.aiox-core/infrastructure/templates/aiox-sync.yaml.template +182 -182
- package/.aiox-core/infrastructure/templates/coderabbit.yaml.template +279 -279
- package/.aiox-core/infrastructure/templates/github-workflows/ci.yml.template +169 -169
- package/.aiox-core/infrastructure/templates/github-workflows/pr-automation.yml.template +330 -330
- package/.aiox-core/infrastructure/templates/github-workflows/release.yml.template +196 -196
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-aiox-base.tmpl +63 -63
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-brownfield-merge.tmpl +18 -18
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-node.tmpl +85 -85
- package/.aiox-core/infrastructure/templates/gitignore/gitignore-python.tmpl +145 -145
- package/.aiox-core/install-manifest.yaml +58 -58
- package/.aiox-core/local-config.yaml.template +71 -71
- package/.aiox-core/monitor/hooks/lib/__init__.py +1 -1
- package/.aiox-core/monitor/hooks/lib/enrich.py +58 -58
- package/.aiox-core/monitor/hooks/lib/send_event.py +47 -47
- package/.aiox-core/monitor/hooks/notification.py +29 -29
- package/.aiox-core/monitor/hooks/post_tool_use.py +45 -45
- package/.aiox-core/monitor/hooks/pre_compact.py +29 -29
- package/.aiox-core/monitor/hooks/pre_tool_use.py +40 -40
- package/.aiox-core/monitor/hooks/stop.py +29 -29
- package/.aiox-core/monitor/hooks/subagent_stop.py +29 -29
- package/.aiox-core/monitor/hooks/user_prompt_submit.py +38 -38
- package/.aiox-core/product/templates/adr.hbs +125 -125
- package/.aiox-core/product/templates/dbdr.hbs +241 -241
- package/.aiox-core/product/templates/engine/elicitation.js +2 -3
- package/.aiox-core/product/templates/epic.hbs +212 -212
- package/.aiox-core/product/templates/pmdr.hbs +186 -186
- package/.aiox-core/product/templates/prd-v2.0.hbs +216 -216
- package/.aiox-core/product/templates/prd.hbs +201 -201
- package/.aiox-core/product/templates/story.hbs +263 -263
- package/.aiox-core/product/templates/task.hbs +170 -170
- package/.aiox-core/product/templates/tmpl-comment-on-examples.sql +158 -158
- package/.aiox-core/product/templates/tmpl-migration-script.sql +91 -91
- package/.aiox-core/product/templates/tmpl-rls-granular-policies.sql +104 -104
- package/.aiox-core/product/templates/tmpl-rls-kiss-policy.sql +10 -10
- package/.aiox-core/product/templates/tmpl-rls-roles.sql +135 -135
- package/.aiox-core/product/templates/tmpl-rls-simple.sql +77 -77
- package/.aiox-core/product/templates/tmpl-rls-tenant.sql +152 -152
- package/.aiox-core/product/templates/tmpl-rollback-script.sql +77 -77
- package/.aiox-core/product/templates/tmpl-seed-data.sql +140 -140
- package/.aiox-core/product/templates/tmpl-smoke-test.sql +16 -16
- package/.aiox-core/product/templates/tmpl-staging-copy-merge.sql +139 -139
- package/.aiox-core/product/templates/tmpl-stored-proc.sql +140 -140
- package/.aiox-core/product/templates/tmpl-trigger.sql +152 -152
- package/.aiox-core/product/templates/tmpl-view-materialized.sql +133 -133
- package/.aiox-core/product/templates/tmpl-view.sql +177 -177
- package/.aiox-core/scripts/pm.sh +0 -0
- package/.claude/hooks/code-intel-pretool.cjs +107 -0
- package/.claude/hooks/enforce-architecture-first.py +196 -196
- package/.claude/hooks/mind-clone-governance.py +192 -192
- package/.claude/hooks/read-protection.py +151 -151
- package/.claude/hooks/slug-validation.py +176 -176
- package/.claude/hooks/sql-governance.py +182 -182
- package/.claude/hooks/write-path-validation.py +194 -194
- package/LICENSE +33 -33
- package/bin/aiox-graph.js +0 -0
- package/bin/aiox-minimal.js +0 -0
- package/bin/aiox.js +0 -0
- package/docs/guides/aios-workflows/README.md +247 -0
- package/docs/guides/aios-workflows/bob-orchestrator-workflow.md +1536 -0
- package/package.json +1 -1
- package/packages/aiox-install/bin/aiox-install.js +0 -0
- package/packages/aiox-install/bin/edmcp.js +0 -0
- package/packages/aiox-pro-cli/bin/aiox-pro.js +0 -0
- package/packages/installer/src/wizard/pro-setup.js +210 -123
- package/pro/README.md +66 -0
- package/pro/license/degradation.js +220 -0
- package/pro/license/errors.js +450 -0
- package/pro/license/feature-gate.js +354 -0
- package/pro/license/index.js +181 -0
- package/pro/license/license-api.js +679 -0
- package/pro/license/license-cache.js +523 -0
- package/pro/license/license-crypto.js +303 -0
- package/scripts/check-markdown-links.py +352 -352
- package/scripts/dashboard-parallel-dev.sh +0 -0
- package/scripts/dashboard-parallel-phase3.sh +0 -0
- package/scripts/dashboard-parallel-phase4.sh +0 -0
- package/scripts/glue/README.md +355 -0
- package/scripts/glue/compose-agent-prompt.cjs +362 -0
- package/scripts/install-monitor-hooks.sh +0 -0
- package/.aiox-core/lib/build.json +0 -1
|
@@ -1,192 +1,192 @@
|
|
|
1
|
-
#!/usr/bin/env python3
|
|
2
|
-
"""
|
|
3
|
-
Hook: Mind Clone Governance
|
|
4
|
-
|
|
5
|
-
REGRA: Agents baseados em pessoas reais (mind clones) DEVEM passar pelo
|
|
6
|
-
pipeline de extração de DNA antes de serem criados.
|
|
7
|
-
|
|
8
|
-
Este hook intercepta Write/Edit em squads/*/agents/*.md e verifica:
|
|
9
|
-
1. Se é um mind clone (baseado em pessoa real)
|
|
10
|
-
2. Se existe DNA extraído correspondente
|
|
11
|
-
|
|
12
|
-
NÃO BLOQUEIA:
|
|
13
|
-
- Orchestrators (nome contém 'chief', 'orchestrator', 'chair')
|
|
14
|
-
- Tool agents (nome contém 'validator', 'calculator', 'generator')
|
|
15
|
-
- Process agents (nome contém 'architect', 'mapper', 'designer')
|
|
16
|
-
- Edição de arquivo existente (apenas criação é bloqueada)
|
|
17
|
-
|
|
18
|
-
Exit Codes:
|
|
19
|
-
- 0: Permitido
|
|
20
|
-
- 2: Bloqueado (mind clone sem DNA)
|
|
21
|
-
"""
|
|
22
|
-
|
|
23
|
-
import json
|
|
24
|
-
import sys
|
|
25
|
-
import os
|
|
26
|
-
import re
|
|
27
|
-
from pathlib import Path
|
|
28
|
-
|
|
29
|
-
# =============================================================================
|
|
30
|
-
# CONFIGURAÇÃO
|
|
31
|
-
# =============================================================================
|
|
32
|
-
|
|
33
|
-
# Padrões que indicam que NÃO é um mind clone (agents funcionais)
|
|
34
|
-
FUNCTIONAL_AGENT_PATTERNS = [
|
|
35
|
-
# Orchestrators
|
|
36
|
-
r'.*-chief$',
|
|
37
|
-
r'.*-orchestrator$',
|
|
38
|
-
r'.*-chair$',
|
|
39
|
-
r'^orchestrator$',
|
|
40
|
-
|
|
41
|
-
# Tool agents
|
|
42
|
-
r'.*-validator$',
|
|
43
|
-
r'.*-calculator$',
|
|
44
|
-
r'.*-generator$',
|
|
45
|
-
r'.*-extractor$',
|
|
46
|
-
r'.*-analyzer$',
|
|
47
|
-
|
|
48
|
-
# Process agents
|
|
49
|
-
r'.*-architect$',
|
|
50
|
-
r'.*-mapper$',
|
|
51
|
-
r'.*-designer$',
|
|
52
|
-
r'.*-engineer$',
|
|
53
|
-
|
|
54
|
-
# Generic functional
|
|
55
|
-
r'^tools?-.*',
|
|
56
|
-
r'^process-.*',
|
|
57
|
-
r'^workflow-.*',
|
|
58
|
-
]
|
|
59
|
-
|
|
60
|
-
# Locais onde DNA pode estar
|
|
61
|
-
DNA_LOCATIONS = [
|
|
62
|
-
"squads/{pack}/data/minds/{agent_id}_dna.yaml",
|
|
63
|
-
"squads/{pack}/data/minds/{agent_id}_dna.md",
|
|
64
|
-
"squads/{pack}/data/{agent_id}-dna.yaml",
|
|
65
|
-
"outputs/minds/{agent_id}/",
|
|
66
|
-
]
|
|
67
|
-
|
|
68
|
-
# =============================================================================
|
|
69
|
-
# LÓGICA DO HOOK
|
|
70
|
-
# =============================================================================
|
|
71
|
-
|
|
72
|
-
def get_project_root():
|
|
73
|
-
"""Obtém o root do projeto via variável de ambiente ou cwd."""
|
|
74
|
-
return os.environ.get("CLAUDE_PROJECT_DIR", os.getcwd())
|
|
75
|
-
|
|
76
|
-
def extract_agent_info(file_path: str) -> tuple:
|
|
77
|
-
"""Extrai pack_name e agent_id do path."""
|
|
78
|
-
# squads/{pack}/agents/{agent_id}.md
|
|
79
|
-
match = re.match(r'.*/squads/([^/]+)/agents/([^/]+)\.md$', file_path)
|
|
80
|
-
if match:
|
|
81
|
-
return match.group(1), match.group(2)
|
|
82
|
-
return None, None
|
|
83
|
-
|
|
84
|
-
def is_functional_agent(agent_id: str) -> bool:
|
|
85
|
-
"""Verifica se o agent é funcional (não é mind clone)."""
|
|
86
|
-
for pattern in FUNCTIONAL_AGENT_PATTERNS:
|
|
87
|
-
if re.match(pattern, agent_id, re.IGNORECASE):
|
|
88
|
-
return True
|
|
89
|
-
return False
|
|
90
|
-
|
|
91
|
-
def has_dna_extracted(project_root: str, pack_name: str, agent_id: str) -> tuple:
|
|
92
|
-
"""Verifica se existe DNA extraído para o agent."""
|
|
93
|
-
for location_template in DNA_LOCATIONS:
|
|
94
|
-
location = location_template.format(pack=pack_name, agent_id=agent_id)
|
|
95
|
-
full_path = os.path.join(project_root, location)
|
|
96
|
-
|
|
97
|
-
# Se é diretório, verificar se existe
|
|
98
|
-
if location.endswith('/'):
|
|
99
|
-
if os.path.isdir(full_path):
|
|
100
|
-
return True, full_path
|
|
101
|
-
# Se é arquivo, verificar se existe
|
|
102
|
-
elif os.path.isfile(full_path):
|
|
103
|
-
return True, full_path
|
|
104
|
-
|
|
105
|
-
return False, None
|
|
106
|
-
|
|
107
|
-
def file_already_exists(file_path: str) -> bool:
|
|
108
|
-
"""Verifica se o arquivo já existe (edit vs create)."""
|
|
109
|
-
return os.path.isfile(file_path)
|
|
110
|
-
|
|
111
|
-
def main():
|
|
112
|
-
# Ler input do stdin
|
|
113
|
-
try:
|
|
114
|
-
input_data = json.load(sys.stdin)
|
|
115
|
-
except json.JSONDecodeError:
|
|
116
|
-
# Se não conseguir parsear, permitir (fail-open)
|
|
117
|
-
sys.exit(0)
|
|
118
|
-
|
|
119
|
-
tool_name = input_data.get("tool_name", "")
|
|
120
|
-
tool_input = input_data.get("tool_input", {})
|
|
121
|
-
|
|
122
|
-
# Só processar Write e Edit
|
|
123
|
-
if tool_name not in ["Write", "Edit"]:
|
|
124
|
-
sys.exit(0)
|
|
125
|
-
|
|
126
|
-
file_path = tool_input.get("file_path", "")
|
|
127
|
-
if not file_path:
|
|
128
|
-
sys.exit(0)
|
|
129
|
-
|
|
130
|
-
# Só processar arquivos em squads/*/agents/
|
|
131
|
-
if "/squads/" not in file_path or "/agents/" not in file_path:
|
|
132
|
-
sys.exit(0)
|
|
133
|
-
|
|
134
|
-
if not file_path.endswith(".md"):
|
|
135
|
-
sys.exit(0)
|
|
136
|
-
|
|
137
|
-
project_root = get_project_root()
|
|
138
|
-
|
|
139
|
-
# Extrair informações do path
|
|
140
|
-
pack_name, agent_id = extract_agent_info(file_path)
|
|
141
|
-
if not pack_name or not agent_id:
|
|
142
|
-
sys.exit(0)
|
|
143
|
-
|
|
144
|
-
# Se é edição de arquivo existente, permitir
|
|
145
|
-
if file_already_exists(file_path):
|
|
146
|
-
sys.exit(0)
|
|
147
|
-
|
|
148
|
-
# Se é agent funcional (não mind clone), permitir
|
|
149
|
-
if is_functional_agent(agent_id):
|
|
150
|
-
sys.exit(0)
|
|
151
|
-
|
|
152
|
-
# Verificar se existe DNA extraído
|
|
153
|
-
has_dna, dna_path = has_dna_extracted(project_root, pack_name, agent_id)
|
|
154
|
-
|
|
155
|
-
if has_dna:
|
|
156
|
-
sys.exit(0)
|
|
157
|
-
|
|
158
|
-
# BLOQUEAR: Tentando criar mind clone sem DNA
|
|
159
|
-
error_message = f"""
|
|
160
|
-
╔══════════════════════════════════════════════════════════════════════════════╗
|
|
161
|
-
║ 🧬 MIND CLONE GOVERNANCE: DNA não encontrado ║
|
|
162
|
-
╠══════════════════════════════════════════════════════════════════════════════╣
|
|
163
|
-
║ ║
|
|
164
|
-
║ Agent: {agent_id:<60} ║
|
|
165
|
-
║ Pack: {pack_name:<60} ║
|
|
166
|
-
║ ║
|
|
167
|
-
║ PROBLEMA: Este parece ser um MIND CLONE (baseado em pessoa real), ║
|
|
168
|
-
║ mas não foi encontrado DNA extraído. ║
|
|
169
|
-
║ ║
|
|
170
|
-
║ Mind clones DEVEM passar pelo pipeline de extração: ║
|
|
171
|
-
║ 1. *collect-sources → Coletar fontes (livros, entrevistas, artigos) ║
|
|
172
|
-
║ 2. *extract-voice-dna → Extrair padrões linguísticos ║
|
|
173
|
-
║ 3. *extract-thinking-dna → Extrair frameworks e heurísticas ║
|
|
174
|
-
║ 4. *create-agent → Criar agent a partir do DNA ║
|
|
175
|
-
║ ║
|
|
176
|
-
║ LOCAIS VERIFICADOS: ║
|
|
177
|
-
║ • squads/{pack_name}/data/minds/{agent_id}_dna.yaml
|
|
178
|
-
║ • squads/{pack_name}/data/minds/{agent_id}_dna.md
|
|
179
|
-
║ • outputs/minds/{agent_id}/
|
|
180
|
-
║ ║
|
|
181
|
-
║ SOLUÇÕES: ║
|
|
182
|
-
║ 1. Execute o pipeline de clone: /squad-creator → *collect-sources ║
|
|
183
|
-
║ 2. OU se é agent FUNCIONAL, renomeie com sufixo: ║
|
|
184
|
-
║ -chief, -orchestrator, -validator, -architect, etc. ║
|
|
185
|
-
║ ║
|
|
186
|
-
╚══════════════════════════════════════════════════════════════════════════════╝
|
|
187
|
-
"""
|
|
188
|
-
print(error_message, file=sys.stderr)
|
|
189
|
-
sys.exit(2)
|
|
190
|
-
|
|
191
|
-
if __name__ == "__main__":
|
|
192
|
-
main()
|
|
1
|
+
#!/usr/bin/env python3
|
|
2
|
+
"""
|
|
3
|
+
Hook: Mind Clone Governance
|
|
4
|
+
|
|
5
|
+
REGRA: Agents baseados em pessoas reais (mind clones) DEVEM passar pelo
|
|
6
|
+
pipeline de extração de DNA antes de serem criados.
|
|
7
|
+
|
|
8
|
+
Este hook intercepta Write/Edit em squads/*/agents/*.md e verifica:
|
|
9
|
+
1. Se é um mind clone (baseado em pessoa real)
|
|
10
|
+
2. Se existe DNA extraído correspondente
|
|
11
|
+
|
|
12
|
+
NÃO BLOQUEIA:
|
|
13
|
+
- Orchestrators (nome contém 'chief', 'orchestrator', 'chair')
|
|
14
|
+
- Tool agents (nome contém 'validator', 'calculator', 'generator')
|
|
15
|
+
- Process agents (nome contém 'architect', 'mapper', 'designer')
|
|
16
|
+
- Edição de arquivo existente (apenas criação é bloqueada)
|
|
17
|
+
|
|
18
|
+
Exit Codes:
|
|
19
|
+
- 0: Permitido
|
|
20
|
+
- 2: Bloqueado (mind clone sem DNA)
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
import json
|
|
24
|
+
import sys
|
|
25
|
+
import os
|
|
26
|
+
import re
|
|
27
|
+
from pathlib import Path
|
|
28
|
+
|
|
29
|
+
# =============================================================================
|
|
30
|
+
# CONFIGURAÇÃO
|
|
31
|
+
# =============================================================================
|
|
32
|
+
|
|
33
|
+
# Padrões que indicam que NÃO é um mind clone (agents funcionais)
|
|
34
|
+
FUNCTIONAL_AGENT_PATTERNS = [
|
|
35
|
+
# Orchestrators
|
|
36
|
+
r'.*-chief$',
|
|
37
|
+
r'.*-orchestrator$',
|
|
38
|
+
r'.*-chair$',
|
|
39
|
+
r'^orchestrator$',
|
|
40
|
+
|
|
41
|
+
# Tool agents
|
|
42
|
+
r'.*-validator$',
|
|
43
|
+
r'.*-calculator$',
|
|
44
|
+
r'.*-generator$',
|
|
45
|
+
r'.*-extractor$',
|
|
46
|
+
r'.*-analyzer$',
|
|
47
|
+
|
|
48
|
+
# Process agents
|
|
49
|
+
r'.*-architect$',
|
|
50
|
+
r'.*-mapper$',
|
|
51
|
+
r'.*-designer$',
|
|
52
|
+
r'.*-engineer$',
|
|
53
|
+
|
|
54
|
+
# Generic functional
|
|
55
|
+
r'^tools?-.*',
|
|
56
|
+
r'^process-.*',
|
|
57
|
+
r'^workflow-.*',
|
|
58
|
+
]
|
|
59
|
+
|
|
60
|
+
# Locais onde DNA pode estar
|
|
61
|
+
DNA_LOCATIONS = [
|
|
62
|
+
"squads/{pack}/data/minds/{agent_id}_dna.yaml",
|
|
63
|
+
"squads/{pack}/data/minds/{agent_id}_dna.md",
|
|
64
|
+
"squads/{pack}/data/{agent_id}-dna.yaml",
|
|
65
|
+
"outputs/minds/{agent_id}/",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
# =============================================================================
|
|
69
|
+
# LÓGICA DO HOOK
|
|
70
|
+
# =============================================================================
|
|
71
|
+
|
|
72
|
+
def get_project_root():
|
|
73
|
+
"""Obtém o root do projeto via variável de ambiente ou cwd."""
|
|
74
|
+
return os.environ.get("CLAUDE_PROJECT_DIR", os.getcwd())
|
|
75
|
+
|
|
76
|
+
def extract_agent_info(file_path: str) -> tuple:
|
|
77
|
+
"""Extrai pack_name e agent_id do path."""
|
|
78
|
+
# squads/{pack}/agents/{agent_id}.md
|
|
79
|
+
match = re.match(r'.*/squads/([^/]+)/agents/([^/]+)\.md$', file_path)
|
|
80
|
+
if match:
|
|
81
|
+
return match.group(1), match.group(2)
|
|
82
|
+
return None, None
|
|
83
|
+
|
|
84
|
+
def is_functional_agent(agent_id: str) -> bool:
|
|
85
|
+
"""Verifica se o agent é funcional (não é mind clone)."""
|
|
86
|
+
for pattern in FUNCTIONAL_AGENT_PATTERNS:
|
|
87
|
+
if re.match(pattern, agent_id, re.IGNORECASE):
|
|
88
|
+
return True
|
|
89
|
+
return False
|
|
90
|
+
|
|
91
|
+
def has_dna_extracted(project_root: str, pack_name: str, agent_id: str) -> tuple:
|
|
92
|
+
"""Verifica se existe DNA extraído para o agent."""
|
|
93
|
+
for location_template in DNA_LOCATIONS:
|
|
94
|
+
location = location_template.format(pack=pack_name, agent_id=agent_id)
|
|
95
|
+
full_path = os.path.join(project_root, location)
|
|
96
|
+
|
|
97
|
+
# Se é diretório, verificar se existe
|
|
98
|
+
if location.endswith('/'):
|
|
99
|
+
if os.path.isdir(full_path):
|
|
100
|
+
return True, full_path
|
|
101
|
+
# Se é arquivo, verificar se existe
|
|
102
|
+
elif os.path.isfile(full_path):
|
|
103
|
+
return True, full_path
|
|
104
|
+
|
|
105
|
+
return False, None
|
|
106
|
+
|
|
107
|
+
def file_already_exists(file_path: str) -> bool:
|
|
108
|
+
"""Verifica se o arquivo já existe (edit vs create)."""
|
|
109
|
+
return os.path.isfile(file_path)
|
|
110
|
+
|
|
111
|
+
def main():
|
|
112
|
+
# Ler input do stdin
|
|
113
|
+
try:
|
|
114
|
+
input_data = json.load(sys.stdin)
|
|
115
|
+
except json.JSONDecodeError:
|
|
116
|
+
# Se não conseguir parsear, permitir (fail-open)
|
|
117
|
+
sys.exit(0)
|
|
118
|
+
|
|
119
|
+
tool_name = input_data.get("tool_name", "")
|
|
120
|
+
tool_input = input_data.get("tool_input", {})
|
|
121
|
+
|
|
122
|
+
# Só processar Write e Edit
|
|
123
|
+
if tool_name not in ["Write", "Edit"]:
|
|
124
|
+
sys.exit(0)
|
|
125
|
+
|
|
126
|
+
file_path = tool_input.get("file_path", "")
|
|
127
|
+
if not file_path:
|
|
128
|
+
sys.exit(0)
|
|
129
|
+
|
|
130
|
+
# Só processar arquivos em squads/*/agents/
|
|
131
|
+
if "/squads/" not in file_path or "/agents/" not in file_path:
|
|
132
|
+
sys.exit(0)
|
|
133
|
+
|
|
134
|
+
if not file_path.endswith(".md"):
|
|
135
|
+
sys.exit(0)
|
|
136
|
+
|
|
137
|
+
project_root = get_project_root()
|
|
138
|
+
|
|
139
|
+
# Extrair informações do path
|
|
140
|
+
pack_name, agent_id = extract_agent_info(file_path)
|
|
141
|
+
if not pack_name or not agent_id:
|
|
142
|
+
sys.exit(0)
|
|
143
|
+
|
|
144
|
+
# Se é edição de arquivo existente, permitir
|
|
145
|
+
if file_already_exists(file_path):
|
|
146
|
+
sys.exit(0)
|
|
147
|
+
|
|
148
|
+
# Se é agent funcional (não mind clone), permitir
|
|
149
|
+
if is_functional_agent(agent_id):
|
|
150
|
+
sys.exit(0)
|
|
151
|
+
|
|
152
|
+
# Verificar se existe DNA extraído
|
|
153
|
+
has_dna, dna_path = has_dna_extracted(project_root, pack_name, agent_id)
|
|
154
|
+
|
|
155
|
+
if has_dna:
|
|
156
|
+
sys.exit(0)
|
|
157
|
+
|
|
158
|
+
# BLOQUEAR: Tentando criar mind clone sem DNA
|
|
159
|
+
error_message = f"""
|
|
160
|
+
╔══════════════════════════════════════════════════════════════════════════════╗
|
|
161
|
+
║ 🧬 MIND CLONE GOVERNANCE: DNA não encontrado ║
|
|
162
|
+
╠══════════════════════════════════════════════════════════════════════════════╣
|
|
163
|
+
║ ║
|
|
164
|
+
║ Agent: {agent_id:<60} ║
|
|
165
|
+
║ Pack: {pack_name:<60} ║
|
|
166
|
+
║ ║
|
|
167
|
+
║ PROBLEMA: Este parece ser um MIND CLONE (baseado em pessoa real), ║
|
|
168
|
+
║ mas não foi encontrado DNA extraído. ║
|
|
169
|
+
║ ║
|
|
170
|
+
║ Mind clones DEVEM passar pelo pipeline de extração: ║
|
|
171
|
+
║ 1. *collect-sources → Coletar fontes (livros, entrevistas, artigos) ║
|
|
172
|
+
║ 2. *extract-voice-dna → Extrair padrões linguísticos ║
|
|
173
|
+
║ 3. *extract-thinking-dna → Extrair frameworks e heurísticas ║
|
|
174
|
+
║ 4. *create-agent → Criar agent a partir do DNA ║
|
|
175
|
+
║ ║
|
|
176
|
+
║ LOCAIS VERIFICADOS: ║
|
|
177
|
+
║ • squads/{pack_name}/data/minds/{agent_id}_dna.yaml
|
|
178
|
+
║ • squads/{pack_name}/data/minds/{agent_id}_dna.md
|
|
179
|
+
║ • outputs/minds/{agent_id}/
|
|
180
|
+
║ ║
|
|
181
|
+
║ SOLUÇÕES: ║
|
|
182
|
+
║ 1. Execute o pipeline de clone: /squad-creator → *collect-sources ║
|
|
183
|
+
║ 2. OU se é agent FUNCIONAL, renomeie com sufixo: ║
|
|
184
|
+
║ -chief, -orchestrator, -validator, -architect, etc. ║
|
|
185
|
+
║ ║
|
|
186
|
+
╚══════════════════════════════════════════════════════════════════════════════╝
|
|
187
|
+
"""
|
|
188
|
+
print(error_message, file=sys.stderr)
|
|
189
|
+
sys.exit(2)
|
|
190
|
+
|
|
191
|
+
if __name__ == "__main__":
|
|
192
|
+
main()
|