@ushiradineth/veil 0.1.4 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +8 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,7 +11,7 @@ Add Veil to your MCP client config:
11
11
  "mcpServers": {
12
12
  "veil": {
13
13
  "command": "npx",
14
- "args": ["-y", "@ushiradineth/veil", "server"]
14
+ "args": ["-y", "@ushiradineth/veil@latest", "server"]
15
15
  }
16
16
  }
17
17
  }
@@ -28,7 +28,7 @@ Claude Desktop (`~/Library/Application Support/Claude/claude_desktop_config.json
28
28
  "mcpServers": {
29
29
  "veil": {
30
30
  "command": "npx",
31
- "args": ["-y", "@ushiradineth/veil", "server"],
31
+ "args": ["-y", "@ushiradineth/veil@latest", "server"],
32
32
  "env": {}
33
33
  }
34
34
  }
@@ -42,7 +42,7 @@ Codex (`~/.config/codex/mcp.json`) and OpenCode (`~/.config/opencode/mcp.json`):
42
42
  "mcpServers": {
43
43
  "veil": {
44
44
  "command": "npx",
45
- "args": ["-y", "@ushiradineth/veil", "server"]
45
+ "args": ["-y", "@ushiradineth/veil@latest", "server"]
46
46
  }
47
47
  }
48
48
  }
@@ -79,7 +79,7 @@ Local clone launcher:
79
79
  Package path:
80
80
 
81
81
  ```bash
82
- npx -y @ushiradineth/veil cli status
82
+ npx -y @ushiradineth/veil@latest cli status
83
83
  ```
84
84
 
85
85
  Local clone path:
@@ -91,10 +91,12 @@ node bin/veil.mjs cli status
91
91
  Build and query a workspace:
92
92
 
93
93
  ```bash
94
- npx -y @ushiradineth/veil cli refresh --workspace ~/nix-config --mode full
95
- npx -y @ushiradineth/veil cli discover --workspace ~/nix-config --query "where is buildIndex defined"
94
+ npx -y @ushiradineth/veil@latest cli refresh --workspace ~/nix-config --mode full
95
+ npx -y @ushiradineth/veil@latest cli discover --workspace ~/nix-config --query "where is buildIndex defined"
96
96
  ```
97
97
 
98
+ If you run these commands from inside a local `veil` clone, keep `@latest` in the package spec so npm does not resolve to the local workspace package.
99
+
98
100
  ## Agent skill install (`veil`)
99
101
 
100
102
  Install and list from local path:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ushiradineth/veil",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "repository": {