claude-skill-lord 2.0.2 → 2.0.4
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-plugin/plugin.json +1 -1
- package/.commitlintrc.json +27 -0
- package/.env.example +26 -0
- package/.releaserc.json +119 -0
- package/.repomixignore +22 -0
- package/CLAUDE.md +15 -1
- package/README.md +35 -19
- package/docs/code-standards.md +949 -0
- package/hooks/hooks.json +6 -0
- package/package.json +6 -2
- package/scripts/statusline.js +263 -0
- package/scripts/statusline.ps1 +312 -0
- package/scripts/statusline.sh +141 -0
|
@@ -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=
|
package/.releaserc.json
ADDED
|
@@ -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
|
@@ -136,7 +136,7 @@ All skills live in `./skills/<name>/SKILL.md` — flat structure, no tiers.
|
|
|
136
136
|
| /integrate | Integrations (variants: sepay, polar) |
|
|
137
137
|
| /skill | Skill management (variants: add, create, fix-logs, optimize) |
|
|
138
138
|
|
|
139
|
-
## Rules (
|
|
139
|
+
## Rules (11 languages + common)
|
|
140
140
|
|
|
141
141
|
Language-specific coding rules in `./rules/`:
|
|
142
142
|
- Common (agents, coding-style, development-workflow, git-workflow, hooks, patterns, performance, security, testing)
|
|
@@ -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
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|

|
|
8
8
|

|
|
9
9
|

|
|
10
|
-

