@orchagent/cli 0.2.24 → 0.2.25

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.
@@ -252,6 +252,8 @@ async function executePromptLocally(agentData, inputData, skillPrompts = [], con
252
252
  const { provider, key, model: serverModel } = detected;
253
253
  // Priority: server config model > agent default model > hardcoded default
254
254
  const model = serverModel || agentData.default_models?.[provider] || (0, llm_1.getDefaultModel)(provider);
255
+ // Show which provider is being used (helpful for debugging rate limits)
256
+ process.stderr.write(`Running with ${provider} (${model})...\n`);
255
257
  // Combine skill prompts with agent prompt (skills first, then agent)
256
258
  let basePrompt = agentData.prompt || '';
257
259
  if (skillPrompts.length > 0) {
@@ -61,5 +61,6 @@ function registerSearchCommand(program) {
61
61
  if (agents.length === limit) {
62
62
  process.stdout.write(`\nShowing top ${limit} results. Use --limit <n> for more.\n`);
63
63
  }
64
+ process.stdout.write('\nTip: Run "orchagent info <agent>" to see input schema and details.\n');
64
65
  });
65
66
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchagent/cli",
3
- "version": "0.2.24",
3
+ "version": "0.2.25",
4
4
  "description": "Command-line interface for the orchagent AI agent marketplace",
5
5
  "license": "MIT",
6
6
  "author": "orchagent <hello@orchagent.io>",