From skills
Parent skill for feature and project workflows. Use when the user wants to build a project, add a feature, polish a skill, test all skills, or browse the skill catalog. Routes to add-project (build project from idea), improve-skill (refine one skill in a sandbox), test-skills (validate full skill composition), or any child skill by name.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills:add-featureThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- markdownlint-disable MD060 -->
This skill is the entry point for project and feature workflows. Use it to choose the right child skill or to see the full catalog.
| Skill | When to use |
|---|---|
| add-spec | User says "spec a project", "create a spec", "spec this idea", "plan a project", "write a spec". Runs full brainstorming workflow then writes a no-frills spec to docs/specs/{name}.md for Ralph loops and add-project. |
| add-project | User says "build project", "new project", "create project", "scaffold project". Creates project shell + Ralph execution loop (Phase 1 delegates to add-spec for the spec); does not scaffold Next.js (Ralph does that at step 1.1). |
| improve-skill | User says "polish a skill", "refine skill", "test a skill", "improve skill docs", "validate a skill". Iteratively implements one skill in a sandbox, validates, reflects on errors, updates SKILL.md, reverts, retries until clean. |
| test-skills | User says "test all skills", "validate skill composition", "integration test skills". Applies all skills in dependency order across sandboxes, validates composition, fixes markdown, ports back. |
| eval-projects | User says "eval projects", "evaluate loops", "review ralph loops", "suggest loop improvements". Reviews evaluation tracking from all ralph loops and logs in loops/, then suggests critical and nice-to-have improvements. |
/skills:add-project or /skills:create-next). The agent loads that skill's full instructions.skills/<name>/SKILL.md. References in add-project, improve-skill, and test-skills use skills/ as the canonical root.The plugin provides the following skills. Invoke any by name when the task matches that skill's scope.
Child skills declare dependencies in their frontmatter (metadata.dependencies or dependencies). When applying multiple skills, respect dependency order (e.g. create-next before add-shadcn; db before auth). add-project and test-skills build dependency graphs from skill frontmatter.
npx claudepluginhub mattwoodco/skills --plugin skillsPlans architecture for new Claude Code skills via domain discovery, use case decomposition, complexity tier assessment, sub-skill breakdown, and file structure design.
Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends OpenCode's capabilities with specialized knowledge, workflows, or tool integrations.
Enforces mandatory Skill tool invocation before any response or clarifying questions at conversation start to discover and apply relevant skills.