a24z 1.0.18 → 1.0.20
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 -38
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/dist/file.js +0 -12
- package/dist/hook-handler/hook-handler.d.ts +0 -1
- package/dist/hook-handler/hook-handler.d.ts.map +0 -1
- package/dist/hook-handler/index.d.ts +0 -2
- package/dist/hook-handler/index.d.ts.map +0 -1
- package/dist/hook-handler/index.js +0 -16
- package/dist/hook-handler/package.json +0 -3
- package/dist/hook-handler.d.ts +0 -2
- package/dist/hook-handler.d.ts.map +0 -1
- package/dist/http-transport.d.ts +0 -8
- package/dist/http-transport.d.ts.map +0 -1
- package/dist/http-transport.js +0 -33
- package/dist/http-transport.js.map +0 -1
- package/dist/logger.d.ts +0 -19
- package/dist/logger.d.ts.map +0 -1
- package/dist/logger.js +0 -53
- package/dist/logger.js.map +0 -1
- package/dist/worker-pipeline.js +0 -38
- package/dist/worker.js +0 -54
- package/dist/worker1.js +0 -171
package/README.md
CHANGED
|
@@ -18,24 +18,25 @@ npm install -g a24z
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
# Install hooks and configure Claude Code
|
|
21
|
-
a24z
|
|
21
|
+
a24z login && a24z install claude-code
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
**That's it!** Your Claude Code tools are now being monitored. View your dashboard at [a24z.ai](https://app.a24z.ai).
|
|
25
25
|
|
|
26
26
|
## ✨ Features
|
|
27
27
|
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
28
|
+
- **One-Command Installation**: Get up and running with just `a24z install claude-code`
|
|
29
|
+
- **Supports multiple CLIs**: Currently Supports Claude Code, Gemini CLI, and Codex
|
|
30
|
+
- **Real-time Dashboard**: Live monitoring of all tool executions
|
|
31
|
+
- **Performance Analytics**: Success rates, execution times, and trends
|
|
32
|
+
- **Tool Insights**: Per-tool performance analysis and optimization suggestions
|
|
33
|
+
- **Secure**: Enterprise-grade authentication and data protection
|
|
34
|
+
- **Zero Configuration**: Works out of the box with sensible defaults
|
|
35
|
+
- **Robust Hook System**: Supports all hook types
|
|
35
36
|
|
|
36
37
|
## 📋 Commands
|
|
37
38
|
|
|
38
|
-
### `a24z install
|
|
39
|
+
### `a24z install <tool>`
|
|
39
40
|
|
|
40
41
|
Installs A24Z observability hooks for Claude Code.
|
|
41
42
|
|
|
@@ -119,18 +120,6 @@ a24z configures direct CLI integration with Claude Code's native hook system:
|
|
|
119
120
|
```json
|
|
120
121
|
{
|
|
121
122
|
"hooks": {
|
|
122
|
-
"PreToolUse": [{
|
|
123
|
-
"matcher": "*",
|
|
124
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
125
|
-
}],
|
|
126
|
-
"PostToolUse": [{
|
|
127
|
-
"matcher": "*",
|
|
128
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
129
|
-
}],
|
|
130
|
-
"UserPromptSubmit": [{
|
|
131
|
-
"matcher": "*",
|
|
132
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
133
|
-
}],
|
|
134
123
|
"SessionStart": [{
|
|
135
124
|
"matcher": "*",
|
|
136
125
|
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
@@ -138,22 +127,6 @@ a24z configures direct CLI integration with Claude Code's native hook system:
|
|
|
138
127
|
"SessionEnd": [{
|
|
139
128
|
"matcher": "*",
|
|
140
129
|
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
141
|
-
}],
|
|
142
|
-
"SubagentStop": [{
|
|
143
|
-
"matcher": "*",
|
|
144
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
145
|
-
}],
|
|
146
|
-
"Notification": [{
|
|
147
|
-
"matcher": "*",
|
|
148
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
149
|
-
}],
|
|
150
|
-
"Stop": [{
|
|
151
|
-
"matcher": "*",
|
|
152
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
153
|
-
}],
|
|
154
|
-
"PreCompact": [{
|
|
155
|
-
"matcher": "*",
|
|
156
|
-
"hooks": [{ "type": "command", "command": "a24z hook claude-code" }]
|
|
157
130
|
}]
|
|
158
131
|
}
|
|
159
132
|
}
|
|
@@ -170,10 +143,29 @@ Data is sent to the a24z platform where it's processed to provide:
|
|
|
170
143
|
|
|
171
144
|
## 🔧 Configuration
|
|
172
145
|
|
|
146
|
+
### Multiple Tools Support
|
|
147
|
+
|
|
148
|
+
The CLI now supports installing and managing multiple AI coding tools simultaneously. You can install multiple tools and they will all be configured to send telemetry data:
|
|
149
|
+
|
|
150
|
+
```bash
|
|
151
|
+
# Install multiple tools
|
|
152
|
+
a24z install claude-code
|
|
153
|
+
a24z install gemini-cli
|
|
154
|
+
a24z install codex
|
|
155
|
+
|
|
156
|
+
# Check status to see all installed tools
|
|
157
|
+
a24z status
|
|
158
|
+
|
|
159
|
+
# Uninstall a specific tool (others remain active)
|
|
160
|
+
a24z uninstall gemini-cli
|
|
161
|
+
```
|
|
162
|
+
|
|
173
163
|
### File Locations
|
|
174
164
|
|
|
175
|
-
- **Config**: `~/.
|
|
165
|
+
- **A24Z Config**: `~/.a24z/settings.json` (main configuration)
|
|
176
166
|
- **Claude Settings**: `~/.claude/settings.json`
|
|
167
|
+
- **Gemini Settings**: `~/.gemini/settings.json`
|
|
168
|
+
- **Codex Config**: `~/.codex/config.toml`
|
|
177
169
|
|
|
178
170
|
## 🔗 Links
|
|
179
171
|
|