@esoteric-logic/praxis-harness 2.5.0 → 2.5.1
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.
|
@@ -178,8 +178,13 @@ Vault indexing is automatic.
|
|
|
178
178
|
|
|
179
179
|
## Phase 7 — Confirm & Open Vault
|
|
180
180
|
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
Derive the vault name dynamically and open it in Obsidian:
|
|
182
|
+
```bash
|
|
183
|
+
VAULT_PATH=$(jq -r '.vault_path' ~/.claude/praxis.config.json)
|
|
184
|
+
VAULT_NAME=$(python3 -c "import urllib.parse; print(urllib.parse.quote('''$(basename "$VAULT_PATH")'''))")
|
|
185
|
+
open "obsidian://open?vault=$VAULT_NAME"
|
|
186
|
+
```
|
|
187
|
+
If `vault_path` is not set or Obsidian is not installed: skip with a note.
|
|
183
188
|
|
|
184
189
|
Print summary table with all created files and bootstrap sequence.
|
|
185
190
|
|
package/package.json
CHANGED