claude-skill-lord 2.0.6 → 2.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/CLAUDE.md +1 -1
  2. package/README.md +5 -5
  3. package/agents/brainstormer.md +2 -0
  4. package/agents/code-reviewer.md +1 -0
  5. package/agents/copywriter.md +1 -0
  6. package/agents/database-admin.md +1 -0
  7. package/agents/debugger.md +1 -0
  8. package/agents/docs-manager.md +1 -0
  9. package/agents/journal-writer.md +1 -0
  10. package/agents/mcp-manager.md +1 -0
  11. package/agents/planner.md +2 -0
  12. package/agents/researcher.md +1 -0
  13. package/agents/tester.md +1 -0
  14. package/agents/ui-ux-designer.md +2 -1
  15. package/commands/build-fix.md +4 -0
  16. package/commands/checkpoint.md +4 -0
  17. package/commands/code-review.md +4 -0
  18. package/commands/eval.md +4 -0
  19. package/commands/git/cm.md +3 -1
  20. package/commands/git/cp.md +4 -1
  21. package/commands/harness-audit.md +4 -0
  22. package/commands/learn.md +4 -0
  23. package/commands/loop-start.md +4 -0
  24. package/commands/loop-status.md +4 -0
  25. package/commands/model-route.md +4 -0
  26. package/commands/multi-backend.md +4 -0
  27. package/commands/multi-execute.md +4 -0
  28. package/commands/multi-frontend.md +4 -0
  29. package/commands/multi-plan.md +4 -0
  30. package/commands/multi-workflow.md +4 -0
  31. package/commands/pm2.md +4 -0
  32. package/commands/quality-gate.md +4 -0
  33. package/commands/refactor-clean.md +4 -0
  34. package/commands/test-coverage.md +4 -0
  35. package/commands/update-codemaps.md +4 -0
  36. package/commands/update-docs.md +4 -0
  37. package/commands/verify.md +4 -0
  38. package/docs/ARCHITECTURE.md +28 -53
  39. package/docs/COMMAND-REFERENCE.md +161 -30
  40. package/docs/SKILL-CATALOG.md +247 -77
  41. package/package.json +2 -2
  42. package/scripts/install.js +9 -1
  43. package/skills/google-adk-python/SKILL.md +5 -0
  44. package/skills/manifest.json +812 -0
  45. package/skills/skill-stocktake/SKILL.md +1 -1
  46. package/skills/template-skill/SKILL.md +11 -0
@@ -1,57 +1,188 @@
1
1
  # Command Reference
2
2
 
3
- SkillLord provides 29 slash commands organized by function.
3
+ SkillLord provides 114 slash commands organized by function.
4
4
 
5
5
  ## Core Commands
6
6
 
7
7
  | Command | Description |
8
8
  |---------|-------------|
9
- | `/plan` | Restate requirements, assess risks, and create step-by-step implementation plan. Waits for user confirmation before touching code. |
10
- | `/code` | Start coding and testing an existing plan. |
11
- | `/test` | Run tests locally and analyze the summary report. |
12
- | `/fix` | Analyze and fix issues with auto-detected complexity. Variants: `fix:fast`, `fix:hard`, `fix:ci`, `fix:test`, `fix:types`, `fix:ui`, `fix:logs`. |
13
- | `/debug` | Deep debugging with systematic root cause analysis. |
14
- | `/audit` | Run quality checks lint, types, tests, security, plan completeness. |
15
- | `/verify` | Run comprehensive verification on current codebase state. |
9
+ | `/plan` | Intelligent plan creation with prompt enhancement |
10
+ | `/plan:fast` | No research — analyze and create an implementation plan |
11
+ | `/plan:hard` | Research, analyze, and create an implementation plan |
12
+ | `/plan:two` | Research & create a plan with 2 approaches |
13
+ | `/plan:cro` | Create a CRO plan for given content |
14
+ | `/plan:ci` | Analyze GitHub Actions logs and provide a fix plan |
15
+ | `/code` | Start coding & testing an existing plan |
16
+ | `/test` | Run tests locally and analyze the summary report |
17
+ | `/fix` | Analyze and fix issues (auto-detect complexity) |
18
+ | `/fix:fast` | Quick fix without deep research |
19
+ | `/fix:hard` | Use subagents to plan and fix hard issues |
20
+ | `/fix:ci` | Analyze GitHub Actions logs and fix issues |
21
+ | `/fix:test` | Run test suite and fix issues |
22
+ | `/fix:types` | Fix type errors |
23
+ | `/fix:ui` | Analyze and fix UI issues |
24
+ | `/fix:logs` | Analyze logs and fix issues |
25
+ | `/debug` | Deep debugging with systematic root cause analysis |
26
+ | `/audit` | Run quality checks — lint, types, tests, security |
27
+ | `/verify` | Run comprehensive verification on codebase state |
16
28
 
17
29
  ## Development Commands
18
30
 
19
31
  | Command | Description |
20
32
  |---------|-------------|
