Subagents, slash commands, skill scaffolder, and discoverability pass (#28)

Growth-focused additions drawn from studying alirezarezvani/claude-skills —
broaden content types beyond skills, lower contribution friction, and improve
discoverability.

Breadth (content types):
- agents/ — 4 Claude Code subagents (pm-partner, sprint-master, cs-guardian,
  launch-captain) that delegate to the strongest skills and run their helper
  scripts to compute results.
- commands/ — 6 slash commands (/prd, /rice, /sprint-plan, /health-scorecard,
  /retro, /exec-summary).
- install.sh --agent claude now installs skills + agents + commands into ~/.claude/.

Contribution UX:
- scripts/new-skill.mjs (npm run new-skill) scaffolds a SKILL.md that already
  passes SkillCheck.
- package.json exposes npm run entry points (new-skill, skillcheck, build:exports,
  build:web, check).

Discoverability:
- Keyword-rich README H1 (Agent Skills for Claude, ChatGPT, Gemini, Cursor,
  Codex & Hermes), subagent/command count badges, a Subagents & Slash Commands
  section, and a Star History chart. Contributing now points at the scaffolder.

CHANGELOG updated. SkillCheck, exports, and web index all verified in sync.


Claude-Session: https://claude.ai/code/session_016JWn5jRD5tcEFKrubjQ6Px

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
mohitagw15856
2026-06-17 13:56:19 +01:00
committed by GitHub
parent 05b6d799f0
commit a8a5bab9ce
17 changed files with 374 additions and 4 deletions
+11
View File
@@ -10,6 +10,17 @@ each new wave of skills bumps the **major** version, extensions and fixes bump
## [Unreleased]
### Added
- **Subagents & slash commands** — the library now ships content beyond skills:
4 Claude Code subagents in [`agents/`](agents/) (`pm-partner`, `sprint-master`,
`cs-guardian`, `launch-captain`) and 6 slash commands in [`commands/`](commands/)
(`/prd`, `/rice`, `/sprint-plan`, `/health-scorecard`, `/retro`, `/exec-summary`).
`install.sh --agent claude` now installs skills **+** agents **+** commands.
- **Skill scaffolding generator** — `scripts/new-skill.mjs` (`npm run new-skill`) creates a
`SKILL.md` that already passes SkillCheck, lowering the barrier to contributing.
- **`package.json`** — `npm run` entry points (`new-skill`, `skillcheck`, `build:exports`,
`build:web`, `check`) so the repo reads as a real project.
- **README discoverability pass** — keyword-rich H1 (Agent Skills for Claude, ChatGPT,
Gemini, Cursor, Codex & Hermes), subagent/command count badges, and a Star History chart.
- **SkillCheck validator** — `scripts/skillcheck.mjs` validates every `SKILL.md` against
the authoring standard (frontmatter, name/folder match, trigger + produces clauses,
required headings, tier referential integrity). Errors fail CI; `--strict` also fails on