auroq-os 1.1.9 → 1.2.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/bin/auroq-os.js +24 -0
- package/package.json +1 -1
package/bin/auroq-os.js
CHANGED
|
@@ -156,6 +156,7 @@ async function init() {
|
|
|
156
156
|
'.claude/rules/memoria-inteligente.md',
|
|
157
157
|
'.claude/rules/project-tracker.md',
|
|
158
158
|
'.claude/rules/tool-response-filtering.md',
|
|
159
|
+
'.claude/rules/natural-language-first.md',
|
|
159
160
|
|
|
160
161
|
// Hooks
|
|
161
162
|
'.claude/hooks/synapse-engine.cjs',
|
|
@@ -259,6 +260,29 @@ async function init() {
|
|
|
259
260
|
warn('Synapse Engine nao encontrado na fonte — pulando');
|
|
260
261
|
}
|
|
261
262
|
|
|
263
|
+
// ─── Fase 4b: Copiar Meta Squads e scripts (diretorios inteiros)
|
|
264
|
+
step('Instalando Meta Squads e scripts...');
|
|
265
|
+
|
|
266
|
+
const dirsToCopy = [
|
|
267
|
+
{ src: 'agents/squad-forge', label: 'Squad Forge' },
|
|
268
|
+
{ src: 'agents/mind-forge', label: 'Mind Forge' },
|
|
269
|
+
{ src: 'agents/worker-forge', label: 'Worker Forge' },
|
|
270
|
+
{ src: 'agents/clone-forge', label: 'Clone Forge' },
|
|
271
|
+
{ src: 'agents/etlmaker', label: 'ETLmaker' },
|
|
272
|
+
{ src: '.auroq-core/development/scripts', label: 'Squad Scripts' },
|
|
273
|
+
];
|
|
274
|
+
|
|
275
|
+
let dirsCopied = 0;
|
|
276
|
+
for (const { src, label } of dirsToCopy) {
|
|
277
|
+
const srcPath = path.join(sourceDir, src);
|
|
278
|
+
const dstPath = path.join(targetDir, src);
|
|
279
|
+
if (await fs.pathExists(srcPath)) {
|
|
280
|
+
await fs.copy(srcPath, dstPath, { overwrite: true });
|
|
281
|
+
dirsCopied++;
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
success(`${dirsCopied} modulos instalados (Meta Squads + scripts)`);
|
|
285
|
+
|
|
262
286
|
// ─── Fase 5: Package.json + npm install
|
|
263
287
|
step('Configurando dependencias...');
|
|
264
288
|
|