You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: add examples/README.md, broaden the root README's examples intro (#157)
examples/README.md was missing entirely. Add it as an index explaining
the shared theme across the three examples: each replicates a
well-known project on top of MFS, in a fraction of the code, because
MFS already owns ingestion/embedding/vector-store/search.
The root README's examples section only talked about Open Tag (a
leftover from before deep-research-skill and claude-context existed).
Reworded it to state that shared theme up front and list all three
examples evenly instead of spotlighting one.
Signed-off-by: Cheney Zhang <chen.zhang@zilliz.com>
Each example here rebuilds a well-known project on top of MFS — the same
4
+
capability, in a fraction of the code — because MFS already owns the part
5
+
that used to be the hard part for each of them: ingestion, chunking,
6
+
embedding, the vector store, and hybrid search across many source types.
7
+
What's left is thin glue, or a single skill describing a strategy on top of
8
+
`mfs search` / `mfs cat`.
9
+
10
+
| Example | Replicates | What it is |
11
+
|---|---|---|
12
+
|[`claude-context/`](claude-context/)|[claude-context](https://github.com/zilliztech/claude-context) — "make the codebase the context for any coding agent" | An MCP server: `search` + `read` over MFS, about 60 lines |
13
+
|[`deep-research-skill/`](deep-research-skill/)|[deep-searcher](https://github.com/zilliztech/deep-searcher) — reason and search over private data | A skill (`deep-research`) that runs the decompose → search → evaluate → synthesize loop on top of `mfs-find`; no framework, no vector-DB glue |
14
+
|[`open-tag-skill/`](open-tag-skill/)|[Claude Tag](https://www.anthropic.com/news/introducing-claude-tag) — Anthropic's hosted `@Claude` Slack teammate | A self-hosted Slack bot (`@OpenClaude` / `@OpenCodex`) plus the `open-tag-admin` skill that sets it up and runs it |
15
+
16
+
Every one of the replicated projects had to build its own retrieval stack
17
+
from scratch — a provider matrix, a vector database, document loaders, sync
18
+
logic. MFS already is that stack, so the example is only ever what's left
19
+
on top of it: an MCP server thin enough to read in one sitting, a skill
20
+
that's a strategy prompt over MFS's search API, or a small bridge process.
21
+
22
+
Open each example's own README for the install command and a full
0 commit comments