By ohdowon064
Autonomous dev pipeline for Claude Code. Spec in → Plan → TDD → Verify → Code Review → Skill maintenance, all automated.
Phase별 코드 변경사항을 리뷰하여 설계 품질, 보안, 성능, 아키텍처 일관성을 평가합니다. verify-implementation의 기계적 검증과 겹치지 않는 판단 영역을 담당합니다.
프로젝트의 전체 컨텍스트를 한 번에 분석합니다. 디렉토리 구조, 패키지 매니저, 테스트 프레임워크, CI/CD, 린터, 기존 코드 패턴, git 변경사항, verify 스킬 갭까지 통합 분석합니다. feature-planner의 프로젝트 분석이나 manage-skills의 변경사항 분석에 사용됩니다.
verify 스킬의 SKILL.md를 생성하거나 업데이트합니다. feature-planner에서 Phase별 verify 스킬 생성 시 여러 인스턴스가 병렬 실행되고, manage-skills에서 스킬 생성/업데이트 시에도 사용됩니다.
개별 verify 스킬을 실행하여 PASS/FAIL 결과를 반환합니다. verify-implementation에서 여러 인스턴스가 병렬로 실행되어 동시 검증을 수행합니다. TDD 순서 검증 모드도 지원합니다.
코드 변경사항을 리뷰하여 설계 품질, 보안, 성능, 아키텍처 일관성을 평가합니다. PR 전 리뷰, 특정 파일/디렉토리 리뷰, 최근 변경 리뷰를 지원합니다. 키워드: review, 리뷰, code review, 코드 리뷰, PR, 보안, security, 설계, design.
기획서 또는 기능 요구사항을 받아 계획 수립부터 TDD 개발, 검증, 스킬 유지보수까지 전체 파이프라인을 자동으로 오케스트레이션합니다. 사용자는 기획서를 넣고 핵심 의사결정에만 개입하면 됩니다. 키워드: dev, develop, 개발, 구현, implement, build, 만들어, 기능, feature, 기획서, spec, 요구사항.
기능 개발 계획을 Phase 기반으로 수립(CREATE)하고, 기존 계획을 수정(UPDATE)하며, 완료 처리(COMPLETE)합니다. 각 Phase에 대한 verify 스킬을 자동 생성합니다. 기존 레포와 신규 레포 모두 지원합니다. 기능 구현, 개발 계획, 태스크 분해, 로드맵, TDD 전략, 계획 수정, 계획 완료, Phase 추가/삭제를 요청할 때 이 스킬을 사용하세요. 키워드: plan, 계획, phases, breakdown, strategy, roadmap, 설계, 구현, feature, 기능, update, 수정, complete, 완료.
세션 변경사항과 계획 문서를 분석하여 검증 스킬의 드리프트를 탐지하고 수정합니다. 새 스킬 생성, 기존 스킬 업데이트, 레지스트리 동기화를 수행합니다. 기존 레포와 신규 레포 모두 지원하며, 스킬이 0개인 콜드 스타트도 처리합니다. 새로운 패턴/규칙 도입 후, PR 전 스킬 커버리지 점검, 스킬 정리/동기화가 필요할 때 반드시 이 스킬을 사용하세요. 키워드: manage, skills, 스킬, 관리, 유지보수, drift, coverage, 커버리지, 동기화, sync.
소규모 작업(버그 수정, 작은 기능 추가, 변수명 일괄 변경 등)을 Phase/PLAN 없이 빠르게 처리합니다. 수정 후 기존 verify 스킬을 실행하고 커밋합니다. 키워드: quick, fix, 버그, rename, 수정, 빠르게, 간단한, 작은.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
An autonomous development pipeline plugin for Claude Code.
Feed it a spec, and it automatically handles planning, TDD development, verification, and skill maintenance.
/dev Implement a user authentication system. I need login, signup, and password reset.
# Install with project scope (available only in the current project)
claude plugin install /path/to/better-skills --scope project
# Install with user scope (available across all projects)
claude plugin install /path/to/better-skills
# Install directly from GitHub
claude plugin install github:ohdowon064/better-skills --scope project
After installation, Claude Code automatically recognizes the skills/ and agents/ directories.
# Pass a spec as text
/dev Implement a user authentication system. I need login, signup, and password reset.
# Pass a markdown file
/dev docs/auth-spec.md
# Resume interrupted work
/dev PLAN_auth
You only need to intervene at 3 points:
# Bug fix
/quick Fix login error message not showing on failure
# Bulk rename
/quick Rename userName to username across src/
# Small feature
/quick Add dark mode toggle button
No phases, no plan document — just fix, verify, commit.
# Create a plan only
/feature-planner
# Update an existing plan
/feature-planner update PLAN_auth
# Mark a plan as complete
/feature-planner complete PLAN_auth
# Run verification only
/verify-implementation
/verify-implementation phase-1
/verify-implementation --current-phase
# Check skills
/manage-skills
# Code review
/code-review
/code-review --staged
/code-review --branch feature/auth
Spec Input → Planning → TDD per Phase → Verification → Code Review → Integration Review → Completion → Skill Cleanup
│ │ │ │ │
│ │ │ │ └─ code-reviewer (integration)
│ │ │ └─ code-reviewer (phase)
│ │ └─ verify-implementation
│ └─ RED → GREEN → REFACTOR
└─ feature-planner
/dev automatically orchestrates this entire flow.
| Skill | Description |
|---|---|
/dev | Full pipeline orchestrator. Spec → finished feature, fully automated |
/quick | Lightweight tasks without phases. Bug fixes, small features, bulk renames |
/feature-planner | Breaks features into 3-7 phases. CREATE / UPDATE / COMPLETE modes |
/verify-implementation | Runs verify skills in parallel via subagents, generates unified verification report |
/manage-skills | Detects and fixes verify skill drift in response to code changes |
/code-review | Code review. Supports recent changes, specific paths, staged, and branch diffs |
| Agent | Role | Used By |
|---|---|---|
codebase-scanner | Unified project environment analysis (structure, tests, linters, CI/CD, git changes) | feature-planner, manage-skills |
skill-writer | Creates/updates verify skills (parallel execution) | feature-planner, manage-skills |
test-runner | Runs individual verify skills + TDD order validation | verify-implementation |
code-reviewer | Design/security/performance review (per-phase + integration) | dev, code-review |
TDD is not a recommendation — it's a mandatory pipeline stage.
Skill status is determined by registry presence:
When a phase completes, verify-phase-N-* skills are consolidated into general verify-* skills (new skill created + old ones removed). Unnecessary skills are deleted from both the registry and filesystem; they can be recovered via git log if needed.
When you skip an issue during verification, you're immediately asked whether to add that check to the skill's Exceptions. If approved, the skill is auto-updated so the same false positive doesn't recur.
npx claudepluginhub ohdowon064/better-skills --plugin better-skillsAccess thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Complete developer toolkit for Claude Code
Intelligent draw.io diagramming plugin with AI-powered diagram generation, multi-platform embedding (GitHub, Confluence, Azure DevOps, Notion, Teams, Harness), conditional formatting, live data binding, and MCP server integration for programmatic diagram creation and management.
Feature development with code-architect/explorer/reviewer agents, CLAUDE.md audit and session learnings, and Agent Skills creation with eval benchmarking from Anthropic.
Orchestrate multi-agent teams for parallel code review, hypothesis-driven debugging, and coordinated feature development using Claude Code's Agent Teams
Production-grade engineering skills for AI coding agents — covering the full software development lifecycle from spec to ship.