How this command is triggered — by the user, by Claude, or both
Slash command
/yolo-mode:yolo-mini <task>This command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Mini-SWE-Agent Execution Run Mini-SWE-Agent with task: $ARGUMENTS Mini-SWE-Agent is a ~100-line AI agent that scores >74% on SWE-bench verified. It uses bash-only execution and works with any model via LiteLLM. ## Usage ## Python API ## Examples - /yolo-mini "Write a sudoku game" - /yolo-mini "Fix the bug in src/auth.py" - /yolo-mini "Create unit tests for utils.py"
Run Mini-SWE-Agent with task: $ARGUMENTS
Mini-SWE-Agent is a ~100-line AI agent that scores >74% on SWE-bench verified. It uses bash-only execution and works with any model via LiteLLM.
mini "$ARGUMENTS"
from minisweagent import DefaultAgent, LitellmModel, LocalEnvironment
agent = DefaultAgent(
LitellmModel(model_name="gpt-4o"),
LocalEnvironment(),
)
agent.run("$ARGUMENTS")
npx claudepluginhub nbiish/yolo-mode --plugin yolo-mode/new-agentGenerates a complete, ready-to-use Claude Code sub-agent configuration file from a natural language description.
/create-subagentCreates specialized Claude Code subagents with expert guidance based on the provided agent idea or description.
/ai-agent-createCreates a specialized AI agent file with custom system prompt, optional tools, handoff rules, and TypeScript types based on provided name and specialization.
/autoExecutes a complete autonomous development loop without human intervention — plans, builds, tests, reviews, and commits code until functional and tested.