@windyroad/agent-plugins 0.1.2-preview.13 → 0.1.3-preview.26
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/README.md +54 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# @windyroad/agent-plugins
|
|
2
|
+
|
|
3
|
+
**One-command installer for all Windy Road Agent Plugins.** Installs the full governance suite into your Claude Code project with a single `npx` call.
|
|
4
|
+
|
|
5
|
+
Part of [Windy Road Agent Plugins](../../README.md).
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
**Install everything:**
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx @windyroad/agent-plugins
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
**Install specific plugins only:**
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx @windyroad/agent-plugins --plugin architect tdd risk-scorer
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Restart Claude Code after installing. Type `/wr-` to see all available skills.
|
|
22
|
+
|
|
23
|
+
> Plugins install to your project by default (not globally). Pass `--scope user` to install globally.
|
|
24
|
+
|
|
25
|
+
## Available Plugins
|
|
26
|
+
|
|
27
|
+
| Plugin | What it does |
|
|
28
|
+
|--------|-------------|
|
|
29
|
+
| `architect` | Architecture decision enforcement |
|
|
30
|
+
| `risk-scorer` | Pipeline risk scoring, commit/push gates, secret leak detection |
|
|
31
|
+
| `tdd` | Red-Green-Refactor TDD cycle enforcement |
|
|
32
|
+
| `voice-tone` | Voice and tone review for user-facing copy |
|
|
33
|
+
| `style-guide` | Style guide review for CSS and UI components |
|
|
34
|
+
| `jtbd` | Jobs-to-be-done review for UI changes |
|
|
35
|
+
| `problem` | ITIL-aligned problem management |
|
|
36
|
+
| `retrospective` | Session retrospectives |
|
|
37
|
+
| `c4` | C4 architecture diagram generation |
|
|
38
|
+
| `wardley` | Wardley Map generation |
|
|
39
|
+
|
|
40
|
+
## Updating
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npx @windyroad/agent-plugins --update
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
## Uninstalling
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
npx @windyroad/agent-plugins --uninstall
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Licence
|
|
53
|
+
|
|
54
|
+
[MIT](../../LICENSE)
|
package/package.json
CHANGED