21
- | `/cook` | Implement a feature end-to-end, step by step. |
22
- | `/tdd` | Enforce test-driven development workflow. Scaffold interfaces, write tests first, then implement. 80%+ coverage target. |
23
- | `/build-fix` | Incrementally fix build and type errors with minimal, safe changes. |
24
- | `/refactor-clean` | Safely identify and remove dead code with test verification at every step. |
25
- | `/e2e` | Generate and run Playwright E2E tests. Creates test journeys, captures screenshots/videos/traces. |
26
- | `/bootstrap` | Bootstrap a new project step by step from requirements. |
27
- | `/evolve` | Analyze instincts and suggest or generate evolved structures. |
33
+ | `/cook` | Implement a feature step by step |
34
+ | `/cook:auto` | Implement a feature automatically |
35
+ | `/cook:auto/fast` | No research scout, plan & implement |
36
+ | `/tdd` | Enforce test-driven development workflow (80%+ coverage) |
37
+ | `/build-fix` | Incrementally fix build and type errors |
38
+ | `/refactor-clean` | Safely identify and remove dead code |
39
+ | `/e2e` | Generate and run Playwright E2E tests |
40
+ | `/bootstrap` | Bootstrap a new project step by step |
41
+ | `/bootstrap:auto` | Bootstrap a new project automatically |
42
+ | `/bootstrap:auto/fast` | Quick automatic bootstrap |
43
+ | `/evolve` | Analyze instincts and suggest evolved structures |
44
+ | `/test-coverage` | Analyze test coverage and generate missing tests |
28
45
 
29
46
  ## Planning & Analysis
30
47
 
31
48
  | Command | Description |
32
49
  |---------|-------------|
33
- | `/brainstorm` | Explore solutions and brainstorm feature approaches. |
34
- | `/route` | Analyze your current task and recommend the most relevant skills from the catalog. |
35
- | `/scout` | Scout given directories to respond to user requests. Parallel codebase exploration. |
36
- | `/ask` | Answer technical and architectural questions. |
37
- | `/model-route` | Recommend the best model tier for the current task by complexity and budget. |
38
- | `/quality-gate` | Run the ECC quality pipeline on demand for a file or project scope. |
50
+ | `/brainstorm` | Explore solutions and brainstorm feature approaches |
51
+ | `/scout` | Scout given directories for codebase exploration |
52
+ | `/scout:ext` | Use external agentic tools to scout directories |
53
+ | `/ask` | Answer technical and architectural questions |
54
+ | `/aside` | Answer a side question without losing current context |
55
+ | `/model-route` | Recommend the best model tier for the current task |
56
+ | `/quality-gate` | Run the ECC quality pipeline on demand |
57
+ | `/route` | Recommend relevant skills for current task |
58
+ | `/context-budget` | Analyze context window usage and find optimization opportunities |
59
+ | `/harness-audit` | Run a deterministic repository harness audit |
60
+ | `/eval` | Manage eval-driven development workflow |
61
+
62
+ ## Design Commands
63
+
64
+ | Command | Description |
65
+ |---------|-------------|
66
+ | `/design:good` | Create an immersive design |
67
+ | `/design:fast` | Create a quick design |
68
+ | `/design:3d` | Create interactive 3D designs with Three.js |
69
+ | `/design:screenshot` | Create a design based on screenshot |
70
+ | `/design:video` | Create a design based on video |
71
+ | `/design:describe` | Describe a design from screenshot/video |
39
72
 
40
73
  ## Content & Review
41
74
 
42
75
  | Command | Description |
43
76
  |---------|-------------|
