Skillforce is a small skill pack for disciplined software work across Codex, Claude Code, Cursor, and other Agent Skills-compatible tools.
It provides three focused skills:
| Skill | Purpose | Use when |
|---|---|---|
brainstorm |
Turns vague product, feature, architecture, or behavior ideas into validated designs before implementation. | You need to clarify intent, assumptions, constraints, alternatives, and decisions before coding. |
planner |
Creates phased, testable implementation plans with atomic tasks. | You have a design/specification and need a concrete execution plan. |
code-review |
Reviews staged and unstaged changes against a plan or spec. | You need a findings-first review for correctness, scope creep, tests, reuse, performance, and commit readiness. |
List available skills:
npx skills add pridees/skillforce --listInstall all skills into every detected supported agent:
npx skills add pridees/skillforce --allInstall a specific skill into Codex, Cursor, and Claude Code:
npx skills add pridees/skillforce --skill brainstorm --agent codex cursor claude-code
npx skills add pridees/skillforce --skill planner --agent codex cursor claude-code
npx skills add pridees/skillforce --skill code-review --agent codex cursor claude-codeSkillforce includes a Claude Code plugin manifest and a marketplace manifest:
.claude-plugin/plugin.json.claude-plugin/marketplace.json
In Claude Code, add this repository as a plugin marketplace, then install the plugin:
/plugin marketplace add pridees/skillforce
/plugin install skillforce@skillforce
After installation, restart Claude Code if prompted. Claude Code discovers the skills from skills/<skill-name>/SKILL.md.
Skillforce includes a Cursor plugin manifest and a marketplace manifest:
.cursor-plugin/plugin.json.cursor-plugin/marketplace.json
In a Cursor Agent chat, install directly from GitHub:
/add-plugin skillforce@https://github.com/pridees/skillforce
Cursor discovers the shared skills/ directory through .cursor-plugin/plugin.json.
Skillforce includes a Codex plugin manifest:
.codex-plugin/plugin.json
The manifest points to:
{
"skills": "./skills/"
}For local development, you can also install the skills directly with npx skills:
npx skills add pridees/skillforce --agent codex --skill '*'Skillforce ships metadata for multiple agent ecosystems:
| Target | Metadata |
|---|---|
| Codex | .codex-plugin/plugin.json, agents/openai.yaml, skills/*/agents/openai.yaml |
| Claude Code | .claude-plugin/plugin.json, .claude-plugin/marketplace.json |
| Cursor | .cursor-plugin/plugin.json, .cursor-plugin/marketplace.json |
| pi / skills.sh | package.json with pi.skills |
The plugin logo is stored at:
assets/skillforce.svg
Codex and Cursor manifests reference this logo for UI display.
MIT. See LICENSE.