| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A Go CLI for the Supermemory API. Supports document ingestion (single/batch), conversation archiving, search, and container tag management.
go build -o supermemory ./main.goCopy the binary to a directory in your PATH, e.g.:
sudo cp supermemory /usr/local/bin/Or to your user bin:
mkdir -p ~/.local/bin
cp supermemory ~/.local/bin/Set your API key via environment:
export SUPERMEMORY_API_KEY="sm_..."
# Optional base URL (default: https://api.supermemory.ai)
export SUPERMEMORY_API_BASE="https://api.supermemory.ai"Or create a config file at ~/.config/supermemory/config.json:
{
"apiKey": "sm_...",
"apiBase": "https://api.supermemory.ai"
}All commands output JSON.
[
{
"content": "Markdown or plain text content",
"containerTag": "my-project",
"customId": "doc-001",
"metadata": { "source": "clipper" }
}
]| Back | FazBrowse Home | New Git URL |