@ushiradineth/veil 0.3.0 → 0.4.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 +34 -25
- package/dist/bin.js +47600 -41813
- package/package.json +10 -1
package/README.md
CHANGED
|
@@ -146,28 +146,37 @@ Or install manually in `Cursor Settings` -> `MCP` -> `New MCP Server` with:
|
|
|
146
146
|
|
|
147
147
|
## Capabilities
|
|
148
148
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
|
160
|
-
|
|
|
161
|
-
|
|
|
162
|
-
|
|
|
163
|
-
|
|
|
164
|
-
|
|
|
165
|
-
|
|
|
166
|
-
|
|
|
167
|
-
|
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
149
|
+
If index build fails with `Missing required parser runtimes for enabled built-ins`, reinstall dependencies (`bun install` or `npm install`) and rerun `veil init` parser setup. In read-only environments, ensure `tree-sitter` runtime artifacts are available before running `build` or `refresh`.
|
|
150
|
+
|
|
151
|
+
Use the same retrieval and context capability surface from either CLI or MCP.
|
|
152
|
+
|
|
153
|
+
MCP breaking change: canonical tool names are now prefixed with `veil_` and compatibility aliases were removed.
|
|
154
|
+
|
|
155
|
+
MCP responses are TOON text only and optimized for compact machine parsing. Guidance is included only when confidence is not high/full. Retrieval tools (`discover`, `lookup`, `search`) return compact chunk content by default, and full chunk content is opt-in (`--include-content` / `include_content`).
|
|
156
|
+
|
|
157
|
+
Retrieval query tools run freshness checks by default and now refresh on dirty workspace changes so indexed results stay aligned with current local edits.
|
|
158
|
+
|
|
159
|
+
| Capability | What it does | CLI command | MCP tool |
|
|
160
|
+
| ------------------------------------ | --------------------------------------------------------------------- | -------------------------------------------------------- | ---------------------- |
|
|
161
|
+
| Index status | Shows index freshness, manifest health, and stale reasons. | `veil status --workspace .` | `veil_status` |
|
|
162
|
+
| Incremental index refresh | Rebuilds index records from changed files only. | `veil refresh --workspace . --mode changed` | `veil_refresh` |
|
|
163
|
+
| Full index rebuild | Rebuilds all indexed records from scratch. | `veil build --workspace .` | `veil_build` |
|
|
164
|
+
| Setup plan | Returns non-interactive setup plan for CLI or MCP mode. | `veil init --mode cli --interactive false --raw-output` | `veil_init` |
|
|
165
|
+
| Discover files, symbols, chunks | Returns a mixed set of high-signal retrieval context in one call. | `veil discover --workspace . --query "<query>"` | `veil_discover` |
|
|
166
|
+
| Targeted chunk fetch | Fetches full content for one chunk id after compact retrieval. | `veil chunk --workspace . --id <chunk-id>` | `veil_chunk` |
|
|
167
|
+
| Intent-aware ranked lookup | Ranks relevant context with intent-aware scoring for coding tasks. | `veil lookup --workspace . --query "<query>"` | `veil_lookup` |
|
|
168
|
+
| File path retrieval | Finds matching file paths for quick navigation. | `veil files --workspace . --query "<query>"` | `veil_files` |
|
|
169
|
+
| Symbol retrieval | Finds functions, classes, types, and methods by name. | `veil symbols --workspace . --query "<query>"` | `veil_symbols` |
|
|
170
|
+
| Content search | Searches indexed code and docs chunks by query. | `veil search --workspace . --query "<query>"` | `veil_search` |
|
|
171
|
+
| Grammar list | Shows parser enabled and installed status. | `veil grammar list --workspace .` | `veil_grammar_list` |
|
|
172
|
+
| Grammar install | Enables parser IDs. | `veil grammar install --parsers js,ts` | `veil_grammar_install` |
|
|
173
|
+
| Grammar remove | Disables parser IDs. | `veil grammar remove --parsers ts` | `veil_grammar_remove` |
|
|
174
|
+
| Grammar update | Refreshes parser metadata for selected or all installed IDs. | `veil grammar update --all` | `veil_grammar_update` |
|
|
175
|
+
| Web search | Runs multi-provider web search for external context. | `veil web-search --query "<query>"` | `veil_web_search` |
|
|
176
|
+
| URL fetch and markdown normalization | Fetches web content and normalizes output for agent-friendly reading. | `veil fetch-url --url <url> --format markdown` | `veil_fetch_url` |
|
|
177
|
+
| Git status | Shows branch state, dirty files, and untracked changes. | `veil git-status --workspace .` | `veil_git_status` |
|
|
178
|
+
| Git log | Returns recent commits with metadata for project history checks. | `veil git-log --workspace . --limit 10` | `veil_git_log` |
|
|
179
|
+
| Git diff | Returns working tree or revision-range diffs. | `veil git-diff --workspace .` | `veil_git_diff` |
|
|
180
|
+
| Git show | Shows full details for a specific revision. | `veil git-show --workspace . --rev HEAD` | `veil_git_show` |
|
|
181
|
+
| GitHub context lookup | Pulls repository or pull request context via `gh` integration. | `veil gh-lookup --repo <owner/repo> --kind repo_context` | `veil_gh_lookup` |
|
|
182
|
+
| Runtime diagnostics | Surfaces cache counters and latency diagnostics, with optional reset. | `veil diagnostics [--reset]` | `veil_diagnostics` |
|