@windyroad/architect 0.15.2-preview.581 → 0.15.3-preview.583

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.
@@ -123,5 +123,5 @@
123
123
  }
124
124
  },
125
125
  "name": "wr-architect",
126
- "version": "0.15.2"
126
+ "version": "0.15.3"
127
127
  }
@@ -105,6 +105,13 @@ case "$FILE_PATH" in
105
105
  exit 0 ;;
106
106
  */docs/stories/*|docs/stories/*)
107
107
  exit 0 ;;
108
+ # Retros — ask-hygiene + run-retro narrative trail written routinely by
109
+ # `/wr-retrospective:run-retro` (Step 2d + Step 5). Not architecture
110
+ # content; the gate firing on every retro append forces a subagent
111
+ # round-trip before a non-load-bearing narrative artefact can land.
112
+ # Mirrors docs/problems and docs/jtbd peer-plugin-policy exemptions. P203.
113
+ */docs/retros/*|docs/retros/*)
114
+ exit 0 ;;
108
115
  esac
109
116
 
110
117
  # Check gate
@@ -96,3 +96,22 @@ assert_path_allowed() {
96
96
  @test "architect: exempts docs/stories/README.md (P170 / ADR-060)" {
97
97
  assert_path_allowed "$PWD/docs/stories/README.md"
98
98
  }
99
+
100
+ # --- Retros exemption (P203) ---
101
+ # `docs/retros/*` is the ask-hygiene + run-retro narrative trail written
102
+ # routinely by `/wr-retrospective:run-retro` Step 2d + Step 5. Routine
103
+ # appends should not fire the architect gate — they are not load-bearing
104
+ # architecture content. Mirrors the docs/problems and docs/jtbd peer-
105
+ # plugin-policy exemptions.
106
+
107
+ @test "architect: exempts docs/retros/ ask-hygiene file (P203)" {
108
+ assert_path_allowed "$PWD/docs/retros/2026-06-06-some-iter-ask-hygiene.md"
109
+ }
110
+
111
+ @test "architect: exempts docs/retros/ analyze-context file (P203)" {
112
+ assert_path_allowed "$PWD/docs/retros/2026-06-06-context-analysis.md"
113
+ }
114
+
115
+ @test "architect: exempts docs/retros/ retro narrative file (P203)" {
116
+ assert_path_allowed "$PWD/docs/retros/2026-06-06-session-wrap.md"
117
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/architect",
3
- "version": "0.15.2-preview.581",
3
+ "version": "0.15.3-preview.583",
4
4
  "description": "Architecture decision enforcement for AI coding agents",
5
5
  "bin": {
6
6
  "windyroad-architect": "./bin/install.mjs"