claude-skill-lord 2.0.1 → 2.0.2

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-skill-lord",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Curated Claude Code plugin — 44 agents, 170 skills, 115 commands, 13 language rules with intelligent skill routing",
5
5
  "author": {
6
6
  "name": "Dong Anh",
package/README.md CHANGED
@@ -4,18 +4,20 @@
4
4
 
5
5
  [![npm](https://img.shields.io/npm/v/claude-skill-lord)](https://www.npmjs.com/package/claude-skill-lord)
6
6
  ![License](https://img.shields.io/badge/license-MIT-green)
7
- ![Agents](https://img.shields.io/badge/agents-22-purple)
8
- ![Skills](https://img.shields.io/badge/skills-61-orange)
9
- ![Commands](https://img.shields.io/badge/commands-40%2B-red)
7
+ ![Agents](https://img.shields.io/badge/agents-44-purple)
8
+ ![Skills](https://img.shields.io/badge/skills-170-orange)
9
+ ![Commands](https://img.shields.io/badge/commands-115-red)
10
+ ![Rules](https://img.shields.io/badge/rules-13%20languages-blue)
10
11
 
11
12
  ---
12
13
 
13
14
  ## Why Claude Skill Lord?
14
15
 
15
- - **Stop configuring, start building** — 61 skills, 22 agents, 40+ commands work out of the box
16
- - **Only load what you need** — 3-tier system keeps context lean; specialty skills activate on demand
16
+ - **Stop configuring, start building** — 170 skills, 44 agents, 115 commands work out of the box
17
+ - **Multi-language support** — 13 language-specific rule sets (TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift)
18
+ - **Language-specific agents** — dedicated reviewers and build resolvers for 8 languages
17
19
  - **Design intelligence built-in** — 67 UI styles, 161 color palettes, reasoning engine for production-grade design decisions
18
- - **Battle-tested foundations** — curated from [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) + [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) + [UI/UX Pro Max](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill)
20
+ - **Battle-tested foundations** — curated from [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) (base) + [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) (cherry-picked)
19
21
 
20
22
  ---
21
23
 
@@ -41,7 +43,7 @@ That's it. `csl init` copies skills, agents, and commands into `.claude/` and ge
41
43
 
42
44
  ```bash
43
45
  csl init # interactive setup (asks profile + target)
44
- csl init full # install everything (61 skills + canvas fonts)
46
+ csl init full # install everything (170 skills + canvas fonts)
45
47
  csl init --dry-run # preview without copying
46
48
  csl init --fresh # clean reinstall
47
49
  csl upgrade full # upgrade to full profile (additive, no overwrites)
@@ -73,10 +75,11 @@ node scripts/sl.js init full --target /path/to/your/project
73
75
 
74
76
  ## Install Profiles
75
77
 
76
- | Profile | Skills | Agents | Best For |
77
- |---------|--------|--------|----------|
78
- | `developer` | 44 (Tier 1+2) | 22 all | Recommended for all projects (default) |
79
- | `full` | 61 (all tiers) | 22 all + canvas fonts | Multi-language, design, enterprise |
78
+ | Profile | Skills | Agents | Rules | Best For |
79
+ |---------|--------|--------|-------|----------|
80
+ | `core` | 170 | 44 | | Minimal setup |
81
+ | `developer` | 170 | 44 | 13 languages | Recommended for all projects (default) |
82
+ | `full` | 170 | 44 + canvas fonts | 13 languages + MCP configs | Multi-language, design, enterprise |
80
83
 
81
84
  ---
82
85
 
@@ -85,9 +88,10 @@ node scripts/sl.js init full --target /path/to/your/project
85
88
  ```mermaid
86
89
  graph TD
87
90
  subgraph Plugin["Claude Skill Lord Plugin"]
88
- A["Agents (22)"]
89
- B["Commands (40+)"]
90
- C["Skills (61, 3 Tiers)"]
91
+ A["Agents (44)"]
92
+ B["Commands (115)"]
93
+ C["Skills (170)"]
94
+ R["Rules (13 langs)"]
91
95
  end
92
96
 
93
97
  subgraph Intelligence["Intelligence Layer"]
@@ -99,15 +103,18 @@ graph TD
99
103
  F["Hooks"]
100
104
  G["Workflows"]
101
105
  H["Manifests"]
106
+ CTX["Contexts"]
102
107
  end
103
108
 
104
109
  A --> D
105
110
  B --> D
106
111
  C --> D
112
+ R --> D
107
113
  D --> E
108
114
  E --> F
109
115
  E --> G
110
116
  E --> H
117
+ CTX --> D
111
118
  ```
112
119
 
113
120
  ---
@@ -157,37 +164,70 @@ The most common workflow — plan first, then implement, then validate:
157
164
  /bootstrap:auto Next.js SaaS starter with auth and payments
158
165
  ```
159
166
 
167
+ ### Multi-agent workflows (new)
168
+
169
+ ```
170
+ /multi-plan Complex feature requiring multiple perspectives
171
+ /multi-backend Microservice architecture implementation
172
+ /orchestrate Coordinate multiple agents on a large task
173
+ ```
174
+
175
+ ### Session management (new)
176
+
177
+ ```
178
+ /save-session # save current work context
179
+ /resume-session # resume where you left off
180
+ /checkpoint # create a recovery point
181
+ ```
182
+
183
+ ### Language-specific workflows (new)
184
+
185
+ ```
186
+ /rust-build # build Rust project
187
+ /go-review # review Go code
188
+ /kotlin-test # test Kotlin project
189
+ /cpp-build # build C++ project
190
+ /python-review # review Python code
191
+ ```
192
+
160
193
  ---
161
194
 
162
195
  ## Key Commands
163
196
 
164
197
  | Command | Description |
165
198
  |---------|-------------|
166
- | `/plan` | Create implementation plan |
199
+ | `/plan` | Create implementation plan (variants: `fast`, `hard`, `two`, `cro`, `ci`) |
167
200
  | `/code` | Start coding from plan |
168
201
  | `/test` | Run and validate tests |
169
202
  | `/fix` | Fix issues (variants: `fast`, `hard`, `ci`, `test`, `types`, `ui`, `logs`) |
170
203
  | `/cook` | Implement features end-to-end |
171
204
  | `/tdd` | Test-driven development workflow |
172
205
  | `/debug` | Deep root-cause investigation |
173
- | `/design` | Create UI designs (variants: `fast`, `good`, `3d`) |
206
+ | `/design` | Create UI designs (variants: `fast`, `good`, `3d`, `screenshot`, `video`, `describe`) |
174
207
  | `/route` | Get skill recommendations for your task |
175
208
  | `/audit` | Run quality gate checks |
176
209
 
177
210
  <details>
178
- <summary><strong>All commands (40+)</strong></summary>
179
-
180
- | Command | Description |
181
- |---------|-------------|
182
- | `/review` | Code review with confidence filtering |
183
- | `/scout` | Search and explore codebase |
184
- | `/bootstrap` | Initialize new projects |
185
- | `/e2e` | Generate and run E2E tests |
186
- | `/brainstorm` | Explore solutions and trade-offs |
187
- | `/learn` | Extract patterns from session |
188
- | `/evolve` | Iterative feature development |
189
- | `/build-fix` | Fix build/compile errors |
190
- | `/refactor-clean` | Dead code cleanup |
211
+ <summary><strong>All commands (115)</strong></summary>
212
+
213
+ | Category | Commands |
214
+ |----------|----------|
215
+ | **Core** | `/plan`, `/code`, `/test`, `/fix`, `/cook`, `/debug`, `/tdd`, `/verify` |
216
+ | **Review** | `/code-review`, `/python-review`, `/rust-review`, `/go-review`, `/cpp-review`, `/kotlin-review` |
217
+ | **Build** | `/build-fix`, `/cpp-build`, `/go-build`, `/kotlin-build`, `/rust-build`, `/gradle-build` |
218
+ | **Test** | `/test-coverage`, `/e2e`, `/cpp-test`, `/go-test`, `/kotlin-test`, `/rust-test` |
219
+ | **Design** | `/design:fast`, `/design:good`, `/design:3d`, `/design:screenshot`, `/design:video`, `/design:describe` |
220
+ | **Content** | `/content:fast`, `/content:good`, `/content:cro`, `/content:enhance` |
221
+ | **Docs** | `/docs:init`, `/docs:update`, `/docs:summarize`, `/update-docs` |
222
+ | **Git** | `/git:pr`, `/git:cp`, `/git:cm`, `/commit_gen` |
223
+ | **Multi-agent** | `/multi-plan`, `/multi-workflow`, `/multi-backend`, `/multi-frontend`, `/multi-execute`, `/orchestrate` |
224
+ | **Session** | `/save-session`, `/resume-session`, `/sessions`, `/checkpoint` |
225
+ | **Scout** | `/scout`, `/scout:ext` |
226
+ | **Bootstrap** | `/bootstrap`, `/bootstrap:auto`, `/bootstrap:auto/fast` |
227
+ | **Skills** | `/skill:add`, `/skill:create`, `/skill:optimize`, `/skill:fix-logs`, `/skill-create`, `/skill-health` |
228
+ | **Quality** | `/quality-gate`, `/audit`, `/refactor-clean`, `/prompt-optimize` |
229
+ | **Loop** | `/loop-start`, `/loop-status` |
230
+ | **Other** | `/brainstorm`, `/learn`, `/evolve`, `/model-route`, `/route`, `/ask`, `/journal`, `/watzup` |
191
231
 
192
232
  See [commands/](commands/) for the full list.
193
233
 
@@ -198,7 +238,9 @@ See [commands/](commands/) for the full list.
198
238
  ## Agents
199
239
 
200
240
  <details>
201
- <summary><strong>22 agents — click to expand</strong></summary>
241
+ <summary><strong>44 agents — click to expand</strong></summary>
242
+
243
+ ### Core Agents
202
244
 
203
245
  | Agent | Role |
204
246
  |-------|------|
@@ -213,57 +255,166 @@ See [commands/](commands/) for the full list.
213
255
  | refactor-cleaner | Dead code cleanup |
214
256
  | git-manager | Version control operations |
215
257
  | docs-manager | Documentation management |
258
+ | doc-updater | Documentation specialist |
259
+ | docs-lookup | Documentation researcher |
216
260
  | project-manager | Progress tracking |
217
261
  | ui-ux-designer | UI/UX design |
218
262
  | database-admin | Database optimization |
263
+ | database-reviewer | Database review specialist |
219
264
  | brainstormer | Solution ideation (YAGNI/KISS/DRY) |
220
265
  | copywriter | Conversion-focused content |
221
266
  | scout | Parallel codebase exploration |
267
+ | scout-external | External tool-based exploration |
222
268
  | loop-operator | Autonomous development loops |
223
269
  | chief-of-staff | Multi-channel coordination |
224
270
  | harness-optimizer | Agent self-optimization |
225
271
  | skill-router | Advisory skill recommendations |
226
272
  | quality-gate | Output validation |
273
+ | researcher | Deep research agent |
274
+ | tester | Test execution agent |
275
+ | mcp-manager | MCP server management |
276
+ | journal-writer | Session journaling |
277
+
278
+ ### Language-Specific Reviewers
279
+
280
+ | Agent | Language |
281
+ |-------|----------|
282
+ | typescript-reviewer | TypeScript |
283
+ | python-reviewer | Python |
284
+ | rust-reviewer | Rust |
285
+ | go-reviewer | Go |
286
+ | kotlin-reviewer | Kotlin |
287
+ | java-reviewer | Java |
288
+ | cpp-reviewer | C++ |
289
+ | flutter-reviewer | Flutter/Dart |
290
+
291
+ ### Language-Specific Build Resolvers
292
+
293
+ | Agent | Language |
294
+ |-------|----------|
295
+ | cpp-build-resolver | C++ |
296
+ | rust-build-resolver | Rust |
297
+ | java-build-resolver | Java |
298
+ | kotlin-build-resolver | Kotlin |
299
+ | go-build-resolver | Go |
300
+ | pytorch-build-resolver | PyTorch |
227
301
 
228
302
  </details>
229
303
 
230
304
  ---
231
305
 
232
- ## Skills (61, 3 Tiers)
306
+ ## Skills (170)
233
307
 
234
- ### Tier 1 Core (16, always loaded)
308
+ All skills live in `./skills/<name>/SKILL.md` flat structure.
235
309
 
236
- debugging, code-review, tdd-workflow, testing, backend-development, frontend-development, web-frameworks, ui-styling, **ui-ux-pro-max**, react-best-practices, databases, api-design, devops, security-patterns, sequential-thinking, research
310
+ <details>
311
+ <summary><strong>Click to expand full skill list</strong></summary>
237
312
 
238
- ### Tier 2 — On-Demand (28)
313
+ ### Development Core
314
+ 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
239
315
 
240
- <details>
241
- <summary>Click to expand</summary>
316
+ ### Frontend & Design
317
+ ui-ux-pro-max, react-best-practices, frontend-patterns, frontend-design, frontend-slides, design, design-system, brand, banner-design, slides, aesthetic, web-design-guidelines, liquid-glass-design, threejs
242
318
 
243
- ai-multimodal, better-auth, payment-integration, continuous-learning, codebase-onboarding, autonomous-loops, mcp-management, frontend-patterns, backend-patterns, coding-standards, e2e-testing, deployment-patterns, docker-patterns, postgres-patterns, database-migrations, mcp-server-patterns, eval-harness, verification-loop, strategic-compact, mobile-development, claude-code, planning, problem-solving, google-adk-python, media-processing, **design-system**, **design**, **brand**
319
+ ### Backend & API
320
+ backend-patterns, api-design, api-versioning, graphql-patterns, rest-api-security, microservice-patterns, mcp-server-patterns, mcp-management, mcp-builder
244
321
 
245
- </details>
322
+ ### Language Patterns
323
+ python-patterns, golang-patterns, rust-patterns, kotlin-patterns, java-patterns, cpp-patterns, perl-patterns, swift-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, nuxt4-patterns
246
324
 
247
- ### Tier 3 Specialty (17)
325
+ ### Language Testing & Security
326
+ python-testing, golang-testing, rust-testing, kotlin-testing, cpp-testing, django-tdd, laravel-tdd, springboot-tdd, django-security, laravel-security, springboot-security, django-verification, laravel-verification, springboot-verification
248
327
 
249
- <details>
250
- <summary>Click to expand</summary>
328
+ ### Language Specialized
329
+ 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
251
330
 
252
- python-patterns, golang-patterns, rust-patterns, kotlin-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, pytorch-patterns, shopify, threejs, vercel-deploy, agentic-engineering, prompt-optimizer, cost-aware-llm-pipeline, **banner-design**, **slides**
331
+ ### Mobile
332
+ mobile-development, android-clean-architecture, flutter-riverpod, flutter-dart-code-review
333
+
334
+ ### DevOps & Infrastructure
335
+ deployment-patterns, docker-patterns, ci-cd-patterns, docker-optimization, kubernetes-patterns, terraform-patterns, vercel-deploy
336
+
337
+ ### Database
338
+ postgres-patterns, database-migrations, clickhouse-io
339
+
340
+ ### AI & ML
341
+ ai-multimodal, pytorch-patterns, google-adk-python, cost-aware-llm-pipeline, foundation-models-on-device, prompt-optimizer
342
+
343
+ ### Agentic Engineering
344
+ agentic-engineering, agent-harness-construction, agent-eval, autonomous-loops, continuous-agent-loop, continuous-learning, continuous-learning-v2, eval-harness, verification-loop, enterprise-agent-ops
345
+
346
+ ### Content & Business
347
+ article-writing, technical-writing, content-engine, crosspost, market-research, investor-outreach, investor-materials, shopify, ecommerce-patterns, saas-patterns
348
+
349
+ ### Security & Auth
350
+ security-review, security-scan, better-auth, payment-integration, safety-guard
351
+
352
+ ### Media & Processing
353
+ media-processing, video-editing, videodb, fal-ai-media, nutrient-document-processing
354
+
355
+ ### Tools & Utilities
356
+ repomix, chrome-devtools, docs-seeker, documentation-lookup, skill-creator, data-scraper-agent, exa-search, x-api, bun-runtime, nanoclaw-repl, dmux-workflows
357
+
358
+ ### Research & Strategy
359
+ deep-research, strategic-compact, search-first, iterative-retrieval, codebase-onboarding, blueprint, santa-method, team-builder
360
+
361
+ ### Domain-Specific
362
+ carrier-relationship-management, customs-trade-compliance, energy-procurement, inventory-demand-planning, logistics-exception-management, production-scheduling, quality-nonconformance, returns-reverse-logistics, visa-doc-translate
363
+
364
+ ### Meta & Config
365
+ 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
253
366
 
254
367
  </details>
255
368
 
256
369
  ---
257
370
 
371
+ ## Rules (13 Languages)
372
+
373
+ Language-specific coding rules in `./rules/`:
374
+
375
+ | Language | Files |
376
+ |----------|-------|
377
+ | Common | agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing |
378
+ | TypeScript | coding-style, hooks, patterns, security, testing |
379
+ | Python | coding-style, hooks, patterns, security, testing |
380
+ | Go | coding-style, hooks, patterns, security, testing |
381
+ | Rust | coding-style, hooks, patterns, security, testing |
382
+ | Java | coding-style, hooks, patterns, security, testing |
383
+ | Kotlin | coding-style, hooks, patterns, security, testing |
384
+ | C++ | coding-style, hooks, patterns, security, testing |
385
+ | C# | coding-style, hooks, patterns, security, testing |
386
+ | PHP | coding-style, hooks, patterns, security, testing |
387
+ | Perl | coding-style, hooks, patterns, security, testing |
388
+ | Swift | coding-style, hooks, patterns, security, testing |
389
+
390
+ ---
391
+
258
392
  ## Hooks & Automation
259
393
 
260
394
  | Hook | Trigger | What it does |
261
395
  |------|---------|--------------|
396
+ | Block no-verify | PreToolUse | Prevents bypassing git hooks |
262
397
  | Config protection | PreToolUse | Prevents weakening linter/formatter configs |
398
+ | Scout block | PreToolUse | Controls scout command usage |
263
399
  | Auto-format | PostToolUse | Runs Biome or Prettier on edited JS/TS files |
264
400
  | Type check | PostToolUse | Validates TypeScript after edits |
265
401
  | Console.log check | Stop | Flags debug code left in modified files |
266
402
  | Quality gate | PostToolUse | Lint + types + tests + security checks |
403
+ | Modularization | PostToolUse | Suggests splitting files >200 LOC |
404
+ | Session management | Start/Stop | Save and restore session context |
405
+ | Discord/Telegram notify | Stop | Send notifications on session end |
406
+
407
+ ---
408
+
409
+ ## Contexts
410
+
411
+ Development contexts in `./contexts/` for specialized workflows:
412
+
413
+ | Context | Use Case |
414
+ |---------|----------|
415
+ | `dev.md` | Development context |
416
+ | `research.md` | Research context |
417
+ | `review.md` | Code review context |
267
418
 
268
419
  ---
269
420
 
@@ -279,9 +430,9 @@ node tests/run-all.js
279
430
 
280
431
  Built on the shoulders of giants:
281
432
 
282
- > [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafafoundation agents, skills, hooks
433
+ > [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyenbase architecture, mental models, strategic depth, unique agents
283
434
  >
284
- > [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyenmental models, strategic depth, unique agents
435
+ > [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafacherry-picked agents, skills, commands, rules
285
436
  >
286
437
  > [UI/UX Pro Max Skill](https://github.com/nextlevelbuilder/ui-ux-pro-max-skill) by Next Level Builder — design intelligence, 67 styles, 161 color palettes, brand & design-system skills (MIT)
287
438
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-skill-lord",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Curated Claude Code plugin — 44 agents, 170 skills, 115 commands, 13 language rules with intelligent skill routing",
5
5
  "author": {
6
6
  "name": "Dong Anh",