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.
- package/CLAUDE.md +1 -1
- package/README.md +5 -5
- package/agents/brainstormer.md +2 -0
- package/agents/code-reviewer.md +1 -0
- package/agents/copywriter.md +1 -0
- package/agents/database-admin.md +1 -0
- package/agents/debugger.md +1 -0
- package/agents/docs-manager.md +1 -0
- package/agents/journal-writer.md +1 -0
- package/agents/mcp-manager.md +1 -0
- package/agents/planner.md +2 -0
- package/agents/researcher.md +1 -0
- package/agents/tester.md +1 -0
- package/agents/ui-ux-designer.md +2 -1
- package/commands/build-fix.md +4 -0
- package/commands/checkpoint.md +4 -0
- package/commands/code-review.md +4 -0
- package/commands/eval.md +4 -0
- package/commands/git/cm.md +3 -1
- package/commands/git/cp.md +4 -1
- package/commands/harness-audit.md +4 -0
- package/commands/learn.md +4 -0
- package/commands/loop-start.md +4 -0
- package/commands/loop-status.md +4 -0
- package/commands/model-route.md +4 -0
- package/commands/multi-backend.md +4 -0
- package/commands/multi-execute.md +4 -0
- package/commands/multi-frontend.md +4 -0
- package/commands/multi-plan.md +4 -0
- package/commands/multi-workflow.md +4 -0
- package/commands/pm2.md +4 -0
- package/commands/quality-gate.md +4 -0
- package/commands/refactor-clean.md +4 -0
- package/commands/test-coverage.md +4 -0
- package/commands/update-codemaps.md +4 -0
- package/commands/update-docs.md +4 -0
- package/commands/verify.md +4 -0
- package/docs/ARCHITECTURE.md +28 -53
- package/docs/COMMAND-REFERENCE.md +161 -30
- package/docs/SKILL-CATALOG.md +247 -77
- package/package.json +2 -2
- package/scripts/install.js +9 -1
- package/skills/google-adk-python/SKILL.md +5 -0
- package/skills/manifest.json +812 -0
- package/skills/skill-stocktake/SKILL.md +1 -1
- package/skills/template-skill/SKILL.md +11 -0
|
@@ -1,57 +1,188 @@
|
|
|
1
1
|
# Command Reference
|
|
2
2
|
|
|
3
|
-
SkillLord provides
|
|
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` |
|
|
10
|
-
| `/
|
|
11
|
-
| `/
|
|
12
|
-
| `/
|
|
13
|
-
| `/
|
|
14
|
-
| `/
|
|
15
|
-
| `/
|
|
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
|
|
22
|
-
| `/
|
|
23
|
-
| `/
|
|
24
|
-
| `/
|
|
25
|
-
| `/
|
|
26
|
-
| `/
|
|
27
|
-
| `/
|
|
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
|
-
| `/
|
|
35
|
-
| `/scout` |
|
|
36
|
-
| `/ask` | Answer technical and architectural questions
|
|
37
|
-
| `/
|
|
38
|
-
| `/
|
|
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
|
|
45
|
-
| `/
|
|
46
|
-
| `/
|
|
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
|
|
53
|
-
| `/loop-status` | Inspect active loop state
|
|
54
|
-
| `/learn` | Extract reusable patterns from
|
|
55
|
-
| `/
|
|
56
|
-
| `/
|
|
57
|
-
|
|
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 |
|
package/docs/SKILL-CATALOG.md
CHANGED
|
@@ -1,79 +1,249 @@
|
|
|
1
1
|
# Skill Catalog
|
|
2
2
|
|
|
3
|
-
SkillLord includes
|
|
4
|
-
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
|
10
|
-
|
|
11
|
-
|
|
|
12
|
-
|
|
|
13
|
-
|
|
|
14
|
-
|
|
|
15
|
-
|
|
|
16
|
-
|
|
|
17
|
-
|
|
|
18
|
-
|
|
|
19
|
-
|
|
|
20
|
-
|
|
|
21
|
-
| sequential-thinking | Structured reflective problem-solving for complex
|
|
22
|
-
| tdd-workflow |
|
|
23
|
-
| testing | Comprehensive testing
|
|
24
|
-
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
|
32
|
-
|
|
33
|
-
|
|
|
34
|
-
|
|
|
35
|
-
|
|
|
36
|
-
|
|
|
37
|
-
|
|
|
38
|
-
|
|
|
39
|
-
|
|
|
40
|
-
|
|
|
41
|
-
|
|
|
42
|
-
|
|
|
43
|
-
|
|
|
44
|
-
|
|
|
45
|
-
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
|
50
|
-
|
|
51
|
-
|
|
|
52
|
-
|
|
|
53
|
-
|
|
|
54
|
-
|
|
|
55
|
-
|
|
|
56
|
-
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
|
64
|
-
|
|
65
|
-
|
|
|
66
|
-
|
|
|
67
|
-
| django-patterns | Django architecture patterns
|
|
68
|
-
|
|
|
69
|
-
|
|
|
70
|
-
|
|
|
71
|
-
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
|
76
|
-
|
|
77
|
-
|
|
|
78
|
-
|
|
|
79
|
-
|
|
|
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.
|
|
4
|
-
"description": "Curated Claude Code plugin — 43 agents,
|
|
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"
|
package/scripts/install.js
CHANGED
|
@@ -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
|
-
|
|
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.
|