@wrongstack/cli 0.7.2 → 0.7.3

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/dist/index.js CHANGED
@@ -4825,11 +4825,11 @@ function buildSpawnCommand(opts) {
4825
4825
  function buildAgentsCommand(opts) {
4826
4826
  return {
4827
4827
  name: "agents",
4828
- description: "Show status of spawned subagents. With an id, show live monitor view.",
4828
+ description: "Show status of spawned subagents. /agents monitor opens the agents monitor overlay.",
4829
4829
  async run(args) {
4830
4830
  if (!opts.onAgents) return { message: "Multi-agent is not enabled in this session." };
4831
4831
  const subagentId = args.trim() || void 0;
4832
- return { message: await opts.onAgents(subagentId) };
4832
+ return { message: await opts.onAgents(subagentId === "monitor" ? "monitor" : subagentId) };
4833
4833
  }
4834
4834
  };
4835
4835
  }