agentlogs 0.0.8 → 0.0.10
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 +39 -0
- package/dist/index.js +53 -45
- package/package.json +21 -18
- package/dist/agentlogs-bin +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# agentlogs
|
|
2
|
+
|
|
3
|
+
CLI for uploading and syncing AI coding agent transcripts to [AgentLogs](https://agentlogs.ai).
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g agentlogs
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Authenticate
|
|
15
|
+
agentlogs login
|
|
16
|
+
agentlogs status
|
|
17
|
+
agentlogs logout
|
|
18
|
+
|
|
19
|
+
# Claude Code
|
|
20
|
+
agentlogs claudecode upload <transcript.jsonl>
|
|
21
|
+
agentlogs claudecode sync # sync all local transcripts
|
|
22
|
+
agentlogs claudecode hook # for use with Claude Code hooks
|
|
23
|
+
|
|
24
|
+
# Codex
|
|
25
|
+
agentlogs codex upload <transcript.jsonl>
|
|
26
|
+
|
|
27
|
+
# OpenCode
|
|
28
|
+
agentlogs opencode upload <sessionId>
|
|
29
|
+
agentlogs opencode hook
|
|
30
|
+
|
|
31
|
+
# Repository settings
|
|
32
|
+
agentlogs allow --public # allow capture for current repo
|
|
33
|
+
agentlogs deny # deny capture for current repo
|
|
34
|
+
agentlogs settings # view/modify settings
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
## License
|
|
38
|
+
|
|
39
|
+
MIT
|