@openagents-org/agent-launcher 0.2.121 → 0.2.122

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": "@openagents-org/agent-launcher",
3
- "version": "0.2.121",
3
+ "version": "0.2.122",
4
4
  "description": "OpenAgents Launcher — install, configure, and run AI coding agents from your terminal",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -32,7 +32,7 @@ class ClaudeAdapter extends BaseAdapter {
32
32
  super(opts);
33
33
  this.disabledModules = opts.disabledModules || new Set();
34
34
  /** @type {'mcp' | 'skills'} Tool integration mode */
35
- this.toolMode = opts.toolMode || 'mcp';
35
+ this.toolMode = opts.toolMode || 'skills';
36
36
  this._channelSessions = {}; // channel → Claude CLI session_id
37
37
  this._channelProcesses = {}; // channel → child process
38
38
  this._stoppingChannels = new Set();
package/src/cli.js CHANGED
@@ -456,7 +456,7 @@ async function cmdToolMode(connector, _flags, positional) {
456
456
  if (agents.length === 0) { print('No agents configured'); return; }
457
457
  for (const a of agents) {
458
458
  connector.config.updateAgent(a.name, { tool_mode: targetMode });
459
- print(` ${a.name}: ${a.tool_mode || 'mcp'} → ${targetMode}`);
459
+ print(` ${a.name}: ${a.tool_mode || 'skills'} → ${targetMode}`);
460
460
  }
461
461
  try { connector.sendDaemonCommand('reload'); } catch {}
462
462
  print(`\nSet all ${agents.length} agent(s) to '${targetMode}' mode.`);
@@ -471,7 +471,7 @@ async function cmdToolMode(connector, _flags, positional) {
471
471
  return;
472
472
  }
473
473
  for (const a of agents) {
474
- print(` ${a.name}: ${a.tool_mode || 'mcp'}`);
474
+ print(` ${a.name}: ${a.tool_mode || 'skills'}`);
475
475
  }
476
476
  print('\nUsage: agn tool-mode <agent|--all> <mcp|skills>');
477
477
  return;
@@ -481,7 +481,7 @@ async function cmdToolMode(connector, _flags, positional) {
481
481
  // Show tool mode for specific agent
482
482
  const agent = connector.config.getAgent(first);
483
483
  if (!agent) { print(`Agent '${first}' not found`); process.exitCode = 1; return; }
484
- print(`${first}: ${agent.tool_mode || 'mcp'}`);
484
+ print(`${first}: ${agent.tool_mode || 'skills'}`);
485
485
  print('\nUsage: agn tool-mode <agent|--all> <mcp|skills>');
486
486
  return;
487
487
  }
package/src/daemon.js CHANGED
@@ -445,7 +445,7 @@ class Daemon {
445
445
  disabledModules: new Set(),
446
446
  agentEnv: this._buildAgentEnv(agentCfg),
447
447
  workingDir: agentCfg.path || undefined,
448
- toolMode: agentCfg.tool_mode || 'mcp',
448
+ toolMode: agentCfg.tool_mode || 'skills',
449
449
  });
450
450
  } catch (e) {
451
451
  this._log(`${name} failed to create ${agentType} adapter: ${e.message}`);