@windyroad/style-guide 0.3.0-preview.185 → 0.3.0-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
@@ -39,7 +39,7 @@ This examines your existing CSS, components, and design patterns, then asks abou
39
39
  |------|---------|-------------|
40
40
  | `style-guide-eval.sh` | Every prompt | Evaluates whether the task involves visual styling |
41
41
  | `style-guide-enforce-edit.sh` | Edit or Write | Blocks edits until the style-guide agent has reviewed |
42
- | `style-guide-mark-reviewed.sh` | Agent completes | Marks the review as done (TTL: 1800s) |
42
+ | `style-guide-mark-reviewed.sh` | Agent completes | Marks the review as done (TTL: 3600s) |
43
43
 
44
44
  ## Agent
45
45
 
@@ -16,7 +16,7 @@ check_review_gate() {
16
16
  local POLICY_FILE="$3" # e.g., "docs/STYLE-GUIDE.md"
17
17
  local MARKER="/tmp/${SYSTEM}-reviewed-${SESSION_ID}"
18
18
  local HASH_FILE="/tmp/${SYSTEM}-reviewed-${SESSION_ID}.hash"
19
- local TTL_SECONDS="${REVIEW_TTL:-1800}"
19
+ local TTL_SECONDS="${REVIEW_TTL:-3600}"
20
20
 
21
21
  # 1. Marker must exist
22
22
  if [ ! -f "$MARKER" ]; then
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@windyroad/style-guide",
3
- "version": "0.3.0-preview.185",
3
+ "version": "0.3.0-preview.188",
4
4
  "description": "Style guide enforcement for CSS and UI components",
5
5
  "bin": {
6
6
  "windyroad-style-guide": "./bin/install.mjs"