agent-tuning
Configure and optimize AI coding agents (OpenCode/Claude). Use when setting up or improving agent behavior.
npx skills add majiayu000/claude-skill-registry --skill agent-tuning-wildwasser-opencode-agents --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
## Configuration Locations ### OpenCode ``` ~/.config/opencode/ ├── opencode.json # Main config ├── agent/ # Custom agent prompts │ ├── oscar.md │ ├── scout.md │ ├── ivan.md │ └── jester.md ├── skills/ # Reusable skills │ └── <name>/SKILL.md └── rules/ # Always-active rules └── RULES.md ``` ### Claude Code ``` ~/.claude/ ├── settings.json # Main config ├── agents/ # Custom agents │ └── <name>.md ├── skills/ # Reusable skills │ └── <name>/SKILL.md └── CLAUDE.md # Global instructions ``` ## Agent File Structure ### Frontmatter (YAML) ```yaml --- tools: read: true write: false edit: false glob: true grep: true bash: true task: false webfetch: true todoread: true todowrite: true question: true # Ask user questions skill: true # Load skills permission: bash: "git *": allow "gh *": allow "*": deny --- ``` ### Tool Reference | Tool | Purpose | Risk Level | |------|---------|------------| | `read` | Read files | Low | | `write` | Create/overwrite files | High | | `edit` | Modify files | High | | `glob` | Find files by pattern | Low | | `grep` | Search file contents | Low | | `list` | List directories | Low | | `bash` | Execute commands | Variable | | `task` | Delegate to subagents | Low |
- Configuration Locations
- OpenCode
- Claude Code
- Agent File Structure
- Frontmatter (YAML)
- Tool Reference
- Permission Patterns
- Restrictive (Read-Only Agent)
- Permissive (Full Access)
- Balanced (Common Pattern)
- Agent Roles
- Orchestrator (Oscar-style)
- Researcher (Scout-style)
- Implementor (Ivan-style)
OpenCode cat ~/.config/opencode/opencode.json View agent prompt cat ~/.config/opencode/agent/<name>.md
What does the agent-tuning skill do?
Configure and optimize AI coding agents (OpenCode/Claude). Use when setting up or improving agent behavior.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill agent-tuning-wildwasser-opencode-agents --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
