@raindrop-ai/claude-code 0.0.3 → 0.0.5
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 +4 -0
- package/dist/cli.js +433 -46
- package/dist/index.cjs +423 -33
- package/dist/index.d.cts +60 -2
- package/dist/index.d.ts +60 -2
- package/dist/index.js +415 -28
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,6 +20,10 @@ This saves your write key and configures Claude Code hooks. Every session will n
|
|
|
20
20
|
|
|
21
21
|
- Every prompt turn as a separate event, grouped by session
|
|
22
22
|
- Tool calls with inputs, outputs, and real durations
|
|
23
|
+
- Token usage per turn and per session (input, output, cache read, cache creation)
|
|
24
|
+
- Model name, service tier, and stop reason
|
|
25
|
+
- CLAUDE.md and rules file contents
|
|
26
|
+
- `--append-system-prompt` / `--append-system-prompt-file` content (best-effort)
|
|
23
27
|
- Subagent spawns and completions
|
|
24
28
|
- Permission denials and context compaction
|
|
25
29
|
- Nested trace view (tools under root, subagent tools under subagent)
|