Back to Discover

skill-forge

skill

gzb1128

Skill Forge: Claude Code plugin marketplace for agent harness docs, code quality workflows, and OpenCode customization.

View on GitHub
1 starsMITSynced Aug 4, 2026

Install to Claude Code

/plugin marketplace add gzb1128/skill-forge

README

skill-forge

License: MIT

skill-forge is a Claude Code plugin marketplace for forging agent runtime environments. It distills reusable skills into plugins covering repository knowledge, code quality, commit discipline, autonomous fix loops, OpenCode configuration, and Codex subagent routing.

Core idea: Human at the helm. Agents execute. The repo is the agent's runtime — knowledge, rules, and workflows must be shaped into forms agents can reliably read, judge, and execute.

Keywords: claude-plugin, claude-code, agent-skills, agent-harness, openai-harness-engineering, opencode, code-review, clean-commit

Quick Start

# 1. Add the Skill Forge marketplace
claude plugin marketplace add gzb1128/skill-forge

# 2. Install the plugins you need
claude plugin install agent-docs@skill-forge
claude plugin install code-quality@skill-forge
claude plugin install skill-creator@skill-forge
claude plugin install opencode-customize@skill-forge
claude plugin install codex-strategy@skill-forge
claude plugin install github-contrib@skill-forge

# 3. In your target repo, ask your agent:
#    "bootstrap agent docs"       -> create a minimal AGENTS.md entry point
#    "review my changes"          -> quality review on local diff
#    "commit this"                -> gated commit with impact message
#    "loopfix"                    -> autonomous review-fix loop
#    "migrate this skill"         -> adapt/create skills with eval discipline
#    "hydrate model config"       -> fill OpenCode custom model parameters
#    "delegate this to subagents" -> route Codex implementation workers
#    "find issues I can pick up"  -> rank contribution-ready GitHub issues

Plugin versions are resolved to git commit SHA. Every push produces a new installable version — no manual semver maintenance. Run claude plugin update <plugin>@skill-forge (or wait for auto-update) to pull the latest.

Plugins

PluginPurposeSkills
agent-docsBootstrap and maintain valuable repository knowledge with focused capture and audit workflowsbootstrap-agent-docs, learn, remember, curate
code-qualityTurn code review, commit gates, diff cleanup, and fix loops into repeatable agent workflowsquality-reviewer, clean-commit, diff-cleanup, loopfix
skill-creatorCreate, migrate, evaluate, and tune skills for Skill Forge plugin workflowsskill-creator
opencode-customizeCustomize OpenCode configuration, including model metadata hydration and external project referenceshydrate-opencode-models, integrate-projects
codex-strategyRoute explicitly requested Codex implementation workers by design clarity and coupling while leaving other roles nativecodex-subagent-strategy
github-contribFind contribution-ready GitHub issues with claimed status, PR linkage, difficulty, staleness, maintainer engagement, and area signalsfind-contributable-issues

Skill Catalog

agent-docs

SkillTypePurpose
bootstrap-agent-docsmodel-invokedCreate a minimal root AGENTS.md with verified commands and architecture routing
learnmanual skill (/agent-docs:learn)Score, route, and propose valuable session knowledge for AGENTS.md or docs/ — verified and approval-gated
remembermanual skill (/agent-docs:remember)Audit AGENTS.md knowledge for staleness, duplication, and misplacement
curatemanual skill (/agent-docs:curate)Audit the docs/ knowledge base for stale links, encyclopedia bloat, naming drift, and missing indexes — the docs counterpart to /agent-docs:remember

The minimal AGENTS.md template used by bootstrap-agent-docs lives at plugins/agent-docs/templates/ and resolves at runtime via ${CLAUDE_PLUGIN_ROOT}/templates/. No separate repo clone is needed.

code-quality

SkillTypePurpose
quality-reviewermodel-invokedStructured local review with one independent reviewer, integrated risk checks, and direct quality gates
clean-commitmodel-invokedRun quality gates (via quality-reviewer) before committing, with messages that explain WHY
diff-cleanupmodel-invokedRemove AI-generated bloat (slop comments, dead code, defensive noise, redundant logic) from a feature branch diff
loopfixmodel-invokedAutonomous review-fix loop: reviewer subagent finds issues, main agent triages and fixes, repeat until clean

