
Agent Creator
- 2 installs
- 29 repo stars
- Updated March 27, 2026
- different-ai/openwork-hub
Creates new OpenCode agents with a gpt-5.2-codex default model, showing agent file locations, frontmatter, and per-agent tool access.
About
Guides creating OpenCode agents via opencode agent create, with a minimal markdown-plus-frontmatter template and default gpt-5.2-codex model. A developer uses it when adding a project or global subagent to an OpenCode setup.
- Minimal agent template with mode and tool-access frontmatter
- Project vs global agent file locations
Agent Creator by the numbers
- 2 all-time installs (skills.sh)
- Ranked #13,956 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/different-ai/openwork-hub --skill agent-creatorAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 29 |
| Last updated | March 27, 2026 |
| Repository | different-ai/openwork-hub ↗ |
What it does
Creates new OpenCode agents with a gpt-5.2-codex default model, showing agent file locations, frontmatter, and per-agent tool access.
Files
Quick Usage (Already Configured)
Create a project agent
opencode agent createAgent file locations
- Project agents:
agents/<name>.md - Global agents:
~/.config/opencode/agents/<name>.md
Default model
Use gpt-5.2-codex as the default model for new agents unless a workflow needs a different model.
Minimal agent template
---
description: One-line description of what the agent does
mode: subagent
model: gpt-5.2-codex
tools:
write: false
edit: false
bash: false
---
You are a specialized agent. Describe your task, boundaries, and expected output.Notes from OpenCode docs
- Agent files are markdown with YAML frontmatter.
- The markdown filename becomes the agent name.
- Set
modetoprimary,subagent, orall. - If no model is specified, subagents inherit the caller model.
toolscontrols per-agent tool access.
Reference
Follow the official OpenCode agent docs: https://opencode.ai/docs/agents/
First-Time Setup (If Not Configured)
1. Run opencode agent create and choose project scope. 2. Paste in the default template above and adjust tools as needed.
# No environment variables are required for this skill.
export type AgentCreatorClient = Record<string, never>;
export const client: AgentCreatorClient = {};
import { config } from "./load-env";
async function main() {
void config;
console.log("agent-creator: no credentials required.");
}
main().catch((error) => {
console.error(error);
});
export type AgentCreatorConfig = Record<string, never>;
export const config: AgentCreatorConfig = {};