claude-skill-lord 2.0.1 → 2.0.3

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.3",
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",
@@ -0,0 +1,27 @@
1
+ {
2
+ "extends": ["@commitlint/config-conventional"],
3
+ "rules": {
4
+ "type-enum": [
5
+ 2,
6
+ "always",
7
+ [
8
+ "build",
9
+ "chore",
10
+ "ci",
11
+ "docs",
12
+ "feat",
13
+ "fix",
14
+ "perf",
15
+ "refactor",
16
+ "revert",
17
+ "style",
18
+ "test"
19
+ ]
20
+ ],
21
+ "subject-case": [2, "never", ["sentence-case", "start-case", "pascal-case", "upper-case"]],
22
+ "subject-empty": [2, "never"],
23
+ "subject-full-stop": [2, "never", "."],
24
+ "header-max-length": [2, "always", 100],
25
+ "body-max-line-length": [1, "always", 300]
26
+ }
27
+ }
package/.env.example ADDED
@@ -0,0 +1,26 @@
1
+ # Claude Code Notification Hooks - Environment Variables
2
+ # Copy this file to .env and fill in your actual values
3
+ # NEVER commit .env files to version control
4
+
5
+ # ============================================
6
+ # Discord Notifications
7
+ # ============================================
8
+ # Get your webhook URL from Discord:
9
+ # Server Settings → Integrations → Webhooks → New Webhook
10
+ # Format: https://discord.com/api/webhooks/WEBHOOK_ID/WEBHOOK_TOKEN
11
+ DISCORD_WEBHOOK_URL=
12
+
13
+ # ============================================
14
+ # Telegram Notifications
15
+ # ============================================
16
+ # Get bot token from @BotFather in Telegram
17
+ # Send /newbot to @BotFather and follow the prompts
18
+ # Format: 123456789:ABCdefGHIjklMNOpqrsTUVwxyz
19
+ TELEGRAM_BOT_TOKEN=
20
+
21
+ # Get chat ID from Telegram
22
+ # For DM: Send message to bot, then visit:
23
+ # https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates
24
+ # For groups: Add bot to group, send message, check same URL
25
+ # Format: 987654321 (positive) or -100123456789 (negative for groups)
26
+ TELEGRAM_CHAT_ID=
@@ -0,0 +1,119 @@
1
+ {
2
+ "branches": [
3
+ "main"
4
+ ],
5
+ "plugins": [
6
+ [
7
+ "@semantic-release/commit-analyzer",
8
+ {
9
+ "preset": "conventionalcommits",
10
+ "releaseRules": [
11
+ {
12
+ "type": "docs",
13
+ "scope": "README",
14
+ "release": "patch"
15
+ },
16
+ {
17
+ "type": "refactor",
18
+ "release": "patch"
19
+ },
20
+ {
21
+ "type": "style",
22
+ "release": "patch"
23
+ }
24
+ ]
25
+ }
26
+ ],
27
+ [
28
+ "@semantic-release/release-notes-generator",
29
+ {
30
+ "preset": "conventionalcommits",
31
+ "presetConfig": {
32
+ "types": [
33
+ {
34
+ "type": "feat",
35
+ "section": "🚀 Features"
36
+ },
37
+ {
38
+ "type": "fix",
39
+ "section": "🐞 Bug Fixes"
40
+ },
41
+ {
42
+ "type": "docs",
43
+ "section": "📚 Documentation"
44
+ },
45
+ {
46
+ "type": "style",
47
+ "section": "💄 Styles"
48
+ },
49
+ {
50
+ "type": "refactor",
51
+ "section": "♻️ Code Refactoring"
52
+ },
53
+ {
54
+ "type": "perf",
55
+ "section": "⚡ Performance Improvements"
56
+ },
57
+ {
58
+ "type": "test",
59
+ "section": "✅ Tests"
60
+ },
61
+ {
62
+ "type": "build",
63
+ "section": "🏗️ Build System"
64
+ },
65
+ {
66
+ "type": "ci",
67
+ "section": "👷 CI"
68
+ }
69
+ ]
70
+ }
71
+ }
72
+ ],
73
+ [
74
+ "@semantic-release/changelog",
75
+ {
76
+ "changelogFile": "CHANGELOG.md"
77
+ }
78
+ ],
79
+ [
80
+ "@semantic-release/npm",
81
+ {
82
+ "npmPublish": false
83
+ }
84
+ ],
85
+ [
86
+ "@semantic-release/exec",
87
+ {
88
+ "prepareCmd": "node scripts/prepare-release-assets.cjs ${nextRelease.version}"
89
+ }
90
+ ],
91
+ [
92
+ "@semantic-release/github",
93
+ {
94
+ "assets": [
95
+ {
96
+ "path": "CHANGELOG.md",
97
+ "label": "Changelog"
98
+ },
99
+ {
100
+ "path": "dist/claudekit-engineer.zip",
101
+ "label": "ClaudeKit Engineer Package"
102
+ }
103
+ ]
104
+ }
105
+ ],
106
+ [
107
+ "@semantic-release/git",
108
+ {
109
+ "assets": [
110
+ "CHANGELOG.md",
111
+ "package.json",
112
+ "package-lock.json",
113
+ ".claude/metadata.json"
114
+ ],
115
+ "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
116
+ }
117
+ ]
118
+ ]
119
+ }
package/.repomixignore ADDED
@@ -0,0 +1,22 @@
1
+ docs/*
2
+ plans/*
3
+ assets/*
4
+ dist/*
5
+ coverage/*
6
+ build/*
7
+ ios/*
8
+ android/*
9
+ tests/*
10
+ __tests__/*
11
+ __pycache__/*
12
+ node_modules/*
13
+
14
+ .opencode/*
15
+ .claude/*
16
+ .serena/*
17
+ .pnpm-store/*
18
+ .github/*
19
+ .dart_tool/*
20
+ .idea/*
21
+ .husky/*
22
+ .venv/*
package/CLAUDE.md CHANGED
@@ -149,6 +149,20 @@ Development contexts in `./contexts/`:
149
149
  - `research.md` — Research context
150
150
  - `review.md` — Code review context
151
151
 
152
+ ## Statusline
153
+
154
+ Cross-platform statusline in `./scripts/statusline.js|sh|ps1`:
155
+ - Cost tracking, token count, session timer, git branch, model info
156
+ - Configured via `statusLine` in `hooks/hooks.json`
157
+
158
+ ## Development Config
159
+
160
+ - `.commitlintrc.json` — conventional commit enforcement
161
+ - `.releaserc.json` — semantic release automation
162
+ - `.repomixignore` — repomix ignore patterns
163
+ - `.env.example` — API keys template (Discord, Telegram, Gemini)
164
+ - `docs/code-standards.md` — coding standards
165
+
152
166
  ## Principles
153
167
 
154
168
  - **YAGNI** — You Aren't Gonna Need It
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,192 @@ 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
330
+
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
251
345
 
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**
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 |
418
+
419
+ ---
420
+
421
+ ## Statusline
422
+
423
+ Built-in cross-platform statusline showing real-time session metrics:
424
+
425
+ - **Cost tracking** — cost per hour and session total via ccusage
426
+ - **Token count** — current token usage
427
+ - **Session timer** — remaining time with color-coded warnings
428
+ - **Git branch** — current branch or commit hash
429
+ - **Model info** — active model name and version
430
+
431
+ Available in 3 variants: `scripts/statusline.js` (Node.js), `scripts/statusline.sh` (Bash), `scripts/statusline.ps1` (PowerShell).
432
+
433
+ ---
434
+
435
+ ## Development Config
436
+
437
+ | File | Purpose |
438
+ |------|---------|
439
+ | `.commitlintrc.json` | Enforces conventional commit message format |
440
+ | `.releaserc.json` | Semantic release automation for npm publishing |
441
+ | `.repomixignore` | Ignore patterns for repomix skill |
442
+ | `.env.example` | Template for Discord/Telegram/Gemini API keys |
443
+ | `docs/code-standards.md` | Project-level coding standards |
267
444
 
268
445
  ---
269
446
 
@@ -279,9 +456,9 @@ node tests/run-all.js
279
456
 
280
457
  Built on the shoulders of giants:
281
458
 
282
- > [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafafoundation agents, skills, hooks
459
+ > [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyenbase architecture, mental models, strategic depth, unique agents
283
460
  >
284
- > [ClaudeKit Engineer](https://github.com/claudekit/claudekit-engineer) by Duy Nguyenmental models, strategic depth, unique agents
461
+ > [Everything Claude Code](https://github.com/affaan-m/everything-claude-code) by Affaan Mustafacherry-picked agents, skills, commands, rules
285
462
  >
286
463
  > [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
464