agentlogs 0.0.9 → 0.0.11
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 +23 -0
- package/dist/index.js +110 -58
- package/package.json +20 -14
- package/dist/agentlogs-bin +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# agentlogs
|
|
2
|
+
|
|
3
|
+
CLI for uploading and syncing AI coding agent transcripts to [AgentLogs](https://agentlogs.ai).
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Authenticate
|
|
9
|
+
npx agentlogs login
|
|
10
|
+
npx agentlogs status
|
|
11
|
+
npx agentlogs logout
|
|
12
|
+
|
|
13
|
+
# Repository settings
|
|
14
|
+
npx agentlogs allow --public # allow capture for current repo
|
|
15
|
+
npx agentlogs deny # deny capture for current repo
|
|
16
|
+
npx agentlogs settings # view/modify settings
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
For agent specific commands, see the [agent specific documentation](https://agentlogs.ai/docs/agents).
|
|
20
|
+
|
|
21
|
+
## License
|
|
22
|
+
|
|
23
|
+
MIT
|