@drunkcoding/agents-and-skills 0.0.2 → 0.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,5 +1,5 @@
1
1
  {
2
- "name": "neptune",
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.2",
15
+ "version": "0.0.3",
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.3",
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
+
17
20
  ```text
18
21
  /plugin marketplace add drunkcoding/agents-and-skills
19
- /plugin install <plugin-name>@neptune
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
+
33
+ ```text
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.2",
3
+ "version": "0.0.3",
4
4
  "description": "Personal collection of Claude Code skills and agents, installable via `npx skills`.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "html-effectiveness",
3
3
  "displayName": "HTML Effectiveness Reports",
4
- "version": "0.0.2",
4
+ "version": "0.0.3",
5
5
  "description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
6
6
  "author": "Steven Hoang",
7
7
  "skills": [
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tech-graph",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "Step-by-step wizard for generating technical diagrams as SVG+PNG.",
5
5
  "author": {
6
6
  "name": "steven"
@@ -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>/neptune
11
- /plugin install tech-graph@neptune
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).