aiyou-dev 3.5.15 → 3.5.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiyou-dev",
3
- "version": "3.5.15",
3
+ "version": "3.5.16",
4
4
  "description": "aiyoudev - AI agent orchestration for Claude Code and GEMINI. Deploy 60+ specialized agents in coordinated swarms with self-learning, fault-tolerant consensus, vector memory, and MCP integration",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -11,7 +11,7 @@ import { executeInit, executeUpgrade, executeUpgradeWithMissing, DEFAULT_INIT_OP
11
11
  async function initCodexAction(ctx, options) {
12
12
  const { force, minimal, full, dualMode } = options;
13
13
  output.writeln();
14
- output.writeln(output.bold('Initializing RuFlo V3 for OpenAI Codex'));
14
+ output.writeln(output.bold('Initializing aiyou-dev for OpenAI Codex'));
15
15
  output.writeln();
16
16
  // Determine template
17
17
  const template = minimal ? 'minimal' : full ? 'full' : 'default';
@@ -155,7 +155,7 @@ const initAction = async (ctx) => {
155
155
  const initialized = isInitialized(cwd);
156
156
  const hasExisting = initialized.claude || initialized.claudeFlow;
157
157
  if (hasExisting && !force) {
158
- output.printWarning('RuFlo appears to be already initialized');
158
+ output.printWarning('aiyou-dev appears to be already initialized');
159
159
  if (initialized.claude)
160
160
  output.printInfo(' Found: .claude/settings.json');
161
161
  if (initialized.claudeFlow)
@@ -175,7 +175,7 @@ const initAction = async (ctx) => {
175
175
  }
176
176
  }
177
177
  output.writeln();
178
- output.writeln(output.bold('Initializing RuFlo V3'));
178
+ output.writeln(output.bold('Initializing aiyou-dev'));
179
179
  output.writeln();
180
180
  // Build init options based on flags
181
181
  let options;
@@ -216,7 +216,7 @@ const initAction = async (ctx) => {
216
216
  }
217
217
  return { success: false, exitCode: 1 };
218
218
  }
219
- spinner.succeed('RuFlo V3 initialized successfully!');
219
+ spinner.succeed('aiyou-dev initialized successfully!');
220
220
  output.writeln();
221
221
  // Display summary
222
222
  const summary = [];
@@ -364,7 +364,7 @@ const wizardCommand = {
364
364
  description: 'Interactive setup wizard for comprehensive configuration',
365
365
  action: async (ctx) => {
366
366
  output.writeln();
367
- output.writeln(output.bold('RuFlo V3 Setup Wizard'));
367
+ output.writeln(output.bold('aiyou-dev Setup Wizard'));
368
368
  output.writeln(output.dim('Answer questions to configure your project'));
369
369
  output.writeln();
370
370
  try {
@@ -597,7 +597,7 @@ const wizardCommand = {
597
597
  // Check subcommand
598
598
  const checkCommand = {
599
599
  name: 'check',
600
- description: 'Check if RuFlo is initialized',
600
+ description: 'Check if aiyou-dev is initialized',
601
601
  action: async (ctx) => {
602
602
  const initialized = isInitialized(ctx.cwd);
603
603
  const result = {
@@ -614,7 +614,7 @@ const checkCommand = {
614
614
  return { success: true, data: result };
615
615
  }
616
616
  if (result.initialized) {
617
- output.printSuccess('RuFlo is initialized');
617
+ output.printSuccess('aiyou-dev is initialized');
618
618
  if (initialized.claude) {
619
619
  output.printInfo(` Claude Code: .claude/settings.json`);
620
620
  }
@@ -623,8 +623,8 @@ const checkCommand = {
623
623
  }
624
624
  }
625
625
  else {
626
- output.printWarning('RuFlo is not initialized in this directory');
627
- output.printInfo('Run "ruflo init" to initialize');
626
+ output.printWarning('aiyou-dev is not initialized in this directory');
627
+ output.printInfo('Run "aiyou-dev init" to initialize');
628
628
  }
629
629
  return { success: true, data: result };
630
630
  },
@@ -767,7 +767,7 @@ const upgradeCommand = {
767
767
  const addMissing = (ctx.flags['add-missing'] || ctx.flags.addMissing);
768
768
  const upgradeSettings = (ctx.flags.settings);
769
769
  output.writeln();
770
- output.writeln(output.bold('Upgrading RuFlo'));
770
+ output.writeln(output.bold('Upgrading aiyou-dev'));
771
771
  if (addMissing && upgradeSettings) {
772
772
  output.writeln(output.dim('Updates helpers, settings, and adds any missing skills/agents/commands'));
773
773
  }
@@ -867,7 +867,7 @@ const upgradeCommand = {
867
867
  // Main init command
868
868
  export const initCommand = {
869
869
  name: 'init',
870
- description: 'Initialize RuFlo in the current directory',
870
+ description: 'Initialize aiyou-dev in the current directory',
871
871
  subcommands: [wizardCommand, checkCommand, skillsCommand, hooksCommand, upgradeCommand],
872
872
  options: [
873
873
  {
@@ -502,7 +502,7 @@ GCC (Git Context Controller) provides structured, versioned memory. These are **
502
502
  export function generateClaudeMd(options, template) {
503
503
  const tmpl = template ?? options.runtime.claudeMdTemplate ?? 'standard';
504
504
  const sections = TEMPLATE_SECTIONS[tmpl] ?? TEMPLATE_SECTIONS.standard;
505
- const header = `# Claude Code Configuration - RuFlo V3\n`;
505
+ const header = `# Claude Code Configuration — aiyou-dev\n`;
506
506
  const body = sections.map(fn => fn(options)).join('\n\n');
507
507
  return `${header}\n${body}\n`;
508
508
  }