skill-creator

SkillTypePurpose
skill-creatormodel-invokedAdapt upstream skills, create Skill Forge plugin skills, design RED/GREEN scenarios, run eval benchmarks, and tune trigger descriptions

opencode-customize

SkillTypePurpose
hydrate-opencode-modelsmodel-invokedLook up model metadata from the Models.dev catalog and map it to OpenCode custom provider model config
integrate-projectsmodel-invokedAdd external codebases to project-level OpenCode references so agents can discover and inspect them when relevant

codex-strategy

SkillTypePurpose
codex-subagent-strategymodel-invokedBefore an explicitly requested Codex spawn, route high-coupling pre-design work to Sol/medium, bounded pre-design work to Luna/xhigh, and general coding to Terra/high

Skill Forge keeps marketplace source in plugin layout. Compatible agent skill installers expose installed skills through ~/.agents/skills/<skill>.

github-contrib

SkillTypePurpose
find-contributable-issuesmodel-invokedInvestigate open GitHub issues and rank which ones are worth picking up as a contributor

What agent-docs Scaffolds

When you ask Claude to "bootstrap agent docs" in a target repo, the plugin creates one project entry point after showing the plan and receiving approval:

your-repo/
└── AGENTS.md                          # concise commands, architecture, routing, and project rules

It does not pre-create docs/ categories or copy plugin policy into the target repository. /agent-docs:learn creates a category and its INDEX.md on demand when the first admitted document needs that surface.

Practices

PracticeMeaning
Repo as record systemKnowledge agents can't see doesn't exist. Critical constraints must not live only in chat logs or external docs.
Progressive disclosureAGENTS.md provides the entry navigation, docs/codemaps/*.md points to components, source code carries the details.
Lean prompt surfacesState prompt-resident rules once, expose only task-relevant tools, and keep examples only when they encode a requirement or fix a measured gap. Validate removals against the same representative tasks.
INDEX with the first docA category containing useful documents normally has an INDEX.md with routing context; absent categories need no placeholders.
Value-based admissionNon-derivable knowledge is automatically admitted; derivable knowledge is also recorded when impact, recurrence, discovery cost, actionability, durability, and scope justify the surface cost.
Maps, not encyclopediasCodemaps maintain concept-to-path tables only — they link to source, never copy code.
Durable designs, transient task plansYYYY-MM-DD-<topic>-design.md records lasting decisions and delivery boundaries; step-by-step agent plans stay in the task session.

Full rationale: Repository Knowledge Lifecycle.

Development

This repo is both the marketplace catalog and the plugin source. See AGENTS.md for the development workflow, local verification commands, and SHA-based versioning policy.

Common commands:

make validate
make test-skills-link
make test-skills-status
make test-skills-unlink

License

This project is licensed under the MIT License.

Rendered live from gzb1128/skill-forge's GitHub README — not stored, always reflects the source repo.

6 Plugins

NameDescriptionCategorySource
agent-docsRepository knowledge tools for minimal AGENTS.md bootstrap, value-based capture, and focused AGENTS.md and docs auditsproductivitygzb1128/skill-forge
code-qualityCode quality tools — local quality review, clean commits, diff cleanup, and autonomous review-fix loopsproductivitygzb1128/skill-forge
skill-creatorSkill creation tools — migrate upstream skills, create and improve plugin skills, design RED/GREEN verification, run skill evals, and tune trigger descriptionsproductivitygzb1128/skill-forge
opencode-customizeOpenCode customization tools — hydrate custom provider model metadata and integrate external project directories with referencesproductivitygzb1128/skill-forge
codex-strategyCodex subagent strategy — route implementation workers by design clarity and coupling while leaving other tasks to native model selectionproductivitygzb1128/skill-forge
github-contribGitHub contribution discovery — investigate open issues in a repository and rank them by how contribute-able they are, with difficulty, claimed status, linked PRs, staleness, maintainer engagement, and area indicators for filteringproductivitygzb1128/skill-forge

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.