@chrono-meta/fh-gate 1.4.10 → 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/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
|
|