@drunkcoding/agents-and-skills 0.0.9 → 0.0.11

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.
@@ -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.9",
15
+ "version": "0.0.11",
16
16
  "category": "diagram",
17
17
  "keywords": [
18
18
  "diagram",
@@ -26,7 +26,7 @@
26
26
  "name": "html-effectiveness",
27
27
  "source": "./plugins/html-effectiveness",
28
28
  "description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
29
- "version": "0.0.9",
29
+ "version": "0.0.11",
30
30
  "category": "reports",
31
31
  "keywords": [
32
32
  "html",
@@ -41,7 +41,7 @@
41
41
  "name": "team-superpower",
42
42
  "source": "./plugins/team-superpower",
43
43
  "description": "Coordination layer that runs the obra/superpowers skill chain across a Claude Code agent team — one /team-feature command takes an idea through brainstorming, plan, TDD implementation, review, and finish with at most 4 owner touchpoints.",
44
- "version": "0.0.9",
44
+ "version": "0.0.11",
45
45
  "category": "workflow",
46
46
  "keywords": [
47
47
  "agent-teams",
package/README.md CHANGED
@@ -26,7 +26,7 @@ Then install any plugin individually:
26
26
 
27
27
  ```text
28
28
  /plugin install tech-graph@drunkcoding
29
- /plugin install html-effectiveness@drunkcoding
29
+ /plugin install html-effectiveness@drunkcoding --scope local
30
30
  ```
31
31
 
32
32
  Reload after install:
@@ -56,10 +56,6 @@ Install into a project's `.claude/` instead of your user profile:
56
56
  ### npm / npx
57
57
 
58
58
  ```bash
59
- # Whole marketplace
60
- npm install -g @drunkcoding/agents-and-skills
61
-
62
- # Or via npx skills (https://github.com/vercel-labs/skills)
63
59
  # Use the GitHub shorthand (owner/repo) — `npx skills` does not resolve npm scopes.
64
60
  npx skills add baoduy/agents-and-skills
65
61
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drunkcoding/agents-and-skills",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "Personal collection of Claude Code skills and agents, installable via `npx skills`.",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -14,7 +14,7 @@
14
14
  "license": "MIT",
15
15
  "repository": {
16
16
  "type": "git",
17
- "url": "git+https://github.com/baoduy/agents-and-skills.git"
17
+ "url": "https://github.com/baoduy/agents-and-skills.git"
18
18
  },
19
19
  "homepage": "https://github.com/baoduy/agents-and-skills#readme",
20
20
  "bugs": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "html-effectiveness",
3
3
  "displayName": "HTML Effectiveness Reports",
4
- "version": "0.0.9",
4
+ "version": "0.0.11",
5
5
  "description": "Generate self-contained interactive HTML reports from 20 upstream templates via a conversational agent.",
6
6
  "author": {
7
7
  "name": "Steven Hoang"
@@ -13,14 +13,5 @@
13
13
  "incident",
14
14
  "slide-deck",
15
15
  "decision-matrix"
16
- ],
17
- "skills": [
18
- "skills/html-effectiveness"
19
- ],
20
- "agents": [
21
- "agents/report-builder.md"
22
- ],
23
- "commands": [
24
- "commands/html-report.md"
25
16
  ]
26
17
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "team-superpower",
3
3
  "displayName": "Team Superpower",
4
- "version": "0.0.9",
4
+ "version": "0.0.11",
5
5
  "description": "Coordination layer that runs the obra/superpowers skill chain across a Claude Code agent team — one /team-feature command takes an idea through brainstorming, plan, TDD implementation, review, and finish with at most 4 owner touchpoints.",
6
6
  "author": {
7
7
  "name": "Steven Hoang"
@@ -15,16 +15,39 @@
15
15
  "brainstorming",
16
16
  "code-review"
17
17
  ],
18
- "agents": [
19
- "agents/designer.md",
20
- "agents/planner.md",
21
- "agents/implementer.md",
22
- "agents/reviewer.md"
23
- ],
24
- "commands": [
25
- "commands/team-feature.md",
26
- "commands/team-feature-resume.md",
27
- "commands/team-cleanup.md"
28
- ],
29
- "hooks": "hooks/hooks.json"
18
+ "hooks": {
19
+ "TeammateIdle": [
20
+ {
21
+ "matcher": "*",
22
+ "hooks": [
23
+ {
24
+ "type": "command",
25
+ "command": "${CLAUDE_PLUGIN_ROOT}/hooks/teammate-idle.sh"
26
+ }
27
+ ]
28
+ }
29
+ ],
30
+ "TaskCreated": [
31
+ {
32
+ "matcher": "*",
33
+ "hooks": [
34
+ {
35
+ "type": "command",
36
+ "command": "${CLAUDE_PLUGIN_ROOT}/hooks/task-created.sh"
37
+ }
38
+ ]
39
+ }
40
+ ],
41
+ "TaskCompleted": [
42
+ {
43
+ "matcher": "*",
44
+ "hooks": [
45
+ {
46
+ "type": "command",
47
+ "command": "${CLAUDE_PLUGIN_ROOT}/hooks/task-completed.sh"
48
+ }
49
+ ]
50
+ }
51
+ ]
52
+ }
30
53
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tech-graph",
3
- "version": "0.0.9",
3
+ "version": "0.0.11",
4
4
  "description": "Step-by-step wizard for generating technical diagrams as SVG+PNG.",
5
5
  "author": {
6
6
  "name": "steven"