mu-coding-agents
v0.15.0
Published
Default coding agent definitions (build, plan, explore, review)
Readme
mu-coding-agents
Default coding agent definitions packaged as a mu plugin. Registers four agents:
build(primary) — execute code changesplan(primary) — read-only planningexplore(subagent) — focused codebase explorationreview(subagent) — diff / commit review
The plugin only points the host's agent source registry at this package's
agents/ directory; the .md files carry the prompts and permission maps.
Usage
import { startMu } from 'mu-core';
import openai from 'mu-openai-provider';
import agents from 'mu-agents';
import codingAgents from 'mu-coding-agents';
await startMu({
configPath: '~/.config/mu/config.json',
plugins: [openai(), agents(), codingAgents()],
});