claude-skill-lord
v2.1.0
Published
Curated Claude Code plugin — 43 agents, 161 skills, 114 commands, 11 language rules
Maintainers
Readme
Claude Skill Lord
The all-in-one Claude Code plugin you install once and never outgrow.
Why Claude Skill Lord?
- Stop configuring, start building — 161 skills, 43 agents, 114 commands work out of the box
- Multi-language support — 11 language-specific rule sets (TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift) + common rules
- Language-specific agents — dedicated reviewers and build resolvers for 8 languages
- Design intelligence built-in — 67 UI styles, 161 color palettes, reasoning engine for production-grade design decisions
- Battle-tested foundations — curated agents, skills, commands, and rules for production development
Quick Start
Install globally (recommended)
npm i -g claude-skill-lordSet up in any project
cd your-project
csl init # install all components
claude # start coding with Claude Skill LordThat's it. csl init copies skills, agents, and commands into .claude/ and generates plugin.json automatically.
CLI commands
csl init # install everything
csl init --dry-run # preview without copying
csl init --fresh # clean reinstall
csl init --no-fonts # skip canvas font files (~7MB)
csl update # update CLI to latest version
csl migrate # update project files after csl update
csl migrate --dry-run # preview what would change
csl diff # compare project files with source package
csl uninstall # remove from current project
csl doctor # check health + available updates
csl list # show all components with install statusAlternative: per-project install
npm i claude-skill-lord
npx csl initAlternative: git clone
git clone https://github.com/donganhvuphp/Claude-Skills-Lord.git
cd Claude-Skills-Lord
node scripts/sl.js init full --target /path/to/your/projectArchitecture
graph TD
subgraph Plugin["Claude Skill Lord Plugin"]
A["Agents (43)"]
B["Commands (114)"]
C["Skills (161)"]
R["Rules (11 langs)"]
end
subgraph Intelligence["Intelligence Layer"]
E["Quality Gate"]
end
subgraph Infra["Foundation"]
F["Hooks"]
G["Workflows"]
H["Manifests"]
CTX["Contexts"]
end
A --> E
B --> E
C --> E
R --> E
E --> F
E --> G
E --> H
CTX --> EUsage
Plan → Code → Test
The most common workflow — plan first, then implement, then validate:
/plan Add user authentication with OAuth2
/code
/testFix issues
/fix login not redirecting after auth
/fix:ci # fix from CI/CD logs
/fix:types # fix TypeScript errors
/fix:fast connection timeout on API # quick fix, no deep researchDesign UI
/design:good Landing page for a fintech SaaS
/design:fast Signup button with glassmorphism style
/design:3d Interactive 3D product showcaseExplore and understand code
/scout src/ find all API endpoints
/route I need to refactor the authentication module
/review:codebaseBuild features end-to-end
/cook Add dark mode toggle in settings page
/brainstorm Should we use WebSocket or SSE for real-time notifications?
/bootstrap:auto Next.js SaaS starter with auth and paymentsMulti-agent workflows (new)
/multi-plan Complex feature requiring multiple perspectives
/multi-backend Microservice architecture implementation
/orchestrate Coordinate multiple agents on a large taskSession management (new)
/save-session # save current work context
/resume-session # resume where you left off
/checkpoint # create a recovery pointLanguage-specific workflows (new)
/rust-build # build Rust project
/go-review # review Go code
/kotlin-test # test Kotlin project
/cpp-build # build C++ project
/python-review # review Python codeKey Commands
| Command | Description |
|---------|-------------|
| /plan | Create implementation plan (variants: fast, hard, two, cro, ci) |
| /code | Start coding from plan |
| /test | Run and validate tests |
| /fix | Fix issues (variants: fast, hard, ci, test, types, ui, logs) |
| /cook | Implement features end-to-end |
| /tdd | Test-driven development workflow |
| /debug | Deep root-cause investigation |
| /design:good | Create UI designs (variants: fast, good, 3d, screenshot, video, describe) |
| /audit | Run quality gate checks |
| Category | Commands |
|----------|----------|
| Core | /plan, /code, /test, /fix, /cook, /debug, /tdd, /verify |
| Review | /code-review, /python-review, /rust-review, /go-review, /cpp-review, /kotlin-review |
| Build | /build-fix, /cpp-build, /go-build, /kotlin-build, /rust-build, /gradle-build |
| Test | /test-coverage, /e2e, /cpp-test, /go-test, /kotlin-test, /rust-test |
| Design | /design:fast, /design:good, /design:3d, /design:screenshot, /design:video, /design:describe |
| Content | /content:fast, /content:good, /content:cro, /content:enhance |
| Docs | /docs:init, /docs:update, /docs:summarize, /update-docs |
| Git | /git:pr, /git:cp, /git:cm, /commit_gen |
| Multi-agent | /multi-plan, /multi-workflow, /multi-backend, /multi-frontend, /multi-execute, /orchestrate |
| Session | /save-session, /resume-session, /sessions, /checkpoint |
| Scout | /scout, /scout:ext |
| Bootstrap | /bootstrap, /bootstrap:auto, /bootstrap:auto/fast |
| Skills | /skill:add, /skill:create, /skill:optimize, /skill:fix-logs, /skill-create, /skill-health |
| Quality | /quality-gate, /audit, /refactor-clean, /prompt-optimize |
| Loop | /loop-start, /loop-status |
| Other | /brainstorm, /learn, /evolve, /model-route, /ask, /journal, /watzup |
See commands/ for the full list.
Agents
Core Agents
| Agent | Role | |-------|------| | planner | Technical planning with 9 mental models | | architect | System design and scalability | | code-reviewer | Quality assessment with >80% confidence filtering | | security-reviewer | OWASP vulnerability detection | | tdd-guide | RED-GREEN-REFACTOR workflow | | debugger | Root cause investigation methodology | | build-error-resolver | Build and compile error fixing | | e2e-runner | Playwright E2E test generation | | refactor-cleaner | Dead code cleanup | | git-manager | Version control operations | | docs-manager | Documentation management | | doc-updater | Documentation specialist | | docs-lookup | Documentation researcher | | project-manager | Progress tracking | | ui-ux-designer | UI/UX design | | database-admin | Database optimization | | database-reviewer | Database review specialist | | brainstormer | Solution ideation (YAGNI/KISS/DRY) | | copywriter | Conversion-focused content | | scout | Parallel codebase exploration | | scout-external | External tool-based exploration | | loop-operator | Autonomous development loops | | chief-of-staff | Multi-channel coordination | | harness-optimizer | Agent self-optimization | | quality-gate | Output validation | | researcher | Deep research agent | | tester | Test execution agent | | mcp-manager | MCP server management | | journal-writer | Session journaling |
Language-Specific Reviewers
| Agent | Language | |-------|----------| | typescript-reviewer | TypeScript | | python-reviewer | Python | | rust-reviewer | Rust | | go-reviewer | Go | | kotlin-reviewer | Kotlin | | java-reviewer | Java | | cpp-reviewer | C++ | | flutter-reviewer | Flutter/Dart |
Language-Specific Build Resolvers
| Agent | Language | |-------|----------| | cpp-build-resolver | C++ | | rust-build-resolver | Rust | | java-build-resolver | Java | | kotlin-build-resolver | Kotlin | | go-build-resolver | Go | | pytorch-build-resolver | PyTorch |
Skills (161)
All skills live in ./skills/<name>/SKILL.md — flat structure.
Development Core
debugging, code-review, tdd-workflow, testing, backend-development, frontend-development, web-frameworks, ui-styling, databases, api-design, devops, sequential-thinking, research, planning, problem-solving, coding-standards
Frontend & Design
ui-ux-pro-max, react-best-practices, frontend-patterns, frontend-design, frontend-slides, nextjs-turbopack, design, design-system, brand, banner-design, slides, aesthetic, web-design-guidelines, liquid-glass-design, threejs
Backend & API
backend-patterns, api-design, mcp-server-patterns, mcp-management, mcp-builder
Language Patterns
python-patterns, golang-patterns, rust-patterns, kotlin-patterns, perl-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, nuxt4-patterns
Language Testing & Security
python-testing, golang-testing, rust-testing, kotlin-testing, cpp-testing, perl-testing, perl-security, django-tdd, laravel-tdd, springboot-tdd, django-security, laravel-security, springboot-security, django-verification, laravel-verification, springboot-verification
Language Specialized
kotlin-coroutines-flows, kotlin-exposed-patterns, kotlin-ktor-patterns, java-coding-standards, cpp-coding-standards, swift-actor-persistence, swift-concurrency-6-2, swift-protocol-di-testing, jpa-patterns, compose-multiplatform-patterns
Mobile
mobile-development, android-clean-architecture, flutter-dart-code-review
DevOps & Infrastructure
deployment-patterns, docker-patterns, vercel-deploy
Database
postgres-patterns, database-migrations, clickhouse-io
AI & ML
ai-multimodal, pytorch-patterns, google-adk-python, cost-aware-llm-pipeline, foundation-models-on-device, prompt-optimizer
Agentic Engineering
agentic-engineering, ai-first-engineering, ai-regression-testing, agent-harness-construction, agent-eval, autonomous-loops, continuous-agent-loop, continuous-learning, continuous-learning-v2, eval-harness, verification-loop, enterprise-agent-ops
Content & Business
article-writing, content-engine, crosspost, market-research, investor-outreach, investor-materials, shopify
Security & Auth
security-review, security-scan, better-auth, payment-integration, safety-guard
Media & Processing
media-processing, video-editing, videodb, fal-ai-media, nutrient-document-processing
Tools & Utilities
repomix, chrome-devtools, docs-seeker, documentation-lookup, document-skills, skill-creator, data-scraper-agent, exa-search, x-api, bun-runtime, nanoclaw-repl, dmux-workflows
Research & Strategy
deep-research, strategic-compact, search-first, iterative-retrieval, codebase-onboarding, blueprint, santa-method, team-builder, architecture-decision-records
Domain-Specific
carrier-relationship-management, customs-trade-compliance, energy-procurement, inventory-demand-planning, logistics-exception-management, production-scheduling, quality-nonconformance, returns-reverse-logistics, visa-doc-translate
Meta & Config
claude-code, claude-api, claude-devfleet, configure-ecc, skill-comply, skill-stocktake, rules-distill, plankton-code-quality, ralphinho-rfc-pipeline, regex-vs-llm-structured-text, click-path-audit, context-budget, content-hash-cache-pattern, project-guidelines-example, plan-preview, template-skill, e2e-testing
Rules (11 Languages + Common)
Language-specific coding rules in ./rules/:
| Language | Files | |----------|-------| | Common | agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing | | TypeScript | coding-style, hooks, patterns, security, testing | | Python | coding-style, hooks, patterns, security, testing | | Go | coding-style, hooks, patterns, security, testing | | Rust | coding-style, hooks, patterns, security, testing | | Java | coding-style, hooks, patterns, security, testing | | Kotlin | coding-style, hooks, patterns, security, testing | | C++ | coding-style, hooks, patterns, security, testing | | C# | coding-style, hooks, patterns, security, testing | | PHP | coding-style, hooks, patterns, security, testing | | Perl | coding-style, hooks, patterns, security, testing | | Swift | coding-style, hooks, patterns, security, testing |
Hooks & Automation
| Hook | Trigger | What it does | |------|---------|--------------| | Block no-verify | PreToolUse | Prevents bypassing git hooks | | Config protection | PreToolUse | Prevents weakening linter/formatter configs | | Scout block | PreToolUse | Controls scout command usage | | Auto-format | PostToolUse | Runs Biome or Prettier on edited JS/TS files | | Type check | PostToolUse | Validates TypeScript after edits | | Console.log check | Stop | Flags debug code left in modified files | | Quality gate | PostToolUse | Lint + types + tests + security checks | | Modularization | PostToolUse | Suggests splitting files >200 LOC | | Session persistence | Stop | Persist session state for cross-session continuity | | Discord/Telegram notify | Stop | Send notifications on session end |
Contexts
Development contexts in ./contexts/ for specialized workflows:
| Context | Use Case |
|---------|----------|
| dev.md | Development context |
| research.md | Research context |
| review.md | Code review context |
Statusline
Built-in cross-platform statusline showing real-time session metrics:
- Cost tracking — cost per hour and session total via ccusage
- Token count — current token usage
- Session timer — remaining time with color-coded warnings
- Git branch — current branch or commit hash
- Model info — active model name and version
Available in 3 variants: scripts/statusline.js (Node.js), scripts/statusline.sh (Bash), scripts/statusline.ps1 (PowerShell).
Development Config
| File | Purpose |
|------|---------|
| .commitlintrc.json | Enforces conventional commit message format |
| .releaserc.json | Semantic release automation for npm publishing |
| .repomixignore | Ignore patterns for repomix skill |
| .env.example | Template for Discord/Telegram/Gemini API keys |
| docs/code-standards.md | Project-level coding standards |
Testing
node tests/run-all.jsContributing
See CONTRIBUTING.md for guidelines.
