@desplega.ai/agent-fs 0.13.5 → 0.13.6
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 +8 -0
- package/dist/cli.js +91 -66
- package/dist/fuse-bin.manifest.json +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -169,6 +169,14 @@ See [DEPLOYMENT.md](./DEPLOYMENT.md) for Docker, BYOK storage, and manual setup
|
|
|
169
169
|
|
|
170
170
|
**[live.agent-fs.dev](https://live.agent-fs.dev)** — A stateless browser UI (local storage only) for inspecting any agent-fs deployment. Point it at your server URL to browse files and search content — nothing is stored server-side.
|
|
171
171
|
|
|
172
|
+
Search covers the selected drive. Files matches filename patterns across all directories.
|
|
173
|
+
Full-text treats input as literal terms, so `ai-tinkerers` needs no query-language quoting in the UI.
|
|
174
|
+
Hybrid combines keywords and meaning. Semantic requires an embedding provider.
|
|
175
|
+
The UI distinguishes request errors, provider hints, and successful searches with no matches.
|
|
176
|
+
An open file outside the results carries a separate label.
|
|
177
|
+
|
|
178
|
+
The CLI and MCP `fts` operation retain raw FTS5 syntax. Use `agent-fs fts '"ai-tinkerers"'` for a punctuation-bearing term.
|
|
179
|
+
|
|
172
180
|
## Contributing
|
|
173
181
|
|
|
174
182
|
We welcome contributions! Whether it's bug reports, feature requests, docs improvements, or code — all are welcome.
|