@orchagent/cli 0.3.15 → 0.3.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.
@@ -436,7 +436,7 @@ async function installCodeAgent(agentData) {
436
436
  }
437
437
  }
438
438
  process.stderr.write(`Installing ${installSource}...\n`);
439
- const { code } = await runCommand('python3', ['-m', 'pip', 'install', '--quiet', installSource]);
439
+ const { code } = await runCommand('python3', ['-m', 'pip', 'install', '--quiet', '--disable-pip-version-check', installSource]);
440
440
  if (code !== 0) {
441
441
  throw new errors_1.CliError(`Failed to install agent (exit code ${code}).\n\n` +
442
442
  'Troubleshooting:\n' +
@@ -511,7 +511,7 @@ async function executeBundleAgent(config, org, agentName, version, agentData, ar
511
511
  try {
512
512
  await promises_1.default.access(requirementsPath);
513
513
  process.stderr.write(`Installing dependencies from requirements.txt...\n`);
514
- const { code } = await runCommand('python3', ['-m', 'pip', 'install', '-q', '-r', requirementsPath]);
514
+ const { code } = await runCommand('python3', ['-m', 'pip', 'install', '-q', '--disable-pip-version-check', '-r', requirementsPath]);
515
515
  if (code !== 0) {
516
516
  throw new errors_1.CliError('Failed to install dependencies from requirements.txt');
517
517
  }
@@ -769,7 +769,7 @@ function registerRunCommand(program) {
769
769
  .option('--skills <skills>', 'Add skills (comma-separated)')
770
770
  .option('--skills-only <skills>', 'Use only these skills')
771
771
  .option('--no-skills', 'Ignore default skills')
772
- .option('--here', 'Shorthand for --input \'{"path": "."}\'')
772
+ .option('--here', 'Scan current directory (passes absolute path to agent)')
773
773
  .option('--path <dir>', 'Shorthand for --input \'{"path": "<dir>"}\'')
774
774
  .option('--provider <name>', 'LLM provider to use (openai, anthropic, gemini, ollama)')
775
775
  .addHelpText('after', `
@@ -285,7 +285,7 @@ Instructions and guidance for AI agents...
285
285
  // Non-TTY fallback
286
286
  targetFormats = ['claude-code'];
287
287
  log('Note: No default formats configured. Installing to Claude Code only.\n');
288
- log('Run "orchagent config set-formats" to configure defaults.\n\n');
288
+ log('Run "orchagent config set default-format <ids>" to configure defaults.\n\n');
289
289
  }
290
290
  }
291
291
  const parsed = parseSkillRef(skillRef);
@@ -419,7 +419,7 @@ ${skillData.prompt}
419
419
  for (const tool of installed) {
420
420
  log(` - ${tool}\n`);
421
421
  }
422
- log(`\nLocation: ${scope === 'user' ? '~/' : './'}\n`);
422
+ log(`\nLocation: ${scope === 'user' ? '~/.claude/skills/ (and other AI tool dirs)' : './<tool>/skills/'}\n`);
423
423
  }
424
424
  });
425
425
  // orch skill uninstall <skill>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchagent/cli",
3
- "version": "0.3.15",
3
+ "version": "0.3.16",
4
4
  "description": "Command-line interface for the orchagent AI agent marketplace",
5
5
  "license": "MIT",
6
6
  "author": "orchagent <hello@orchagent.io>",