claude-skill-lord 2.0.4 → 2.0.6
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 +2 -4
- package/CLAUDE.md +0 -1
- package/README.md +20 -24
- package/manifests/install-modules.json +2 -2
- package/package.json +2 -3
- package/scripts/install.js +13 -0
- package/scripts/sl.js +34 -13
- package/skills/ai-multimodal/.env.example +97 -0
- package/skills/devops/.env.example +76 -0
- package/skills/docs-seeker/.env.example +15 -0
- package/skills/payment-integration/scripts/.env.example +20 -0
- package/skills/sequential-thinking/.env.example +8 -0
- package/agents/skill-router.md +0 -112
- package/commands/route.md +0 -28
- package/skills/manifest.json +0 -1078
package/commands/route.md
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Analyze your current task and recommend the most relevant skills from the SkillLord catalog
|
|
3
|
-
---
|
|
4
|
-
|
|
5
|
-
# Route — Skill Recommendation
|
|
6
|
-
|
|
7
|
-
Invoke the **skill-router** agent to analyze your request and recommend relevant skills.
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
/route <describe your task>
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Process
|
|
16
|
-
|
|
17
|
-
1. The skill-router agent reads the skill manifest
|
|
18
|
-
2. Analyzes your task description
|
|
19
|
-
3. Returns ranked skill recommendations with confidence scores
|
|
20
|
-
4. You decide which skills to prioritize
|
|
21
|
-
|
|
22
|
-
## Example
|
|
23
|
-
|
|
24
|
-
```
|
|
25
|
-
/route I need to add OAuth2 authentication to my Next.js app
|
|
26
|
-
```
|
|
27
|
-
|
|
28
|
-
Output: Recommended skills ranked by relevance (better-auth, frontend-development, api-design, security-patterns...)
|