@ushiradineth/veil 0.6.0 → 0.6.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.
Files changed (3) hide show
  1. package/README.md +23 -36
  2. package/dist/bin.js +24 -43405
  3. package/package.json +31 -28
package/README.md CHANGED
@@ -12,18 +12,6 @@ It provides one compact tool surface for local code retrieval, git context, web
12
12
  npx -y @ushiradineth/veil@latest
13
13
  ```
14
14
 
15
- Local dev:
16
-
17
- ```bash
18
- nix run nixpkgs#bun -- run src/bin.ts
19
- ```
20
-
21
- Optional Streamable HTTP mode:
22
-
23
- ```bash
24
- VEIL_HTTP=1 npx -y @ushiradineth/veil@latest
25
- ```
26
-
27
15
  ### Install MCP skill
28
16
 
29
17
  ```bash
@@ -71,27 +59,26 @@ Add to `~/.config/opencode/opencode.json`:
71
59
 
72
60
  ## Capabilities
73
61
 
74
- | Capability | MCP tool |
75
- | ---------------------------------- | ----------------------------------------------------------------------------------------- |
76
- | Index status | `veil_status` |
77
- | Incremental refresh | `veil_refresh` |
78
- | Full rebuild | `veil_build` |
79
- | Discover files/symbols/chunks | `veil_discover` |
80
- | Fetch one chunk by id | `veil_chunk` |
81
- | Intent-aware lookup | `veil_lookup` |
82
- | File path retrieval | `veil_files` |
83
- | Symbol retrieval | `veil_symbols` |
84
- | Content search | `veil_search` |
85
- | Grammar list/install/remove/update | `veil_grammar_list`, `veil_grammar_install`, `veil_grammar_remove`, `veil_grammar_update` |
86
- | Web search | `veil_web_search` |
87
- | URL fetch | `veil_fetch_url` |
88
- | Git status/log/diff/show | `veil_git_status`, `veil_git_log`, `veil_git_diff`, `veil_git_show` |
89
- | GitHub context lookup | `veil_gh_lookup` |
90
- | Diagnostics | `veil_diagnostics` |
91
-
92
- ## Notes
93
-
94
- - MCP responses are TOON text and compact by default.
95
- - Retrieval tools auto-refresh on stale or dirty worktrees by default.
96
- - Full chunk content is opt-in on retrieval calls via `include_content`.
97
- - `veil_fetch_url` blocks private/local network targets by default unless explicitly allowed.
62
+ | Capability | MCP tool |
63
+ | ----------------------------------- | ----------------------------------------------------------------------------------------- |
64
+ | Index status | `veil_status` |
65
+ | Incremental refresh | `veil_refresh` |
66
+ | Full rebuild | `veil_build` |
67
+ | Discover files/symbols/chunks | `veil_discover` |
68
+ | Fetch one chunk by id | `veil_chunk` |
69
+ | Intent-aware lookup | `veil_lookup` |
70
+ | File path retrieval | `veil_files` |
71
+ | Symbol retrieval | `veil_symbols` |
72
+ | Content search | `veil_search` |
73
+ | Grammar list/install/remove/update | `veil_grammar_list`, `veil_grammar_install`, `veil_grammar_remove`, `veil_grammar_update` |
74
+ | Grammar recommendation/install plan | `veil_grammar_recommend` |
75
+ | Grammar runtime package install | `veil_grammar_runtime_install` |
76
+ | Web search | `veil_web_search` |
77
+ | URL fetch | `veil_fetch_url` |
78
+ | Git status/log/diff/show | `veil_git_status`, `veil_git_log`, `veil_git_diff`, `veil_git_show` |
79
+ | GitHub context lookup | `veil_gh_lookup` |
80
+ | Diagnostics | `veil_diagnostics` |
81
+
82
+ ## Note
83
+
84
+ > Veil is still experimental and under active development. Please report any issues or suggestions.