diff --git a/apps/docs/docs.json b/apps/docs/docs.json
index 381ac0ff..ecc8a585 100644
--- a/apps/docs/docs.json
+++ b/apps/docs/docs.json
@@ -163,7 +163,8 @@
"smfs/providers/vercel",
"smfs/providers/cloudflare"
]
- }
+ },
+ "smfs/examples"
]
}
],
diff --git a/apps/docs/smfs/examples.mdx b/apps/docs/smfs/examples.mdx
new file mode 100644
index 00000000..37fd985a
--- /dev/null
+++ b/apps/docs/smfs/examples.mdx
@@ -0,0 +1,47 @@
+---
+title: "Examples"
+sidebarTitle: "Examples"
+description: "Full working apps you can clone and run."
+icon: "code"
+---
+
+Standalone example apps showing SMFS in realistic use cases. Each one is a
+complete project with its own README, dependencies, and sample data.
+
+
+
+ Ingest contracts into a Supermemory container, then query them with
+ semantic search. Python + Anthropic SDK.
+
+
+ Ingest documentation, answer questions about it. TypeScript + Vercel AI
+ SDK.
+
+
+ Per-customer memory for support ticket drafting. Each customer gets their
+ own container. Python + Anthropic SDK.
+
+
+
+All examples use the [Bash Tool](/smfs/bash-tool) — the serverless-friendly
+way to give an agent a Supermemory-backed filesystem. No mount or FUSE
+required.
+
+## Running an example
+
+1. Clone the [examples repo](https://github.com/supermemoryai/examples)
+2. `cd` into the example you want
+3. Follow the README — typically: install deps, copy `.env.example` to `.env`,
+ fill in your API keys, run the ingest script, then run the agent
diff --git a/apps/docs/smfs/overview.mdx b/apps/docs/smfs/overview.mdx
index ca34b11d..74884a12 100644
--- a/apps/docs/smfs/overview.mdx
+++ b/apps/docs/smfs/overview.mdx
@@ -63,6 +63,9 @@ Already using a sandbox or agent platform? Jump straight to the guide for your p
One curl, one mount, you're done.
- Drop SMFS into a TypeScript agent without mounting anything.
+ Drop SMFS into a TypeScript or Python agent without mounting anything.
+
+
+ Full working apps you can clone and run — legal docs, support agents, and more.