@drunkcoding/agents-and-skills 0.0.2 → 0.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "drunkcoding",
|
|
3
3
|
"owner": {
|
|
4
4
|
"name": "steven",
|
|
5
5
|
"email": "steven.hoang@transwap.com"
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"name": "tech-graph",
|
|
13
13
|
"source": "./plugins/tech-graph",
|
|
14
14
|
"description": "6-step wizard for technical diagrams (SVG/PNG) via fireworks-tech-graph",
|
|
15
|
-
"version": "0.0.
|
|
15
|
+
"version": "0.0.4",
|
|
16
16
|
"category": "diagram",
|
|
17
17
|
"keywords": [
|
|
18
18
|
"diagram",
|
|
@@ -21,6 +21,21 @@
|
|
|
21
21
|
"uml",
|
|
22
22
|
"flowchart"
|
|
23
23
|
]
|
|
24
|
+
},
|
|
25
|
+
{
|
|
26
|
+
"name": "html-effectiveness",
|
|
27
|
+
"source": "./plugins/html-effectiveness",
|
|
28
|
+
"description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
|
|
29
|
+
"version": "0.0.4",
|
|
30
|
+
"category": "reports",
|
|
31
|
+
"keywords": [
|
|
32
|
+
"html",
|
|
33
|
+
"report",
|
|
34
|
+
"status",
|
|
35
|
+
"incident",
|
|
36
|
+
"slide-deck",
|
|
37
|
+
"decision-matrix"
|
|
38
|
+
]
|
|
24
39
|
}
|
|
25
40
|
]
|
|
26
41
|
}
|
package/README.md
CHANGED
|
@@ -9,18 +9,49 @@ Published on npm as [`@drunkcoding/agents-and-skills`](https://www.npmjs.com/pac
|
|
|
9
9
|
| Plugin | Description |
|
|
10
10
|
|--------|-------------|
|
|
11
11
|
| [`tech-graph`](plugins/tech-graph) | 6-step wizard for technical diagrams (SVG + PNG). |
|
|
12
|
+
| [`html-effectiveness`](plugins/html-effectiveness) | Conversational agent that generates self-contained interactive HTML reports from 20 templates. |
|
|
12
13
|
|
|
13
14
|
## Install
|
|
14
15
|
|
|
15
16
|
### Claude Code marketplace
|
|
16
17
|
|
|
18
|
+
Add the marketplace once:
|
|
19
|
+
|
|
20
|
+
```text
|
|
21
|
+
/plugin marketplace add baoduy/agents-and-skills
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Then install any plugin individually:
|
|
25
|
+
|
|
26
|
+
```text
|
|
27
|
+
/plugin install tech-graph@drunkcoding
|
|
28
|
+
/plugin install html-effectiveness@drunkcoding
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
Reload after install:
|
|
32
|
+
|
|
17
33
|
```text
|
|
18
|
-
/
|
|
19
|
-
/plugin install <plugin-name>@neptune
|
|
34
|
+
/reload-plugins
|
|
20
35
|
```
|
|
21
36
|
|
|
22
37
|
Only the plugin you install loads; others stay dormant.
|
|
23
38
|
|
|
39
|
+
#### Project-scoped install
|
|
40
|
+
|
|
41
|
+
Install into a project's `.claude/` instead of your user profile:
|
|
42
|
+
|
|
43
|
+
```text
|
|
44
|
+
/plugin install tech-graph@drunkcoding --scope project
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
#### Manage installed plugins
|
|
48
|
+
|
|
49
|
+
```text
|
|
50
|
+
/plugin list # see installed plugins
|
|
51
|
+
/plugin uninstall <name> # remove
|
|
52
|
+
/plugin marketplace update # pull latest manifest
|
|
53
|
+
```
|
|
54
|
+
|
|
24
55
|
### npm / npx
|
|
25
56
|
|
|
26
57
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drunkcoding/agents-and-skills",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Personal collection of Claude Code skills and agents, installable via `npx skills`.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude-code",
|
|
@@ -14,11 +14,11 @@
|
|
|
14
14
|
"license": "MIT",
|
|
15
15
|
"repository": {
|
|
16
16
|
"type": "git",
|
|
17
|
-
"url": "git+https://github.com/
|
|
17
|
+
"url": "git+https://github.com/baoduy/agents-and-skills.git"
|
|
18
18
|
},
|
|
19
|
-
"homepage": "https://github.com/
|
|
19
|
+
"homepage": "https://github.com/baoduy/agents-and-skills#readme",
|
|
20
20
|
"bugs": {
|
|
21
|
-
"url": "https://github.com/
|
|
21
|
+
"url": "https://github.com/baoduy/agents-and-skills/issues"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
24
|
"plugins/**",
|
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "html-effectiveness",
|
|
3
3
|
"displayName": "HTML Effectiveness Reports",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.4",
|
|
5
5
|
"description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
|
|
6
|
-
"author":
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
"
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Steven Hoang"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [
|
|
10
|
+
"html",
|
|
11
|
+
"report",
|
|
12
|
+
"status",
|
|
13
|
+
"incident",
|
|
14
|
+
"slide-deck",
|
|
15
|
+
"decision-matrix"
|
|
12
16
|
]
|
|
13
17
|
}
|
|
@@ -7,8 +7,8 @@ Step-by-step wizard for generating technical diagrams (architecture, flowchart,
|
|
|
7
7
|
From inside Claude Code:
|
|
8
8
|
|
|
9
9
|
```text
|
|
10
|
-
/plugin marketplace add <user>/
|
|
11
|
-
/plugin install tech-graph@
|
|
10
|
+
/plugin marketplace add <user>/agents-and-skills
|
|
11
|
+
/plugin install tech-graph@drunkcoding
|
|
12
12
|
```
|
|
13
13
|
|
|
14
14
|
Then run `/tech-graph` (or `/tech-graph "auth flow"` to seed a topic).
|