@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.
- package/README.md +23 -36
- package/dist/bin.js +24 -43405
- 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
|
|
75
|
-
|
|
|
76
|
-
| Index status
|
|
77
|
-
| Incremental refresh
|
|
78
|
-
| Full rebuild
|
|
79
|
-
| Discover files/symbols/chunks
|
|
80
|
-
| Fetch one chunk by id
|
|
81
|
-
| Intent-aware lookup
|
|
82
|
-
| File path retrieval
|
|
83
|
-
| Symbol retrieval
|
|
84
|
-
| Content search
|
|
85
|
-
| Grammar list/install/remove/update
|
|
86
|
-
|
|
|
87
|
-
|
|
|
88
|
-
|
|
|
89
|
-
|
|
|
90
|
-
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
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.
|