docs: add examples page and nav entry

This commit is contained in:
Dhravya 2026-04-28 00:00:58 +00:00
parent 9da8c9f2ee
commit 8803aa2af9
3 changed files with 53 additions and 2 deletions

View file

@ -163,7 +163,8 @@
"smfs/providers/vercel",
"smfs/providers/cloudflare"
]
}
},
"smfs/examples"
]
}
],

View file

@ -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.
<CardGroup cols={2}>
<Card
title="Legal Docs Assistant"
icon="scale-balanced"
href="https://github.com/supermemoryai/examples/tree/main/legal-docs-assistant"
>
Ingest contracts into a Supermemory container, then query them with
semantic search. Python + Anthropic SDK.
</Card>
<Card
title="Docs Answering Agent"
icon="book"
href="https://github.com/supermemoryai/examples/tree/main/docs-answering-agent"
>
Ingest documentation, answer questions about it. TypeScript + Vercel AI
SDK.
</Card>
<Card
title="Customer Support Agent"
icon="headset"
href="https://github.com/supermemoryai/examples/tree/main/customer-support-agent"
>
Per-customer memory for support ticket drafting. Each customer gets their
own container. Python + Anthropic SDK.
</Card>
</CardGroup>
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

View file

@ -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.
</Card>
<Card title="Use the Bash Tool" icon="terminal" href="/smfs/bash-tool">
Drop SMFS into a TypeScript agent without mounting anything.
Drop SMFS into a TypeScript or Python agent without mounting anything.
</Card>
<Card title="Examples" icon="code" href="/smfs/examples">
Full working apps you can clone and run — legal docs, support agents, and more.
</Card>
</CardGroup>