@blueprintit/shop-os-install 0.3.0 → 0.3.2

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/README.md CHANGED
@@ -4,19 +4,23 @@ One-command installer for **Shop OS**: Blueprint IT's AI Operating System for sm
4
4
 
5
5
  ## Quick Install (Recommended)
6
6
 
7
- Paste **one** of these commands. Everything installs automatically:
7
+ Download and run **one** of these setup scripts. Everything installs automatically:
8
8
 
9
9
  **Mac** (in Terminal):
10
10
  ```sh
11
- curl -fsSL https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-macos.sh | bash
11
+ curl -fsSL https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-macos.sh -o setup.sh
12
+ chmod +x setup.sh
13
+ ./setup.sh
12
14
  ```
13
15
 
14
16
  **Windows** (in PowerShell as Administrator):
15
17
  ```powershell
16
- irm https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-windows.ps1 | iex
18
+ irm https://raw.githubusercontent.com/blueprintit-ai/shop-os-installer/main/scripts/setup-windows.ps1 -o setup.ps1
19
+ Set-ExecutionPolicy -ExecutionPolicy Bypass -Scope Process
20
+ .\setup.ps1
17
21
  ```
18
22
 
19
- This installs Node.js, Claude Code, Obsidian, and Shop OS in one go. You'll be prompted for your license key partway through.
23
+ This installs Node.js, Claude Code, Obsidian, and Shop OS in one go. You'll be prompted for your license key and vault location.
20
24
 
21
25
  ---
22
26
 
@@ -37,7 +41,7 @@ The installer (run directly or via the setup scripts above):
37
41
  5. **Vault**: creates a Shop OS vault folder (default `~/Shop OS Vault`) with a starter `CLAUDE.md`
38
42
  6. **Per-vault config**: writes `<vault>/.claude/settings.json` with `enabledPlugins` set for obsidian + superpowers
39
43
  7. **License record**: saves `~/.shopos/license.json` (chmod 600) for downstream skill validation
40
- 8. **Next steps**: prints `cd` command and the `/obsidian:os-setup` slash command to run
44
+ 8. **Next steps**: prints `cd` command and the `/os-setup` slash command to run
41
45
 
42
46
  Zero npm dependencies. Uses only Node 18+ built-ins (`fetch`, `readline`, `fs`).
43
47
 
@@ -244,7 +244,7 @@ Welcome to your Shop OS vault. This is the operating system Blueprint IT install
244
244
 
245
245
  To finish onboarding, run the following slash command inside Claude Code:
246
246
 
247
- \`/obsidian:os-setup\`
247
+ \`/os-setup\`
248
248
 
249
249
  This walks you through personalizing the vault for your shop: name, owner, key staff,
250
250
  services, daily routines, and more.
@@ -365,11 +365,10 @@ function unwrapShellPath(p) {
365
365
  (s.startsWith('"') && s.endsWith('"')) ||
366
366
  (s.startsWith("'") && s.endsWith("'"));
367
367
  if (wasQuoted) {
368
- // Windows "Copy as path" and PowerShell drag wrap in quotes — keep backslashes
369
- // as directory separators.
370
368
  s = s.slice(1, -1);
371
- } else {
369
+ } else if (process.platform !== "win32") {
372
370
  // Mac Terminal drag uses backslash to escape spaces and special chars.
371
+ // On Windows, backslashes are path separators — leave them alone.
373
372
  s = s.replace(/\\(.)/g, "$1");
374
373
  }
375
374
  return s.trim();
@@ -635,7 +634,7 @@ async function main() {
635
634
  print(` 1. Open the ${cyan("Claude Code")} app you installed (Applications / Start menu)`);
636
635
  print(` 2. Pick this folder when it asks which to open:`);
637
636
  print(` ${cyan(vaultPath)}`);
638
- print(` 3. In the Claude prompt, run ${cyan("/obsidian:os-setup")} to personalize your vault`);
637
+ print(` 3. In the Claude prompt, run ${cyan("/os-setup")} to personalize your vault`);
639
638
  print(` 4. Walk through the onboarding interview`);
640
639
  print("");
641
640
  print(` 5. To let your team chat with the vault (read-only),`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprintit/shop-os-install",
3
- "version": "0.3.0",
3
+ "version": "0.3.2",
4
4
  "description": "One-command installer for Shop OS — Blueprint IT's AI Operating System for small businesses.",
5
5
  "type": "module",
6
6
  "bin": {