@chrono-meta/fh-gate 1.4.10 → 1.4.12
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/CLAUDE.md
CHANGED
|
@@ -103,6 +103,8 @@ Simplification guard: trivial denials with one obvious fix → state block + sin
|
|
|
103
103
|
|
|
104
104
|
**4-step summary**: ① Auto-read CLAUDE.md + CATALOG + session card + registry scan → ② One-line proposal (new user / exploratory / returning branches) → ③ 5-skill cascade (plugin-recommender → synergy → .claudeignore → model → verify) → ④ Approval + setup
|
|
105
105
|
|
|
106
|
+
**Returning-user door skeleton (summary-level — applies even if the detail file read is skipped; returning users only, new/exploratory branches stay in the detail file)**: open with the fixed 3-door menu — *"① Connect/map a project · ② Work on a mapped project — {field candidates} · ③ FH self-development — {FH worklist}"* — composing session-card candidates **into doors ②/③**, never as a raw priority dump that replaces the menu. An urgent open item (time-windowed handoff · blocking external deadline) outranks the menu; an explicit task utterance skips it entirely (see Guards below); cadence reminders (§Cadence Rules) ride below it, they don't displace it. Canonical source: `fh_detail_protocols.md` Step 2 §Returning user — keep door labels in sync.
|
|
107
|
+
|
|
106
108
|
**Identity marker**: every greeting response (Step ②) opens with 🐿️ on its own line. FH's session-start signal — see `fh_detail_protocols.md` Step 2 for full greeting templates.
|
|
107
109
|
|
|
108
110
|
**Guards**: explicit task-entry utterance → skip onboarding · once per session · code/debug requests → start working directly · project routing is a suggestion, mention at most once
|
package/package.json
CHANGED
|
@@ -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
|
|