Skip to content

Commit aa41a1d

Browse files
Clarify deployment setup options in docs
1 parent 710fd11 commit aa41a1d

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"agentpond": patch
3+
---
4+
5+
Clarify that AgentPond supports multiple object stores while Firebase provides the automated one-command setup path.

AGENTS.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
This repository uses Changesets to generate package changelogs.
66

77
- Add a changeset in `.changeset/` for every user-facing change, package dependency change, CLI behavior change, or release-worthy bug fix.
8-
- Use `patch` for fixes and dependency maintenance, `minor` for new features, and `major` for breaking changes.
8+
- Use `patch` for fixes and dependency maintenance, and `minor` for new features or pre-1.0 breaking changes.
9+
- Do not add `major` changesets for now. A major changeset would trigger the 1.0 release and requires explicit approval.
910
- Keep changeset summaries concise and written for AgentPond users.
1011
- Do not manually edit generated changelog output unless the release process has already run `pnpm changeset version`.
1112

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
<a href="https://www.npmjs.com/package/agentpond"><img src="https://img.shields.io/node/v/agentpond.svg" alt="Node.js version"></a>
1515
</p>
1616

17-
AgentPond is a lightweight trace backend and CLI for AI applications. It keeps raw traces in object storage you control and syncs them into a local DuckDB cache for fast analysis by developers and coding agents.
17+
AgentPond is a lightweight trace backend and CLI for AI applications. It keeps raw traces in object storage you control and syncs them into a local DuckDB cache for fast analysis by developers and coding agents. Use it with Firebase Storage, Amazon S3, Google Cloud Storage, Vercel Blob, or custom infrastructure. Firebase includes an automated one-command setup; other deployments use the manual setup path.
1818

1919
## How it works
2020

2121
![AgentPond data flow from agent traces through object storage and local CLI analysis](https://raw.githubusercontent.com/marcusschiesser/agentpond/main/docs/assets/agentpond-how-it-works.png)
2222

2323
Object storage is the durable source of truth. The local DuckDB database is a rebuildable analytical cache, so production traces stay in your infrastructure without requiring an always-on analytics database.
2424

25-
## Get started with Firebase
25+
## Quick start: Firebase in one command
2626

2727
You need Node.js 22 or newer and an initialized Firebase project with an active project selected through `firebase use`.
2828

@@ -48,7 +48,7 @@ npx agentpond traces list --limit 10
4848

4949
See [Firebase setup](./docs/getting-started/firebase.md) for prerequisites and troubleshooting.
5050

51-
> Not using Firebase? See [Manual deployment setup](./docs/getting-started/manual-setup.md) for AWS, Google Cloud, Vercel, and custom infrastructure.
51+
> For Amazon S3, Google Cloud Storage, Vercel Blob, or custom infrastructure, see [Manual deployment setup](./docs/getting-started/manual-setup.md).
5252
5353
## Analyze traces
5454

0 commit comments

Comments
 (0)