Agent skill · AI & Agents

agent-tuning

Configure and optimize AI coding agents (OpenCode/Claude). Use when setting up or improving agent behavior.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/agent/agent-tuning-wildwasser-opencode-agents/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

## 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 |

What's inside
Steps it walks through
  1. Configuration Locations
  2. OpenCode
  3. Claude Code
  4. Agent File Structure
  5. Frontmatter (YAML)
  6. Tool Reference
  7. Permission Patterns
  8. Restrictive (Read-Only Agent)
  9. Permissive (Full Access)
  10. Balanced (Common Pattern)
  11. Agent Roles
  12. Orchestrator (Oscar-style)
  13. Researcher (Scout-style)
  14. Implementor (Ivan-style)
Ships with 1 file
  • metadata.json
Commands it runs
OpenCode
cat ~/.config/opencode/opencode.json
View agent prompt
cat ~/.config/opencode/agent/<name>.md
More from claude-skill-registry
All skills →
About this skill
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.

Keep going