|
|
11
11
|
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
## Why Claude Skill Lord?
|
|
15
15
|
|
|
16
16
|
- **Stop configuring, start building** — 170 skills, 44 agents, 115 commands work out of the box
|
|
17
|
-
- **Multi-language support** —
|
|
17
|
+
- **Multi-language support** — 11 language-specific rule sets (TypeScript, Python, Go, Rust, Java, Kotlin, C++, C#, PHP, Perl, Swift) + common rules
|
|
18
18
|
- **Language-specific agents** — dedicated reviewers and build resolvers for 8 languages
|
|
19
19
|
- **Design intelligence built-in** — 67 UI styles, 161 color palettes, reasoning engine for production-grade design decisions
|
|
20
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)
|
|
@@ -73,16 +73,6 @@ node scripts/sl.js init full --target /path/to/your/project
|
|
|
73
73
|
|
|
74
74
|
---
|
|
75
75
|
|
|
76
|
-
## Install Profiles
|
|
77
|
-
|
|
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 |
|
|
83
|
-
|
|
84
|
-
---
|
|
85
|
-
|
|
86
76
|
## Architecture
|
|
87
77
|
|
|
88
78
|
```mermaid
|
|
@@ -317,10 +307,10 @@ debugging, code-review, tdd-workflow, testing, backend-development, frontend-dev
|
|
|
317
307
|
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
|
|
318
308
|
|
|
319
309
|
### Backend & API
|
|
320
|
-
backend-patterns, api-design,
|
|
310
|
+
backend-patterns, api-design, mcp-server-patterns, mcp-management, mcp-builder
|
|
321
311
|
|
|
322
312
|
### Language Patterns
|
|
323
|
-
python-patterns, golang-patterns, rust-patterns, kotlin-patterns,
|
|
313
|
+
python-patterns, golang-patterns, rust-patterns, kotlin-patterns, perl-patterns, django-patterns, laravel-patterns, springboot-patterns, swiftui-patterns, nuxt4-patterns
|
|
324
314
|
|
|
325
315
|
### Language Testing & Security
|
|
326
316
|
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
|
|
@@ -329,10 +319,10 @@ python-testing, golang-testing, rust-testing, kotlin-testing, cpp-testing, djang
|
|
|
329
319
|
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
320
|
|
|
331
321
|
### Mobile
|
|
332
|
-
mobile-development, android-clean-architecture, flutter-
|
|
322
|
+
mobile-development, android-clean-architecture, flutter-dart-code-review
|
|
333
323
|
|
|
334
324
|
### DevOps & Infrastructure
|
|
335
|
-
deployment-patterns, docker-patterns,
|
|
325
|
+
deployment-patterns, docker-patterns, vercel-deploy
|
|
336
326
|
|
|
337
327
|
### Database
|
|
338
328
|
postgres-patterns, database-migrations, clickhouse-io
|
|
@@ -344,7 +334,7 @@ ai-multimodal, pytorch-patterns, google-adk-python, cost-aware-llm-pipeline, fou
|
|
|
344
334
|
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
335
|
|
|
346
336
|
### Content & Business
|
|
347
|
-
article-writing,
|
|
337
|
+
article-writing, content-engine, crosspost, market-research, investor-outreach, investor-materials, shopify
|
|
348
338
|
|
|
349
339
|
### Security & Auth
|
|
350
340
|
security-review, security-scan, better-auth, payment-integration, safety-guard
|
|
@@ -368,7 +358,7 @@ claude-code, claude-api, claude-devfleet, configure-ecc, skill-comply, skill-sto
|
|
|
368
358
|
|
|
369
359
|
---
|
|
370
360
|
|
|
371
|
-
## Rules (
|
|
361
|
+
## Rules (11 Languages + Common)
|
|
372
362
|
|
|
373
363
|
Language-specific coding rules in `./rules/`:
|
|
374
364
|
|
|
@@ -401,7 +391,7 @@ Language-specific coding rules in `./rules/`:
|
|
|
401
391
|
| Console.log check | Stop | Flags debug code left in modified files |
|
|
402
392
|
| Quality gate | PostToolUse | Lint + types + tests + security checks |
|
|
403
393
|
| Modularization | PostToolUse | Suggests splitting files >200 LOC |
|
|
404
|
-
| Session
|
|
394
|
+
| Session persistence | Stop | Persist session state for cross-session continuity |
|
|
405
395
|
| Discord/Telegram notify | Stop | Send notifications on session end |
|
|
406
396
|
|
|
407
397
|
---
|
|
@@ -418,6 +408,32 @@ Development contexts in `./contexts/` for specialized workflows:
|
|
|
418
408
|
|
|
419
409
|
---
|
|
420
410
|
|
|
411
|
+
## Statusline
|
|
412
|
+
|
|
413
|
+
Built-in cross-platform statusline showing real-time session metrics:
|
|
414
|
+
|
|
415
|
+
- **Cost tracking** — cost per hour and session total via ccusage
|
|
416
|
+
- **Token count** — current token usage
|
|
417
|
+
- **Session timer** — remaining time with color-coded warnings
|
|
418
|
+
- **Git branch** — current branch or commit hash
|
|
419
|
+
- **Model info** — active model name and version
|
|
420
|
+
|
|
421
|
+
Available in 3 variants: `scripts/statusline.js` (Node.js), `scripts/statusline.sh` (Bash), `scripts/statusline.ps1` (PowerShell).
|
|
422
|
+
|
|
423
|
+
---
|
|
424
|
+
|
|
425
|
+
## Development Config
|
|
426
|
+
|
|
427
|
+
| File | Purpose |
|
|
428
|
+
|------|---------|
|
|
429
|
+
| `.commitlintrc.json` | Enforces conventional commit message format |
|
|
430
|
+
| `.releaserc.json` | Semantic release automation for npm publishing |
|
|
431
|
+
| `.repomixignore` | Ignore patterns for repomix skill |
|
|
432
|
+
| `.env.example` | Template for Discord/Telegram/Gemini API keys |
|
|
433
|
+
| `docs/code-standards.md` | Project-level coding standards |
|
|
434
|
+
|
|
435
|
+
---
|
|
436
|
+
|
|
421
437
|
## Testing
|
|
422
438
|
|
|
423
439
|
```bash
|