@raindrop-ai/claude-code 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -0
- package/dist/cli.js +1288 -0
- package/dist/index.cjs +1039 -0
- package/dist/index.d.cts +273 -0
- package/dist/index.d.ts +273 -0
- package/dist/index.js +1006 -0
- package/package.json +62 -0
package/README.md
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# @raindrop-ai/claude-code
|
|
2
|
+
|
|
3
|
+
Raindrop observability for [Claude Code CLI](https://docs.anthropic.com/en/docs/claude-code/overview). Automatic session, tool call, and prompt tracing via Claude Code's native [hooks system](https://docs.anthropic.com/en/docs/claude-code/hooks).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @raindrop-ai/claude-code
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Setup
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
raindrop-claude-code setup
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
This saves your write key and configures Claude Code hooks. Every session will now send telemetry to your [Raindrop dashboard](https://app.raindrop.ai).
|
|
18
|
+
|
|
19
|
+
## What gets tracked
|
|
20
|
+
|
|
21
|
+
- Every prompt turn as a separate event, grouped by session
|
|
22
|
+
- Tool calls with inputs, outputs, and real durations
|
|
23
|
+
- Subagent spawns and completions
|
|
24
|
+
- Permission denials and context compaction
|
|
25
|
+
- Nested trace view (tools under root, subagent tools under subagent)
|
|
26
|
+
- Claude's responses and errors
|
|
27
|
+
|
|
28
|
+
## Docs
|
|
29
|
+
|
|
30
|
+
Full documentation: [docs.raindrop.ai/sdk/claude-code](https://docs.raindrop.ai/sdk/claude-code)
|