auroq-os 1.1.8 → 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.
Files changed (2) hide show
  1. package/bin/auroq-os.js +26 -0
  2. 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',
@@ -181,6 +182,8 @@ async function init() {
181
182
  'agents/companion/knowledge/companion-foundation.md',
182
183
  'agents/companion/knowledge/expert-essencial.md',
183
184
  'agents/companion/knowledge/modus-operandi.md',
185
+ 'agents/companion/knowledge/system-guide.md',
186
+ 'agents/companion/knowledge/arcane-method.md',
184
187
 
185
188
  // Organizer
186
189
  'agents/organizer/agents/organizer.md',
@@ -257,6 +260,29 @@ async function init() {
257
260
  warn('Synapse Engine nao encontrado na fonte — pulando');
258
261
  }
259
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
+
260
286
  // ─── Fase 5: Package.json + npm install
261
287
  step('Configurando dependencias...');
262
288
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "auroq-os",
3
- "version": "1.1.8",
3
+ "version": "1.2.0",
4
4
  "description": "Auroq OS — Sistema Operacional de IA para Experts",
5
5
  "bin": {
6
6
  "auroq-os": "bin/auroq-os.js"