Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 21 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@
npx @sliday/tamp
```

### Claude Code plugin

Auto-start on every session:
### Claude Code

```bash
# Install the plugin (auto-starts Tamp each session)
claude plugin marketplace add sliday/claude-plugins
claude plugin install tamp@sliday

claude config set --user env.ANTHROPIC_BASE_URL http://localhost:7778 # route traffic through Tamp (one-time)
```

Adds `/tamp:status` and `/tamp:config` commands.
The plugin adds `/tamp:status` and `/tamp:config` commands.

### 🦞 OpenClaw

Expand Down Expand Up @@ -241,6 +242,22 @@ tamp install-service
tamp status
```

## Monitoring

Check session stats any time via the health endpoint via browser or terminal:

```bash
curl -s 'http://localhost:7778/health?text' # Human-readable
# Tamp v0.5.9 | 7 stages active | sidecar: n/a
# Requests: 63 | Blocks: 2
# Tokens saved: 1136 | Chars: 3482/61528 (5.7%)
# Est. savings: $0.0034 (Sonnet $3/Mtok) | $0.0170 (Opus $15/Mtok)

curl -s http://localhost:7778/health # JSON (for scripts/dashboards)
```

Inside Claude Code, run `/tamp:status`.

## Token Savings

Claude Code sends full conversation history on every API call. Tool results accumulate — files, listings, outputs — all re-sent as input tokens.
Expand Down