@windyroad/architect 0.5.1-preview.185 → 0.5.1-preview.188

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 CHANGED
@@ -42,7 +42,7 @@ This walks you through creating an ADR in [MADR 4.0](https://adr.github.io/madr/
42
42
  | `architect-detect.sh` | Every prompt | Checks for `docs/decisions/` and injects the review instruction |
43
43
  | `architect-enforce-edit.sh` | Edit or Write | Blocks the edit if the architect hasn't reviewed yet |
44
44
  | `architect-plan-enforce.sh` | ExitPlanMode | Ensures plans are reviewed before execution |
45
- | `architect-mark-reviewed.sh` | Agent completes | Marks the review as done (TTL: 1800s) |
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
47
 
48
48
  ## Agent
@@ -12,7 +12,7 @@ source "$_ARCHITECT_GATE_DIR/gate-helpers.sh"
12
12
  check_architect_gate() {
13
13
  local SESSION_ID="$1"
14
14
  local MARKER="/tmp/architect-reviewed-${SESSION_ID}"
15
- local TTL_SECONDS="${ARCHITECT_TTL:-1800}"
15
+ local TTL_SECONDS="${ARCHITECT_TTL:-3600}"
16
16
 
17
17
  if [ -n "$SESSION_ID" ] && [ -f "$MARKER" ]; then
18
18
  local NOW=$(date +%s)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/architect",
3
- "version": "0.5.1-preview.185",
3
+ "version": "0.5.1-preview.188",
4
4
  "description": "Architecture decision enforcement for AI coding agents",
5
5
  "bin": {
6
6
  "windyroad-architect": "./bin/install.mjs"