44
- | `/review` | Comprehensive security and quality review of uncommitted changes. |
45
- | `/prompt-optimize` | Analyze a draft prompt and output an optimized, ECC-enriched version. Advisory only — does not execute. |
46
- | `/journal` | Write journal entries based on memories and recent code changes. |
77
+ | `/code-review` | Comprehensive security and quality review |
78
+ | `/review:codebase` | Scan & analyze the codebase |
79
+ | `/content:fast` | Write creative & smart copy (fast) |
80
+ | `/content:good` | Write good creative & smart copy |
81
+ | `/content:cro` | Optimize current content for conversion |
82
+ | `/content:enhance` | Analyze and enhance current copy |
83
+ | `/prompt-optimize` | Analyze and optimize a draft prompt (advisory only) |
84
+ | `/journal` | Write journal entries |
85
+ | `/watzup` | Review recent changes and provide summary |
86
+
87
+ ## Documentation Commands
88
+
89
+ | Command | Description |
90
+ |---------|-------------|
91
+ | `/docs` | Look up current documentation via Context7 |
92
+ | `/docs:init` | Analyze codebase and create initial documentation |
93
+ | `/docs:update` | Analyze codebase and update documentation |
94
+ | `/docs:summarize` | Summarize codebase documentation |
95
+ | `/update-docs` | Sync documentation with the codebase |
96
+ | `/update-codemaps` | Generate token-lean architecture documentation |
97
+
98
+ ## Git Commands
99
+
100
+ | Command | Description |
101
+ |---------|-------------|
102
+ | `/git:pr` | Create a pull request |
103
+ | `/git:cm` | Stage all files and create a commit |
104
+ | `/git:cp` | Stage, commit and push all code |
105
+ | `/commit_gen` | Generate conventional commit messages |
106
+
107
+ ## Multi-Agent Commands
108
+
109
+ | Command | Description |
110
+ |---------|-------------|
111
+ | `/multi-plan` | Multi-model collaborative planning |
112
+ | `/multi-workflow` | Multi-model collaborative development |
113
+ | `/multi-backend` | Backend-focused multi-model development |
114
+ | `/multi-frontend` | Frontend-focused multi-model development |
115
+ | `/multi-execute` | Multi-model collaborative execution |
116
+ | `/orchestrate` | Sequential and tmux/worktree orchestration |
117
+ | `/devfleet` | Orchestrate parallel Claude Code agents via DevFleet |
118
+
119
+ ## Session Management
120
+
121
+ | Command | Description |
122
+ |---------|-------------|
123
+ | `/save-session` | Save current session state |
124
+ | `/resume-session` | Resume from most recent session |
125
+ | `/sessions` | Manage session history and metadata |
126
+ | `/checkpoint` | Create or verify a checkpoint |
127
+
128
+ ## Language-Specific Commands
129
+
130
+ | Command | Description |
131
+ |---------|-------------|
132
+ | `/cpp-build` | Fix C++ build errors and CMake issues |
133
+ | `/cpp-review` | C++ code review for memory safety and modern idioms |
134
+ | `/cpp-test` | TDD workflow for C++ with GoogleTest |
135
+ | `/go-build` | Fix Go build errors and vet warnings |
136
+ | `/go-review` | Go code review for idiomatic patterns |
137
+ | `/go-test` | TDD workflow for Go with table-driven tests |
138
+ | `/kotlin-build` | Fix Kotlin/Gradle build errors |
139
+ | `/kotlin-review` | Kotlin code review for null safety and coroutines |
140
+ | `/kotlin-test` | TDD workflow for Kotlin with Kotest |
141
+ | `/rust-build` | Fix Rust build and borrow checker errors |
142
+ | `/rust-review` | Rust code review for ownership and lifetimes |
143
+ | `/rust-test` | TDD workflow for Rust with cargo-llvm-cov |
144
+ | `/python-review` | Python code review for PEP 8 and type hints |
145
+ | `/gradle-build` | Fix Gradle build errors for Android and KMP |
146
+
147
+ ## Skill Management
148
+
149
+ | Command | Description |
150
+ |---------|-------------|
151
+ | `/skill:add` | Add new reference files or scripts to a skill |
152
+ | `/skill:create` | Create a new agent skill |
153
+ | `/skill:optimize` | Optimize an existing agent skill |
154
+ | `/skill:fix-logs` | Fix agent skill based on logs.txt |
155
+ | `/skill-create` | Extract coding patterns from git history |
156
+ | `/skill-health` | Show skill portfolio health dashboard |
157
+ | `/rules-distill` | Scan skills to extract cross-cutting principles |
47
158
 
48
159
  ## Automation & Learning
49
160
 
50
161
  | Command | Description |
51
162
  |---------|-------------|
52
- | `/loop-start` | Start a managed autonomous loop pattern with safety defaults. |
53
- | `/loop-status` | Inspect active loop state, progress, and failure signals. |
54
- | `/learn` | Extract reusable patterns from the current session. |
55
- | `/skill-create` | Analyze local git history to extract coding patterns and generate SKILL.md files. |
56
- | `/commit_gen` | Generate a commit message based on staged files and rename branch to match task. |
57
- | `/watzup` | Review recent changes on current branch and provide a detailed summary. |
163
+ | `/loop-start` | Start a managed autonomous loop |
164
+ | `/loop-status` | Inspect active loop state and progress |
165
+ | `/learn` | Extract reusable patterns from current session |
166
+ | `/learn-eval` | Extract patterns with self-evaluation |
167
+ | `/claw` | Start NanoClaw v2 persistent REPL |
168
+
169
+ ## Instinct Management
170
+
171
+ | Command | Description |
172
+ |---------|-------------|
173
+ | `/instinct-status` | Show learned instincts with confidence |
174
+ | `/instinct-export` | Export instincts to a file |
175
+ | `/instinct-import` | Import instincts from file or URL |
176
+ | `/promote` | Promote project-scoped instincts to global |
177
+ | `/prune` | Delete pending instincts older than 30 days |
178
+ | `/projects` | List known projects and instinct statistics |
179
+
180
+ ## Integration & Utilities
181
+
182
+ | Command | Description |
183
+ |---------|-------------|
184
+ | `/integrate:sepay` | Implement SePay.vn payment integration |
185
+ | `/integrate:polar` | Implement Polar.sh payment integration |
186
+ | `/pm2` | Auto-analyze project and generate PM2 commands |
187
+ | `/setup-pm` | Configure preferred package manager |
188
+ | `/use-mcp` | Utilize MCP server tools |
@@ -1,79 +1,249 @@
1
1
  # Skill Catalog
