@chrono-meta/fh-gate 1.4.9 → 1.4.11

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/CHEATSHEET.md CHANGED
@@ -98,12 +98,19 @@ git config core.hooksPath templates/.git-hooks
98
98
  chmod +x templates/.git-hooks/pre-commit
99
99
  ```
100
100
 
101
- After running `/steel-quench` and `/phantom-quench` in your session, Claude creates the Axes 2+3 pass marker automatically. If it doesn't (e.g., session interrupted), create it manually:
101
+ After running `/steel-quench` and `/phantom-quench` in your session, Claude creates the Axes 2+3 pass marker automatically. The marker must carry machine-readable floor fields — the hook validates them (a bare `touch` marker no longer passes; below-floor passes block unless an explicit `below-floor-ack:` line records operator acceptance). If Claude doesn't create it (e.g., session interrupted), create it manually:
102
102
 
103
103
  ```bash
104
- touch "tracks/_meta/.axes_23_passed_$(git rev-parse --abbrev-ref HEAD | tr '/' '_')_$(date +%Y-%m-%d).marker"
104
+ cat > "tracks/_meta/.axes_23_passed_$(git rev-parse --abbrev-ref HEAD | tr '/' '_')_$(date +%Y-%m-%d).marker" <<'EOF'
105
+ axis2-engine: quench-challenger
106
+ axis2-model: opus
107
+ floor-status: at-floor
108
+ <scope / findings prose>
109
+ EOF
105
110
  ```
106
111
 
112
+ > **Migration note**: markers created before the floor-field upgrade are 0-byte legacy files — past-date ones are inert (the hook only reads today's marker), but a legacy marker for *today* must be regenerated in the structured format above before the first post-upgrade commit.
113
+
107
114
  ---
108
115
 
109
116
  ## 7. Weekly improvement cycle
package/CLAUDE.md CHANGED
@@ -139,6 +139,8 @@ No user request is needed — this is a mandatory autonomous step, not a proposa
139
139
  FH asset modified → Axis 1 (regression_guard.sh --pr {BRANCH})
140
140
  → Axis 2 (/steel-quench) → Axis 3 (/phantom-quench)
141
141
  → marker: tracks/_meta/.axes_23_passed_{branch}_{date}.marker
142
+ (structured — required fields: axis2-engine / axis2-model / floor-status;
143
+ hook validates mechanically: below-floor blocks without below-floor-ack)
142
144
  → Axis 4 (/edit-manifest RECORD, today's entry in edit_manifest.yaml)
143
145
  → All 4 PASS → git commit allowed | Any FAIL → fix inline, re-run
144
146
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chrono-meta/fh-gate",
3
- "version": "1.4.9",
3
+ "version": "1.4.11",
4
4
  "description": "FH runtime adapters — run FH governance, skills, and agents via Claude or Codex with machine-parseable gates.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -293,6 +293,7 @@ Present Step 4 menu options [1]–[5]. Do not skip to [5] silently — surface t
293
293
 
294
294
  ## Simplification Guards
295
295
 
296
+ - Video Tier-3 probe fails (any of `yt-dlp` / `curl_cffi` / `ffmpeg` missing, or timedtext returns 429) → fall through to operator summary; never assume `yt-dlp` works
296
297
  - If 3+ arxiv queries fail, proceed with HN only (do not abort)
297
298
  - On curl timeout, skip that item and continue with the rest
298
299
  - If synthesis result exceeds 400 characters, retain top 3 items and truncate the rest
@@ -97,11 +97,18 @@ Recommended layout:
97
97
  private: {org}/{hub}-be (paper drafts, experiment logs,
98
98
  raw signals, handoff files)
99
99
 
100
- Quick setup:
100
+ Quick setup (remote-backed):
101
101
  gh repo create {org}/{hub}-be --private
102
102
  git clone https://github.com/{org}/{hub}-be ~/path/to/{hub}-be
103
103
  mkdir -p {hub}-be/{paper-drafts,paper-signals,digests,handoff}
104
104
 
105
+ Local-only variant (no GitHub — your data never leaves the machine):
106
+ git init ~/path/to/{hub}-be # no remote needed
107
+ mkdir -p ~/path/to/{hub}-be/{paper-drafts,paper-signals,digests,handoff}
108
+ → the sync script detects the missing upstream and skips push
109
+ automatically; local git history carries durability. Any store
110
+ name works — set BE_DIR (and HUB_DIR) env vars to your paths.
111
+
105
112
  Key rule: knowledge/shared/ drafts stay local via .gitignore glob.
106
113
  Push snapshots to the companion store explicitly — never auto-push.
107
114
  handoff/ files bridge cloud session → local without exposing content.
@@ -536,6 +543,7 @@ install-wizard — Complete
536
543
 
537
544
  🔬 Developing FH itself? Set up a private companion store:
538
545
  gh repo create {org}/{hub}-be --private # paper drafts, experiment logs, handoffs
546
+ (or local-only: git init ~/path/{hub}-be — no remote; push is auto-skipped)
539
547
  → public mirror holds methodology · private store holds research artifacts
540
548
  → field projects (internal harness) can use the same dual-repo pattern
541
549