A forge for coding agents: shape reusable commands, skills, and plugins you can use across any agent.
Works with any coding agent that supports custom skills, slash commands, or plugins (for example: OpenCode, Claude Code, Cursor, Codex, Windsurf, Continue, Aider, and similar tools).
.
├── commands/ Custom slash commands
├── plugins/ Agent plugins
└── skills/ Reusable agent skills and references
git clone https://github.com/ideapedyudi/agent-coder-forge.git
cd agent-coder-forgeOptional: pin to a specific folder name for your agent:
git clone https://github.com/ideapedyudi/agent-coder-forge.git ~/.config/agent-coder-forgePoint your agent to this repository (or copy the folders it supports):
| Folder | What it provides | Typical agent support |
|---|---|---|
skills/ |
Workflow guides (SKILL.md) |
Most agents with skill loading |
commands/ |
Slash-command prompts | Agents with custom commands |
plugins/ |
Runtime hooks / helpers | Agents with plugin systems |
Use this when your agent can load external skill/command directories.
# example paths — adjust to your agent
ln -s "$(pwd)/skills" ~/.agents/skills/agent-coder-forge
ln -s "$(pwd)/commands" ~/.agents/commands/agent-coder-forgecp -R skills/* ~/.agents/skills/
cp -R commands/* ~/.agents/commands/From any project:
git clone https://github.com/ideapedyudi/agent-coder-forge.git .agent-coder-forgeThen configure your coding agent to read:
.agent-coder-forge/skills.agent-coder-forge/commands.agent-coder-forge/plugins(if supported)
cd agent-coder-forge
git pullIf you used copies instead of links, re-copy after pull.
- Keep machine-specific secrets and local config outside this repository.
- Skills and commands here are meant to be shared and versioned.
- Plugin availability depends on your coding agent runtime.