Skip to content

Commit b85e438

Browse files
add agent install
1 parent b96ceab commit b85e438

1 file changed

Lines changed: 15 additions & 2 deletions

File tree

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ agentpond sql "select id, name, session_id from traces"
119119

120120
For the complete command reference, see [CLI usage](./docs/cli.md).
121121

122+
122123
## Send traces from a Langfuse SDK
123124

124125
AgentPond implements Langfuse-compatible ingestion endpoints. To send traces to the local service, configure your Langfuse SDK with:
@@ -159,18 +160,30 @@ Each example prints the generated trace ID and the corresponding `agentpond` com
159160

160161
## Use AgentPond in your project
161162

162-
Install the latest Langfuse SDK for your language and configure it to point to your AgentPond deployment:
163+
### Use Langfuse SDK
164+
165+
Install the latest Langfuse SDK for your language and configure it to point to your AgentPond ingestion service:
163166

164167
```sh
165168
export LANGFUSE_BASE_URL=https://your-agentpond-ingestion.example.com
166169
export LANGFUSE_PUBLIC_KEY=your-public-key
167170
export LANGFUSE_SECRET_KEY=your-secret-key
168171
```
169172

170-
Deploy the [ingestion service](./docker-compose.yml) in your infrastructure and configure it to use your S3-compatible object store.
173+
Deploy the ingestion service together with a S3-compatibe store in your infrastructure - [docker-compose.yml](./docker-compose.yml) provides a template for local deployment.
171174

172175
For production deployments, replace all example credentials, use TLS, and give the ingestion service and CLI only the object-storage permissions they require.
173176

177+
> Coming soon: templates for your favorite Cloud provider: AWS, Google Cloud and Azure.
178+
179+
### Add Coding Agent
180+
181+
AgentPond includes a skill giving a coding agent the capability to use the CLI, understand the DuckDB schema, install tracing, and guidance for trace analysis. Install it with the open `skills` CLI:
182+
183+
```sh
184+
npx skills add marcusschiesser/agentpond
185+
```
186+
174187
## Configuration
175188

176189
The ingestion service and CLI use the following environment variables:

0 commit comments

Comments
 (0)