a24z 1.0.50 → 1.0.52
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 +14 -36
- package/dist/index.js +131 -119
- package/dist/index.js.map +3 -3
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -17,15 +17,14 @@ npm install -g a24z
|
|
|
17
17
|
### Setup
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
|
|
21
|
-
a24z login && a24z install claude-code
|
|
20
|
+
a24z init
|
|
22
21
|
```
|
|
23
22
|
|
|
24
|
-
**That's it!** Your
|
|
23
|
+
**That's it!** Your tools are now being monitored. View your dashboard at [a24z.ai](https://app.a24z.ai).
|
|
25
24
|
|
|
26
25
|
## ✨ Features
|
|
27
26
|
|
|
28
|
-
- **One-Command Installation**: Get up and running with just `a24z
|
|
27
|
+
- **One-Command Installation**: Get up and running with just `a24z init`
|
|
29
28
|
- **Supports multiple CLIs**: Currently Supports Claude Code, Gemini CLI, and Codex
|
|
30
29
|
- **Real-time Dashboard**: Live monitoring of all tool executions
|
|
31
30
|
- **Performance Analytics**: Success rates, execution times, and trends
|
|
@@ -36,54 +35,33 @@ a24z login && a24z install claude-code
|
|
|
36
35
|
|
|
37
36
|
## 📋 Commands
|
|
38
37
|
|
|
39
|
-
### `a24z
|
|
38
|
+
### `a24z init`
|
|
40
39
|
|
|
41
|
-
|
|
40
|
+
Logins in and configures a24z fully.
|
|
42
41
|
|
|
43
42
|
```bash
|
|
44
|
-
a24z
|
|
43
|
+
a24z inite
|
|
45
44
|
```
|
|
46
45
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
- ✅ Configures direct CLI integration with Claude Code
|
|
50
|
-
- ✅ Updates `~/.claude/settings.json` automatically
|
|
51
|
-
- ✅ Configures API endpoints and authentication
|
|
52
|
-
- ✅ Sets up comprehensive hook coverage for all tool events
|
|
53
|
-
- ✅ Enables real-time monitoring
|
|
54
|
-
|
|
55
|
-
### `a24z login`
|
|
46
|
+
### `a24z install <tool>`
|
|
56
47
|
|
|
57
|
-
|
|
48
|
+
Installs a24z observability hooks for your tool.
|
|
58
49
|
|
|
59
50
|
```bash
|
|
60
|
-
a24z
|
|
51
|
+
a24z install claude-code
|
|
61
52
|
```
|
|
62
53
|
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
- 🏢 **Organization Isolation**: Your data is kept in a cloud environment without hosting
|
|
66
|
-
- 👥 **Team Collaboration**: Share insights with your team members
|
|
67
|
-
- 🔐 **Enhanced Security**: Enterprise-grade authentication
|
|
68
|
-
- 📊 **Advanced Analytics**: See where your Coding Agents can improve
|
|
69
|
-
|
|
70
|
-
### `a24z status`
|
|
54
|
+
### `a24z login`
|
|
71
55
|
|
|
72
|
-
|
|
56
|
+
Authenticate with a24z.
|
|
73
57
|
|
|
74
58
|
```bash
|
|
75
|
-
a24z
|
|
59
|
+
a24z login
|
|
76
60
|
```
|
|
77
61
|
|
|
78
|
-
**Shows:**
|
|
79
|
-
|
|
80
|
-
- Installation status of hook scripts
|
|
81
|
-
- Authentication status
|
|
82
|
-
- Configuration details
|
|
83
|
-
|
|
84
62
|
### `a24z uninstall`
|
|
85
63
|
|
|
86
|
-
Remove
|
|
64
|
+
Remove a24z.
|
|
87
65
|
|
|
88
66
|
```bash
|
|
89
67
|
a24z uninstall claude-code
|
|
@@ -92,7 +70,7 @@ a24z uninstall claude-code
|
|
|
92
70
|
**What it does:**
|
|
93
71
|
|
|
94
72
|
- 🗑️ Removes hook scripts
|
|
95
|
-
- ⚙️ Cleans up
|
|
73
|
+
- ⚙️ Cleans up Settings settings
|
|
96
74
|
- 🔄 Restores original configuration
|
|
97
75
|
|
|
98
76
|
### `a24z hook <tool>`
|