@windyroad/wardley 0.1.2 → 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 ADDED
@@ -0,0 +1,44 @@
1
+ # @windyroad/wardley
2
+
3
+ **Wardley Map generation for Claude Code.** Analyses your codebase and generates a value chain evolution map.
4
+
5
+ Part of [Windy Road Agent Plugins](../../README.md).
6
+
7
+ ## What It Does
8
+
9
+ A [Wardley Map](https://learnwardleymapping.com/) visualises your system's components along two axes: value chain (visibility to the user) and evolution (genesis to commodity). This plugin generates one from your source code.
10
+
11
+ It produces:
12
+
13
+ - **OWM source file** -- editable source in Online Wardley Maps format
14
+ - **SVG and PNG** -- rendered diagram images
15
+ - **Markdown analysis** -- written interpretation of the map's strategic implications
16
+
17
+ ## Install
18
+
19
+ ```bash
20
+ npx @windyroad/wardley
21
+ ```
22
+
23
+ Restart Claude Code after installing.
24
+
25
+ ## Usage
26
+
27
+ **Generate or update the Wardley Map:**
28
+
29
+ ```
30
+ /wr-wardley:generate
31
+ ```
32
+
33
+ Analyses your codebase to identify components, their relationships, and their evolutionary stage, then produces the map and analysis.
34
+
35
+ ## Updating and Uninstalling
36
+
37
+ ```bash
38
+ npx @windyroad/wardley --update
39
+ npx @windyroad/wardley --uninstall
40
+ ```
41
+
42
+ ## Licence
43
+
44
+ [MIT](../../LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/wardley",
3
- "version": "0.1.2",
3
+ "version": "0.1.3-preview.26",
4
4
  "description": "Wardley Map generation",
5
5
  "bin": {
6
6
  "windyroad-wardley": "./bin/install.mjs"
@@ -1,5 +1,5 @@
1
1
  ---
2
- name: wr:wardley
2
+ name: wr-wardley:generate
3
3
  description: Generate or update the project's Wardley Map by analyzing the codebase. Produces an OWM source file, SVG, and PNG.
4
4
  allowed-tools: Read, Write, Edit, Bash, Glob, Grep
5
5
  ---
File without changes