youmd 0.8.6 → 0.8.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/dist/commands/agent.d.ts +4 -0
- package/dist/commands/agent.d.ts.map +1 -1
- package/dist/commands/agent.js +4 -0
- package/dist/commands/agent.js.map +1 -1
- package/dist/commands/machine.d.ts.map +1 -1
- package/dist/commands/machine.js +145 -2
- package/dist/commands/machine.js.map +1 -1
- package/dist/commands/project.d.ts.map +1 -1
- package/dist/commands/project.js +31 -0
- package/dist/commands/project.js.map +1 -1
- package/dist/commands/skill.d.ts.map +1 -1
- package/dist/commands/skill.js +679 -1
- package/dist/commands/skill.js.map +1 -1
- package/dist/commands/stack.d.ts.map +1 -1
- package/dist/commands/stack.js +97 -1
- package/dist/commands/stack.js.map +1 -1
- package/dist/commands/sync.d.ts.map +1 -1
- package/dist/commands/sync.js +84 -3
- package/dist/commands/sync.js.map +1 -1
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/lib/api.d.ts +179 -0
- package/dist/lib/api.d.ts.map +1 -1
- package/dist/lib/api.js +41 -4
- package/dist/lib/api.js.map +1 -1
- package/dist/lib/machine-bootstrap-prompt.d.ts.map +1 -1
- package/dist/lib/machine-bootstrap-prompt.js +58 -22
- package/dist/lib/machine-bootstrap-prompt.js.map +1 -1
- package/dist/lib/machine-verify.d.ts +27 -0
- package/dist/lib/machine-verify.d.ts.map +1 -1
- package/dist/lib/machine-verify.js +84 -0
- package/dist/lib/machine-verify.js.map +1 -1
- package/dist/lib/realtime-sync.d.ts +26 -0
- package/dist/lib/realtime-sync.d.ts.map +1 -1
- package/dist/lib/realtime-sync.js +44 -1
- package/dist/lib/realtime-sync.js.map +1 -1
- package/dist/mcp/registry.d.ts +2 -1
- package/dist/mcp/registry.d.ts.map +1 -1
- package/dist/mcp/registry.js +63 -1
- package/dist/mcp/registry.js.map +1 -1
- package/package.json +1 -1
- package/scripts/local-agent-stack-inventory.mjs +1150 -0
- package/scripts/skillstack-sync/README.md +11 -3
- package/skills/machine-bootstrap.md +4 -3
|
@@ -28,7 +28,7 @@ Cross-machine sync toolkit for Houston Golden's agent skill/stack setup.
|
|
|
28
28
|
|
|
29
29
|
### Complementary sync planes
|
|
30
30
|
|
|
31
|
-
- **Realtime identity/project plane:** `youmd sync --live --daemon` subscribes to Convex websocket updates, mints only a short-lived sync session token, materializes identity files and installed You.md skills locally, and triggers bounded shared stack/project-context syncs. It never prints or returns raw `.env.local` values.
|
|
31
|
+
- **Realtime identity/project/Skill Mesh plane:** `youmd sync --live --daemon` subscribes to Convex websocket updates, mints only a short-lived sync session token, materializes identity files and installed You.md skills locally, and triggers bounded shared stack/project-context plus safe agent-stack inventory syncs. It never prints or returns raw `.env.local` values.
|
|
32
32
|
- **Identity repair plane:** `youmd sync --daemon` (Convex ↔ local profile, memories, preferences). Automated via `com.youmd.identity-sync` daemon as a timer-based fallback. Daemon mode refreshes local files/skills and skips unsafe lossy pushes instead of forcing over richer server data.
|
|
33
33
|
- **Project-context plane:** `youmd stack context-sync` safely commits and syncs only `AGENTS.md`, `CLAUDE.md`, `project-context/`, and `.claude/` in curated Houston-owned repos. It refuses to merge remote app-code changes.
|
|
34
34
|
- **Env-vault plane:** `cli/scripts/env-vault/restore.sh` for secrets (manual, invoked on new machine); also available as `youmd env restore <vault>`.
|
|
@@ -42,7 +42,7 @@ cli/scripts/skillstack-sync/
|
|
|
42
42
|
├── sync.sh Core syncer (bash 3.2 compatible)
|
|
43
43
|
├── install-daemons.sh Installs all resident LaunchAgents
|
|
44
44
|
├── bootstrap-new-mac.sh New machine setup script
|
|
45
|
-
├── com.youmd.realtime-sync.plist LaunchAgent: runs `youmd sync --live --daemon` as a resident websocket syncer
|
|
45
|
+
├── com.youmd.realtime-sync.plist LaunchAgent: runs `youmd sync --live --daemon` as a resident websocket + Skill Mesh syncer
|
|
46
46
|
├── com.youmd.skillstack-sync.plist LaunchAgent: runs `youmd stack sync` every 5 min
|
|
47
47
|
├── com.youmd.identity-sync.plist LaunchAgent: runs `youmd sync --daemon` every 5 min
|
|
48
48
|
├── com.youmd.context-sync.plist LaunchAgent: runs `youmd stack context-sync` every 15 min
|
|
@@ -106,11 +106,19 @@ bash cli/scripts/skillstack-sync/install-daemons.sh
|
|
|
106
106
|
```
|
|
107
107
|
|
|
108
108
|
Installs four LaunchAgents:
|
|
109
|
-
- `com.youmd.realtime-sync` → runs `youmd sync --live --daemon`
|
|
109
|
+
- `com.youmd.realtime-sync` → runs `youmd sync --live --daemon`, including a bounded `youmd skill inventory --sync` pass every 30 minutes by default
|
|
110
110
|
- `com.youmd.skillstack-sync` → runs `youmd stack sync`
|
|
111
111
|
- `com.youmd.identity-sync` → runs `youmd sync --daemon`
|
|
112
112
|
- `com.youmd.context-sync` → runs `youmd stack context-sync`
|
|
113
113
|
|
|
114
|
+
Skill Mesh inventory knobs:
|
|
115
|
+
|
|
116
|
+
```bash
|
|
117
|
+
YOUMD_LIVE_SYNC_INVENTORY=0 # disable resident inventory sync
|
|
118
|
+
YOUMD_LIVE_SYNC_INVENTORY_INTERVAL_SECONDS=900 # tune cadence; default 1800
|
|
119
|
+
YOUMD_AGENT_STACK_INVENTORY_DIR=~/.youmd/agent-stack-inventory
|
|
120
|
+
```
|
|
121
|
+
|
|
114
122
|
Check status:
|
|
115
123
|
```bash
|
|
116
124
|
youmd stack daemon status
|
|
@@ -156,9 +156,10 @@ You.md is the brain. The new machine should become a runnable local agent workst
|
|
|
156
156
|
- Do not stop to ask "what next?" after each setup phase. Continue through the
|
|
157
157
|
command, verify the result, and report concise proof.
|
|
158
158
|
- Interrupt Houston only for true human-gated steps: GitHub browser auth,
|
|
159
|
-
source-Mac Secret Vault share
|
|
160
|
-
|
|
161
|
-
|
|
159
|
+
source-Mac Secret Vault share if no trusted-device envelope exists yet, local
|
|
160
|
+
vault passphrase/Keychain only when `YOUMD_ALLOW_LOCAL_ENV_VAULT_FALLBACK=1`
|
|
161
|
+
or `YOUMD_ENV_VAULT` is explicitly provided, npm OTP, OS permissions, or the
|
|
162
|
+
explicit 90-day project expansion choice.
|
|
162
163
|
- If the installed CLI is stale, run the curl installer/update path first, then
|
|
163
164
|
retry the You.md command. Tell Houston when npm publish is needed for
|
|
164
165
|
`npx youmd@latest` or npm fallback installs.
|