-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskills.json
More file actions
81 lines (81 loc) · 2.08 KB
/
Copy pathskills.json
File metadata and controls
81 lines (81 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"skills": [
{
"name": "skill-graph",
"version": "1.0.0",
"description": "Visual dependency graph for AI agent skills",
"tags": ["visualization", "tools"],
"dependencies": {
"d3": "^7.0.0",
"commander": "^11.0.0"
},
"conflicts": {}
},
{
"name": "agent-skills-registry",
"version": "1.0.0",
"description": "GitHub registry for AI agent skills with version pinning",
"tags": ["registry", "tools"],
"dependencies": {
"commander": "^11.0.0"
},
"conflicts": {}
},
{
"name": "context-budget",
"version": "1.0.0",
"description": "Token budgeting dashboard and predictor for AI coding agents",
"tags": ["monitoring", "tools"],
"dependencies": {},
"conflicts": {}
},
{
"name": "local-rag-bridge",
"version": "1.0.0",
"description": "API layer connecting local LLMs to existing RAG pipelines",
"tags": ["api", "backend"],
"dependencies": {
"fastapi": "^0.100.0"
},
"conflicts": {}
},
{
"name": "prompt-lens",
"version": "1.0.0",
"description": "CLI tool that visualizes prompt structure and optimizes tokens",
"tags": ["cli", "tools"],
"dependencies": {},
"conflicts": {}
},
{
"name": "stealth-fetch",
"version": "1.0.0",
"description": "Rust library for anti-detection HTTP fetching",
"tags": ["scraping", "utilities"],
"dependencies": {
"reqwest": "^0.11.0"
},
"conflicts": {
"context-budget": "^1.0.0"
}
},
{
"name": "skill-merge",
"version": "1.0.0",
"description": "Merge tool for combining multiple agent skill sets",
"tags": ["merge", "tools"],
"dependencies": {
"commander": "^11.0.0"
},
"conflicts": {}
},
{
"name": "agent-diff",
"version": "1.0.0",
"description": "Diff tool for AI agent context snapshots",
"tags": ["debugging", "tools"],
"dependencies": {},
"conflicts": {}
}
]
}