Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By devstefancho
Orchestrate agent teams for parallel task execution, automate browser interactions on complex sites, generate tested production code from specs, manage git worktrees and pull requests, and build a structured personal wiki from raw notes.
npx claudepluginhub devstefancho/skillsCreates and manages an agent team (planner + implementer teammates) for the current worktree session. Use when user says "create team", "팀 생성", "팀 만들어줘", "agent team", or wants a planner+implementer spec-driven workflow in a worktree session. Also covers team operations — cleanup ("팀 정리", end teammates) and expand ("팀원 추가", add a role) — folded from the former agent-team commands.
Splits current project work into parallel-safe task groups with worktree branch names and structured starting prompts. Use only on manual /split-work invocation — no automatic trigger.
Interactive headed-browser walkthrough with playwright-cli — attaches to the user's browser and advances one step per user confirmation, with explicit keyword gates for irreversible actions like final submit or payment. Use for iframe-heavy Korean sites (홈택스, 정부24, 은행, 쇼핑몰) done together with the user, or when the user says 브라우저 보면서 같이 진행, headed 모드로 같이, 단계별로 진행해줘, 홈택스 같이, 정부24 같이, 한 스텝씩, 한 단계씩 진행, walkthrough 모드, or step-by-step browser.
Runs app test scenarios through Computer Use MCP and produces a structured UI/UX feedback report with screenshot evidence. Use when the user says computer use 테스트, 앱 테스트, UI 테스트, cu test, computer use test, or 앱 QA.
Generates a distinctive standalone HTML preview from a saved UI brainstorm idea. Use when the user wants to visualize a brainstorm idea as a concrete mockup, prototype, preview, landing page, dashboard, or product screen with strong design quality.
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Claude Code settings and skills for spec-driven development workflows
Workflow skills and agents: code-walk-thru, log-work, make-issue-spec skills; ui-tester agent for browser-based UI validation
Focused agentic engineering workflow: design-doc, spec, plan, implement, tdd, refactor, review, address-pr-feedback, browser-verify, explain-visually, compress, branch, and commit.
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.
Workflow skills and shared instructions for coding agents.
Structured development skills for any project. Provides brainstorming, planning, parallel agent development, browser testing, systematic debugging, and self-improvement workflows.
Spec-driven development with search, conflict detection, and reporting
Automates lint, test, commit, push, PR creation, and worktree cleanup workflow
Implement code with tests from specs or direct requests
Agent team management - create, expand, and cleanup teams for worktree sessions
Brainstorm future features and improvements with wireframes and implementation detection
A single skills repository for AI coding agents (Claude Code, Codex CLI, and others), structured Matt-Pocock style: every skill lives at skills/<category>/<name>/SKILL.md, the whole repo is one plugin, and the primary install path is the tool-agnostic npx skills installer.
Skills in this repo install into 70+ agents (Claude Code, Codex, Cursor, Copilot, ...) via the skills CLI:
# Interactive: pick skills + target agents
npx skills@latest add devstefancho/claude-plugins
# List available skills without installing
npx skills add devstefancho/claude-plugins --list
# Install one skill non-interactively
npx skills add devstefancho/claude-plugins --skill writing-specs -a claude-code -y
# Install everything to all detected agents
npx skills add devstefancho/claude-plugins --all
Pick the skills you want; the installer copies them into your coding agent. Re-run to add or update skills.
Codex CLI: install via the same
npx skills addpath. (If your Codex version doesn't yet support npx-installed skills, clone the repo and point your skills directory atskills/— see Local development.)
| Skill | Description |
|---|---|
| writing-specs | Write and manage spec files with search, conflict detection, and reporting |
| writing-tasks | Decompose specs into persistent task files with a dependency graph and progress |
| writing-flows | Write single-scenario Flow docs with a Mermaid diagram, step branches, and source references |
| implement-with-test | Implement a task with tests; auto-detects the test framework |
| test-commit-push-pr-clean | Branch-safe finish: lint, test, commit, push, open PR, clean worktrees |
| Skill | Description |
|---|---|
| create-team | Create and manage a planner + implementer agent team (create / cleanup / expand) |
| split-work | Split current work into parallel-safe task groups with worktree branches |
| Skill | Description |
|---|---|
| browser-walkthrough | Headed, step-by-step browser walkthrough for iframe/security-heavy sites |
| computer-use-test | Run app test scenarios via Computer Use MCP and report UI/UX feedback |
| ui-prototype-preview | Turn a saved brainstorm idea into a standalone HTML prototype |
| Skill | Description |
|---|---|
| brain-storm | Brainstorm features/improvements from the current codebase (pre-spec ideation) |
| session-resume | Resume a previous Claude Code / Codex session from its JSONL transcript |
| llm-wiki | Maintain an LLM-powered personal wiki from raw sources |
| Skill | Description |
|---|---|
| hermes-runtime | Talk to / control the Hermes companion runtime (chat, run, status, jobs, setup) |
| setup-notification | Install macOS TTS + dialog hooks for Claude Code Stop/Notification events |
Every skill follows the same conventions (inspired by mattpocock/skills):
description is two sentences: what it does, then Use when [explicit triggers].SKILL.md stays under ~100 lines — terse, imperative, with phase workflows and checklist gates.reference.md, templates/, scripts/), linked one level deep.See the SKILL.md conventions section in AGENTS.md before adding or editing a skill.
.claude-plugin/plugin.json # single plugin manifest — lists every skill
skills/
<category>/
<skill-name>/
SKILL.md # required: name + description frontmatter + instructions
... # optional supporting files: scripts/, commands/, templates/
docs/adr/ # architecture decision records
evals/ # skill eval suites (dev only, not shipped)
A skill is the unit. There are no per-plugin wrappers, no marketplace.json, and no per-tool manifests — multi-agent reach is delegated to the npx skills installer.
git clone https://github.com/devstefancho/claude-plugins.git
cd claude-plugins
npx skills@latest add ./--plugin-dir (see scripts/cldp.sh).