npx claudepluginhub pknull/asha-marketplace --plugin asha# List Running Agents Shows all agents currently running in the `orchestrator` tmux session. ## Implementation Execute the bash command above.
/agentsGenerates AGENTS.md files in pertinent repository folders only if missing, covering build commands, tests, code style, structure, and boundaries for coding agents.
/agentsLists available agent backends (Claude, Codex, Gemini) with status table, availability count, and CLI installation suggestions if none available.
/agentsManage background Conductor agents and worktrees
/agentsLists registered agents with ID, model, last heartbeat as relative time, and status (online/offline/stale). Normal to show one agent in single-machine setups.
/agentsGenerates AGENTS.md files in pertinent repository folders only if missing, covering build commands, tests, code style, structure, and boundaries for coding agents.
Shows all agents currently running in the orchestrator tmux session.
if /usr/bin/tmux has-session -t orchestrator 2>/dev/null; then
echo "๐ก Running Agents (orchestrator session):"
echo ""
/usr/bin/tmux list-windows -t orchestrator -F ' #I: #W' | grep -v "^ 0: main$" || echo " (no agents running)"
echo ""
echo "Commands:"
echo " Spawn: Tools/scripts/agent-spawn.sh <name> <type> [prompt] [dir]"
echo " Message: Tools/scripts/agent-msg.sh orchestrator:<index> 'message'"
echo " Stop: Tools/scripts/agent-stop.sh <name|all> [--force]"
else
echo "No orchestrator session running."
echo ""
echo "Start with: Tools/scripts/agent-spawn.sh <name> <type> [prompt] [dir]"
fi
Execute the bash command above.