2
2
 
3
- SkillLord includes 55 curated skills organized in 3 tiers.
4
-
5
- ## Tier 1 — Core (15 skills)
6
-
7
- Always loaded. Fundamental skills needed in every development session.
8
-
9
- | Skill | Description | Tags |
10
- |-------|-------------|------|
11
- | api-design | REST API design patterns for consistent, developer-friendly endpoints | api, rest, pagination, versioning, error-handling, rate-limiting |
12
- | backend-development | Build robust backend systems with modern technologies and frameworks | backend, nodejs, python, api, authentication, microservices, performance |
13
- | code-review | Code review practices emphasizing technical rigor and verification gates | review, quality, feedback, verification, pull-request, technical-rigor |
14
- | databases | Work with MongoDB and PostgreSQL for schemas, queries, and optimization | database, mongodb, postgresql, sql, schema, indexing, query-optimization |
15
- | debugging | Systematic debugging methodology with root cause analysis | debug, troubleshoot, error, fix, investigate, root-cause |
16
- | devops | Deploy and manage cloud infrastructure on Cloudflare, Docker, and GCP | devops, cloudflare, docker, gcp, ci-cd, deploy, serverless |
17
- | frontend-development | Frontend development guidelines for React/TypeScript applications | frontend, react, typescript, suspense, tanstack, mui, performance |
18
- | react-best-practices | React and Next.js performance optimization guidelines from Vercel | react, nextjs, performance, optimization, vercel, ssr, bundle |
19
- | research | Research and analyze technical solutions that are scalable and secure | research, analysis, planning, investigation, methodology, evaluation |
20
- | security-review | Security checklist and patterns for auth, input, secrets, and APIs | security, authentication, vulnerability, owasp, input-validation, secrets |
21
- | sequential-thinking | Structured reflective problem-solving for complex multi-step tasks | thinking, problem-solving, decomposition, analysis, planning, reasoning |
22
- | tdd-workflow | Enforce test-driven development with 80%+ coverage target | tdd, testing, test-driven, coverage, unit-test, red-green-refactor |
23
- | testing | Comprehensive testing strategies for unit, integration, and E2E tests | testing, unit-test, integration-test, e2e, coverage, test-pyramid |
24
- | ui-styling | Create accessible UIs with shadcn/ui, Tailwind CSS, and canvas design | ui, styling, shadcn, tailwind, radix, accessible, dark-mode |
25
- | web-frameworks | Build full-stack web apps with Next.js, Turborepo, and RemixIcon | nextjs, turborepo, monorepo, ssr, ssg, rsc, fullstack |
26
-
27
- ## Tier 2 — On-Demand (25 skills)
28
-
29
- Loaded when matched by the skill router. Specialized skills for specific domains.
30
-
31
- | Skill | Description | Tags |
32
- |-------|-------------|------|
33
- | ai-multimodal | Process and generate multimedia content using Google Gemini API | ai, gemini, multimodal, audio, video, image, document, ocr |
34
- | autonomous-loops | Patterns for autonomous Claude Code loops and multi-agent pipelines | automation, agent, loop, pipeline, ci-cd, autonomous, orchestration |
35
- | backend-patterns | Backend architecture patterns for Node.js, Express, and Next.js APIs | backend, architecture, api, caching, middleware, repository-pattern |
36
- | better-auth | Implement authentication with Better Auth TypeScript framework | auth, authentication, oauth, 2fa, passkey, session, typescript |
37
- | claude-code | Claude Code features, setup, configuration, and troubleshooting | claude-code, mcp, skills, hooks, plugins, slash-commands, configuration |
38
- | codebase-onboarding | Analyze unfamiliar codebases and generate structured onboarding guides | onboarding, codebase, architecture, analysis, documentation, claude-md |
39
- | coding-standards | Universal coding standards for TypeScript, JavaScript, and React | standards, best-practices, conventions, linting, typescript, quality |
40
- | continuous-learning | Instinct-based learning system that evolves sessions into reusable knowledge | learning, instincts, hooks, pattern-extraction, confidence, knowledge |
41
- | database-migrations | Safe database migration patterns for schema changes and rollbacks | database, migration, schema, rollback, zero-downtime, orm, prisma |
42
- | deployment-patterns | Production deployment workflows, CI/CD pipelines, and rollback strategies | deployment, ci-cd, docker, rollback, health-check, blue-green, canary |
43
- | docker-patterns | Docker and Docker Compose patterns for containerized development | docker, container, compose, networking, volume, security, orchestration |
44
- | e2e-testing | Playwright E2E testing patterns with Page Object Model and CI/CD | e2e, playwright, testing, page-object, ci-cd, browser, automation |
45
- | eval-harness | Formal evaluation framework for Claude Code sessions with EDD principles | eval, benchmark, metrics, pass-at-k, regression, agent, quality |
46
- | frontend-patterns | Frontend development patterns for React, Next.js, and performant UIs | frontend, react, nextjs, state-management, performance, forms, routing |
47
- | google-adk-python | Build AI agents with Google Agent Development Kit for Python | google-adk, ai-agent, python, multi-agent, workflow, vertex-ai, orchestration |
48
- | mcp-management | Discover, analyze, and execute MCP server tools and resources | mcp, tools, protocol, discovery, server, integration, context |
49
- | mcp-server-patterns | Build MCP servers with Node/TypeScript SDK for tools and resources | mcp, server, tools, resources, zod, stdio, http, typescript |
50
- | media-processing | Process video, audio, and images with FFmpeg and ImageMagick | ffmpeg, imagemagick, video, audio, image, encoding, streaming |
51
- | mobile-development | Build mobile apps with React Native, Flutter, Swift, and Kotlin | mobile, react-native, flutter, ios, android, offline-first, cross-platform |
52
- | payment-integration | Implement payment processing with SePay and Polar platforms | payment, subscription, webhook, billing, checkout, qr-code, saas |
53
- | planning | Create detailed technical implementation plans and solution designs | planning, architecture, roadmap, requirements, trade-offs, design |
54
- | postgres-patterns | PostgreSQL patterns for query optimization, schema design, and security | postgresql, sql, indexing, schema, rls, query-optimization, supabase |
55
- | problem-solving | Systematic problem-solving techniques for different types of stuck-ness | problem-solving, complexity, innovation, meta-pattern, inversion, scale |
56
- | strategic-compact | Strategic manual context compaction to preserve context across phases | context, compact, memory, session, workflow, optimization |
57
- | verification-loop | Comprehensive verification system for code changes before PR creation | verification, quality-gate, pre-pr, validation, refactoring, checklist |
58
-
59
- ## Tier 3 — Specialty (15 skills)
60
-
61
- Loaded on explicit request. Language and framework-specific patterns.
62
-
63
- | Skill | Description | Tags |
64
- |-------|-------------|------|
65
- | agentic-engineering | Operate as an agentic engineer with eval-first execution and routing | agentic, eval, decomposition, model-routing, automation, agent |
66
- | cost-aware-llm-pipeline | Cost optimization patterns for LLM API usage and model routing | llm, cost, model-routing, budget, caching, retry, optimization |
67
- | django-patterns | Django architecture patterns for scalable production applications | django, python, drf, orm, caching, signals, middleware |
68
- | golang-patterns | Idiomatic Go patterns for robust and efficient applications | go, golang, concurrency, interfaces, error-handling, idiomatic |
69
- | kotlin-patterns | Idiomatic Kotlin patterns with coroutines, null safety, and DSL builders | kotlin, coroutines, null-safety, dsl, gradle, jvm, idiomatic |
70
- | laravel-patterns | Laravel architecture patterns for scalable production applications | laravel, php, eloquent, queues, events, caching, api-resources |
71
- | prompt-optimizer | Analyze and optimize prompts by matching ECC components and gaps | prompt, optimization, prompt-engineering, rewrite, advisory, llm |
72
- | python-patterns | Pythonic idioms, PEP 8 standards, and type hints for robust code | python, pep8, type-hints, idioms, packaging, best-practices |
73
- | pytorch-patterns | PyTorch deep learning patterns for training pipelines and models | pytorch, deep-learning, training, gpu, model, data-loading, reproducibility |
74
- | rust-patterns | Idiomatic Rust patterns for safe and performant applications | rust, ownership, traits, concurrency, error-handling, safety |
75
- | shopify | Build Shopify apps, extensions, and themes with GraphQL and Liquid | shopify, ecommerce, graphql, liquid, polaris, extensions, checkout |
76
- | springboot-patterns | Spring Boot architecture patterns for production-grade Java services | spring-boot, java, rest-api, jpa, caching, async, microservices |
77
- | swiftui-patterns | SwiftUI patterns for declarative, performant Apple platform UIs | swiftui, ios, macos, state-management, navigation, observable, apple |
78
- | threejs | Build immersive 3D web experiences with Three.js and WebGL/WebGPU | threejs, 3d, webgl, webgpu, animation, shaders, rendering |
79
- | vercel-deploy | Deploy applications to Vercel instantly with preview URLs | vercel, deploy, preview, hosting, serverless, framework-detection |
3
+ SkillLord includes 161 curated skills organized by domain. All skills live in `skills/<name>/SKILL.md` — flat structure.
4
+
5
+ ## Development Core (16)
6
+
7
+ | Skill | Description |
8
+ |-------|-------------|
9
+ | api-design | REST API design patterns — resource naming, status codes, pagination, versioning |
10
+ | backend-development | Build robust backend systems with modern technologies |
11
+ | code-review | Code review practices with technical rigor and verification gates |
12
+ | coding-standards | Universal coding standards for TypeScript, JavaScript, and React |
13
+ | databases | MongoDB and PostgreSQL schemas, queries, optimization |
14
+ | debugging | Systematic debugging with root cause analysis |
15
+ | devops | Deploy and manage cloud infrastructure Cloudflare, Docker, GCP |
16
+ | frontend-development | Frontend guidelines for React/TypeScript applications |
17
+ | planning | Technical implementation plans and solution designs |
18
+ | problem-solving | Systematic problem-solving techniques |
19
+ | react-best-practices | React and Next.js performance optimization from Vercel |
20
+ | research | Research and analyze technical solutions |
21
+ | sequential-thinking | Structured reflective problem-solving for complex tasks |
22
+ | tdd-workflow | Test-driven development with 80%+ coverage |
23
+ | testing | Comprehensive testing unit, integration, E2E |
24
+ | web-frameworks | Full-stack web apps with Next.js, Turborepo |
25
+
26
+ ## Frontend & Design (16)
27
+
28
+ | Skill | Description |
29
+ |-------|-------------|
30
+ | aesthetic | Aesthetically beautiful interfaces following proven design principles |
31
+ | banner-design | Banner design for social media, ads, web, and print |
32
+ | brand | Brand voice, visual identity, messaging frameworks |
33
+ | design | Comprehensive design brand identity, tokens, logos, icons |
34
+ | design-system | Token architecture, component specifications |
35
+ | frontend-design | Distinctive, production-grade frontend interfaces |
36
+ | frontend-patterns | React, Next.js state management, performance, forms |
37
+ | frontend-slides | Animation-rich HTML presentations |
38
+ | liquid-glass-design | iOS 26 Liquid Glass design system |
39
+ | nextjs-turbopack | Next.js 16+ and Turbopack |
40
+ | slides | Strategic HTML presentations with copywriting formulas |
41
+ | threejs | Immersive 3D web experiences with Three.js |
42
+ | ui-styling | Accessible UIs with shadcn/ui, Tailwind CSS |
43
+ | ui-ux-pro-max | UI/UX design intelligence 67 styles, 161 color palettes |
44
+ | web-design-guidelines | Web Interface Guidelines compliance |
45
+ | nuxt4-patterns | Nuxt 4 app patterns for hydration safety |
46
+
47
+ ## Backend & API (6)
48
+
49
+ | Skill | Description |
50
+ |-------|-------------|
51
+ | backend-patterns | Backend architecture API design, caching, middleware |
52
+ | mcp-builder | Guide for creating high-quality MCP servers |
53
+ | mcp-management | Manage Model Context Protocol servers |
54
+ | mcp-server-patterns | Build MCP servers with Node/TypeScript SDK |
55
+ | postgres-patterns | PostgreSQL query optimization, schema design, RLS |
56
+ | payment-integration | Payment processing with SePay and Polar |
57
+
58
+ ## Language Patterns (10)
59
+
60
+ | Skill | Description |
61
+ |-------|-------------|
62
+ | python-patterns | Pythonic idioms, PEP 8, type hints |
63
+ | golang-patterns | Idiomatic Go concurrency, interfaces, error handling |
64
+ | rust-patterns | Idiomatic Rust — ownership, traits, concurrency |
65
+ | kotlin-patterns | Kotlin coroutines, null safety, DSL builders |
66
+ | perl-patterns | Modern Perl 5.36+ idioms |
67
+ | django-patterns | Django architecture patterns |
68
+ | laravel-patterns | Laravel architecture patterns |
69
+ | springboot-patterns | Spring Boot architecture patterns |
70
+ | swiftui-patterns | SwiftUI declarative UI patterns |
71
+ | docker-patterns | Docker and Docker Compose patterns |
72
+
73
+ ## Language Testing & Security (16)
74
+
75
+ | Skill | Description |
76
+ |-------|-------------|
77
+ | python-testing | Python testing with pytest |
78
+ | golang-testing | Go testing table-driven tests |
79
+ | rust-testing | Rust testing patterns |
80
+ | kotlin-testing | Kotlin testing with Kotest, MockK |
81
+ | cpp-testing | C++ testing patterns |
82
+ | perl-testing | Perl testing with Test2::V0 |
83
+ | perl-security | Perl security best practices |
84
+ | django-tdd | TDD for Django |
85
+ | django-security | Django security best practices |
86
+ | django-verification | Verification loop for Django |
87
+ | laravel-tdd | TDD for Laravel |
88
+ | laravel-security | Laravel security best practices |
89
+ | laravel-verification | Verification loop for Laravel |
90
+ | springboot-tdd | TDD for Spring Boot |
91
+ | springboot-security | Spring Security best practices |
92
+ | springboot-verification | Verification loop for Spring Boot |
93
+
94
+ ## Language Specialized (10)
95
+
96
+ | Skill | Description |
97
+ |-------|-------------|
98
+ | kotlin-coroutines-flows | Kotlin Coroutines and Flow patterns |
99
+ | kotlin-exposed-patterns | JetBrains Exposed ORM patterns |
100
+ | kotlin-ktor-patterns | Ktor server patterns |
101
+ | java-coding-standards | Java coding standards for Spring Boot |
102
+ | cpp-coding-standards | C++ coding standards from Core Guidelines |
103
+ | swift-actor-persistence | Thread-safe data persistence with Swift actors |
104
+ | swift-concurrency-6-2 | Swift 6.2 Approachable Concurrency |
105
+ | swift-protocol-di-testing | Protocol-based dependency injection for Swift |
106
+ | jpa-patterns | JPA/Hibernate entity design patterns |
107
+ | compose-multiplatform-patterns | Compose Multiplatform and Jetpack Compose |
108
+
109
+ ## Mobile (3)
110
+
111
+ | Skill | Description |
112
+ |-------|-------------|
113
+ | mobile-development | React Native, Flutter, Swift, Kotlin mobile apps |
114
+ | android-clean-architecture | Clean Architecture for Android and KMP |
115
+ | flutter-dart-code-review | Flutter/Dart code review checklist |
116
+
117
+ ## Database (3)
118
+
119
+ | Skill | Description |
120
+ |-------|-------------|
121
+ | database-migrations | Safe migration patterns — rollbacks, zero-downtime |
122
+ | clickhouse-io | ClickHouse query optimization patterns |
123
+ | deployment-patterns | Production deployment, CI/CD, rollback strategies |
124
+
125
+ ## AI & ML (6)
126
+
127
+ | Skill | Description |
128
+ |-------|-------------|
129
+ | ai-multimodal | Multimedia content with Google Gemini API |
130
+ | pytorch-patterns | PyTorch deep learning training pipelines |
131
+ | google-adk-python | Google Agent Development Kit for Python |
132
+ | cost-aware-llm-pipeline | Cost optimization for LLM API usage |
133
+ | foundation-models-on-device | Apple FoundationModels on-device LLM |
134
+ | prompt-optimizer | Analyze and optimize prompts |
135
+
136
+ ## Agentic Engineering (12)
137
+
138
+ | Skill | Description |
139
+ |-------|-------------|
140
+ | agentic-engineering | Eval-first execution and routing |
141
+ | ai-first-engineering | Engineering operating model for AI-agent teams |
142
+ | ai-regression-testing | Regression testing for AI-assisted development |
143
+ | agent-harness-construction | Design AI agent action spaces |
144
+ | agent-eval | Head-to-head comparison of coding agents |
145
+ | autonomous-loops | Autonomous Claude Code loops and multi-agent pipelines |
146
+ | continuous-agent-loop | Continuous autonomous agent loop patterns |
147
+ | continuous-learning | Extract reusable patterns from sessions |
148
+ | continuous-learning-v2 | Instinct-based learning system v2.1 |
149
+ | eval-harness | Formal evaluation framework with EDD principles |
150
+ | verification-loop | Comprehensive verification before PR creation |
151
+ | enterprise-agent-ops | Long-lived agent workloads |
152
+
153
+ ## Content & Business (7)
154
+
155
+ | Skill | Description |
156
+ |-------|-------------|
157
+ | article-writing | Articles, guides, blog posts, tutorials |
158
+ | content-engine | Platform-native content for X, LinkedIn, TikTok |
159
+ | crosspost | Multi-platform content distribution |
160
+ | market-research | Market research and competitive analysis |
161
+ | investor-outreach | Cold emails, warm intro blurbs |
162
+ | investor-materials | Pitch decks, one-pagers |
163
+ | shopify | Shopify apps, extensions, themes with GraphQL |
164
+
165
+ ## Security & Auth (5)
166
+
167
+ | Skill | Description |
168
+ |-------|-------------|
169
+ | security-review | Security checklist — auth, input, secrets, APIs |
170
+ | security-scan | Scan Claude Code config for vulnerabilities |
171
+ | better-auth | Authentication with Better Auth TypeScript framework |
172
+ | safety-guard | Prevent destructive operations during autonomous runs |
173
+ | e2e-testing | Playwright E2E testing with Page Object Model |
174
+
175
+ ## Media & Processing (5)
176
+
177
+ | Skill | Description |
178
+ |-------|-------------|
179
+ | media-processing | Video, audio, image processing with FFmpeg, ImageMagick |
180
+ | video-editing | AI-assisted video editing workflows |
181
+ | videodb | See, understand, act on video and audio |
182
+ | fal-ai-media | Media generation via fal.ai MCP |
183
+ | nutrient-document-processing | Document processing with Nutrient DWS API |
184
+
185
+ ## Tools & Utilities (12)
186
+
187
+ | Skill | Description |
188
+ |-------|-------------|
189
+ | repomix | Package repositories into AI-friendly files |
190
+ | chrome-devtools | Browser automation, debugging, performance |
191
+ | docs-seeker | Search documentation with executable scripts |
192
+ | documentation-lookup | Up-to-date docs via Context7 |
193
+ | skill-creator | Guide for creating effective skills |
194
+ | data-scraper-agent | AI-powered data collection agent |
195
+ | exa-search | Neural search via Exa MCP |
196
+ | x-api | X/Twitter API integration |
197
+ | bun-runtime | Bun as runtime, bundler, test runner |
198
+ | nanoclaw-repl | NanoClaw v2 persistent REPL |
199
+ | dmux-workflows | Multi-agent orchestration using dmux |
200
+ | claude-devfleet | Multi-agent coding via Claude DevFleet |
201
+
202
+ ## Research & Strategy (9)
203
+
204
+ | Skill | Description |
205
+ |-------|-------------|
206
+ | deep-research | Multi-source deep research with firecrawl and exa |
207
+ | strategic-compact | Manual context compaction for session continuity |
208
+ | search-first | Research-before-coding workflow |
209
+ | iterative-retrieval | Progressive context retrieval refinement |
210
+ | codebase-onboarding | Analyze unfamiliar codebases and generate guides |
211
+ | blueprint | Blueprint-driven development |
212
+ | santa-method | Multi-agent adversarial verification |
213
+ | team-builder | Interactive agent picker for parallel teams |
214
+ | architecture-decision-records | Capture architectural decisions |
215
+
216
+ ## Domain-Specific (9)
217
+
218
+ | Skill | Description |
219
+ |-------|-------------|
220
+ | carrier-relationship-management | Carrier relationship management |
221
+ | customs-trade-compliance | Customs and trade compliance |
222
+ | energy-procurement | Energy procurement |
223
+ | inventory-demand-planning | Inventory and demand planning |
224
+ | logistics-exception-management | Logistics exception management |
225
+ | production-scheduling | Production scheduling |
226
+ | quality-nonconformance | Quality nonconformance handling |
227
+ | returns-reverse-logistics | Returns and reverse logistics |
228
+ | visa-doc-translate | Translate visa application documents |
229
+
230
+ ## Meta & Config (16)
231
+
232
+ | Skill | Description |
233
+ |-------|-------------|
234
+ | claude-code | Claude Code features, setup, configuration |
235
+ | claude-api | Anthropic Claude API patterns for Python and TypeScript |
236
+ | configure-ecc | Interactive installer for Everything Claude Code |
237
+ | skill-comply | Visualize skill, rule, and agent compliance |
238
+ | skill-stocktake | Audit Claude skills and commands for quality |
239
+ | rules-distill | Extract cross-cutting principles from skills |
240
+ | plankton-code-quality | Write-time code quality enforcement |
241
+ | ralphinho-rfc-pipeline | RFC-driven multi-agent DAG execution |
242
+ | regex-vs-llm-structured-text | Decision framework — regex vs LLM for text |
243
+ | click-path-audit | Trace user-facing button/touchpoint state changes |
244
+ | context-budget | Audit Claude Code context window consumption |
245
+ | content-hash-cache-pattern | Cache file processing with SHA-256 hashes |
246
+ | project-guidelines-example | Example project-specific skill template |
247
+ | plan-preview | Preview markdown files in a directory |
248
+ | template-skill | Template for creating new skills |
249
+ | vercel-deploy | Deploy applications to Vercel |
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "claude-skill-lord",
3
- "version": "2.0.6",
4
- "description": "Curated Claude Code plugin — 43 agents, 170 skills, 114 commands, 11 language rules",
3
+ "version": "2.0.7",
4
+ "description": "Curated Claude Code plugin — 43 agents, 161 skills, 114 commands, 11 language rules",
5
5
  "author": {
6
6
  "name": "Dong Anh",
7
7
  "email": "donganhvu20@gmail.com"
@@ -22,6 +22,8 @@ for (let i = 0; i < args.length; i++) {
22
22
  flags.noFonts = true;
23
23
  } else if (args[i] === '--help' || args[i] === '-h') {
24
24
  flags.help = true;
25
+ } else if (['full', 'core', 'developer'].includes(args[i])) {
26
+ flags.profile = args[i];
25
27
  }
26
28
  }
27
29
 
@@ -58,7 +60,13 @@ if (!fs.existsSync(manifestPath) || !fs.existsSync(modulesPath)) {
58
60
  const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
59
61
  const modules = JSON.parse(fs.readFileSync(modulesPath, 'utf8'));
60
62
 
61
- let moduleIds = manifest.modules;
63
+ const profile = flags.profile || 'full';
64
+ const profileConfig = manifest.profiles[profile];
65
+ if (!profileConfig) {
66
+ console.error(`Error: Unknown profile "${profile}". Valid profiles: ${Object.keys(manifest.profiles).join(', ')}`);
67
+ process.exit(1);
68
+ }
69
+ let moduleIds = profileConfig.modules;
62
70
  if (flags.noFonts) {
63
71
  moduleIds = moduleIds.filter(id => id !== 'canvas-fonts');
64
72
  }
@@ -1,3 +1,8 @@
1
+ ---
2
+ name: google-adk-python
3
+ description: Guide for building AI agents with Google's Agent Development Kit (ADK) Python framework.
4
+ ---
5
+
1
6
  # Google ADK Python Skill
2
7
 
3
8
  You are an expert guide for Google's Agent Development Kit (ADK) Python - an open-source, code-first toolkit for building, evaluating, and deploying AI agents.