@windyroad/architect 0.5.2-preview.270 → 0.5.2-preview.273
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 +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -44,6 +44,7 @@ This walks you through creating an ADR in [MADR 4.0](https://adr.github.io/madr/
|
|
|
44
44
|
| `architect-plan-enforce.sh` | ExitPlanMode | Ensures plans are reviewed before execution |
|
|
45
45
|
| `architect-mark-reviewed.sh` | Agent completes | Marks the review as done (TTL: 3600s) |
|
|
46
46
|
| `architect-refresh-hash.sh` | After edit | Refreshes the content hash so the next edit triggers a fresh review |
|
|
47
|
+
| `architect-slide-marker.sh` | Agent or Bash | Slides the review marker forward across non-edit operations so an active review session is not invalidated by intervening Bash or sub-agent calls |
|
|
47
48
|
|
|
48
49
|
## Agent
|
|
49
50
|
|
|
@@ -53,6 +54,26 @@ The `wr-architect:agent` reviews proposed changes against existing decisions in
|
|
|
53
54
|
- Whether a new ADR should be created
|
|
54
55
|
- Whether existing decisions are stale and need reassessment
|
|
55
56
|
|
|
57
|
+
## Jobs to be Done
|
|
58
|
+
|
|
59
|
+
This plugin serves the [Jobs to be Done](../../docs/jtbd/) below. Per [ADR-051](../../docs/decisions/051-jtbd-anchored-readme-with-drift-advisory.proposed.md), the persona-grouped JTBD anchor is the canonical source of truth for the README's value framing.
|
|
60
|
+
|
|
61
|
+
### Tech lead / consultant
|
|
62
|
+
|
|
63
|
+
- **[JTBD-202 Run Pre-Flight Governance Checks Before Release or Handover](../../docs/jtbd/tech-lead/JTBD-202-pre-flight-governance-check.proposed.md)** — architect review is available via `/wr-architect:review-design` for on-demand pre-flight, and via `wr-architect:agent` for automatic review on every edit.
|
|
64
|
+
|
|
65
|
+
### Solo developer
|
|
66
|
+
|
|
67
|
+
- **[JTBD-001 Enforce Governance Without Slowing Down](../../docs/jtbd/solo-developer/JTBD-001-enforce-governance.proposed.md)** — architecture decisions are reviewed automatically; the agent reads the project's existing ADRs without needing to be told what to look for.
|
|
68
|
+
|
|
69
|
+
### Plugin developer
|
|
70
|
+
|
|
71
|
+
- **[JTBD-101 Extend the Suite with New Plugins](../../docs/jtbd/plugin-developer/JTBD-101-extend-suite.proposed.md)** — `/wr-architect:create-adr` is the canonical surface for documenting structural decisions in MADR 4.0 format so contributors learn the "why" behind existing patterns.
|
|
72
|
+
|
|
73
|
+
### Plugin user
|
|
74
|
+
|
|
75
|
+
- **[JTBD-302 Trust That the README Describes the Plugin I Just Installed](../../docs/jtbd/plugin-user/JTBD-302-trust-readme-describes-installed-behaviour.proposed.md)** — this README is anchored on current JTBD job IDs; drift between prose and shipped behaviour is detectable at retro time per ADR-051.
|
|
76
|
+
|
|
56
77
|
## Updating and Uninstalling
|
|
57
78
|
|
|
58
79
|
```bash
|