@agentrix/cli 0.50.0 → 0.51.0
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 +11 -11
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/lib.cjs +1 -1
- package/dist/lib.mjs +1 -1
- package/dist/logger-BH3r5jIU.mjs +1 -0
- package/dist/logger-JUtXYV-t.cjs +1 -0
- package/package.json +15 -14
- package/scripts/ensure-better-sqlite3.cjs +1 -1
- package/dist/logger-BKsxz5u7.mjs +0 -1
- package/dist/logger-ymHxQig-.cjs +0 -1
package/README.md
CHANGED
|
@@ -14,10 +14,10 @@ Agentrix CLI enables you to run AI agents (Claude or Codex) as background worker
|
|
|
14
14
|
npm install -g @agentrix/cli
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
Or with
|
|
17
|
+
Or with Bun:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
|
|
20
|
+
bun add --global @agentrix/cli
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### Install from source
|
|
@@ -25,8 +25,8 @@ yarn global add @agentrix/cli
|
|
|
25
25
|
```bash
|
|
26
26
|
git clone https://github.com/xmz-ai/agentrix-cli.git
|
|
27
27
|
cd agentrix-cli
|
|
28
|
-
|
|
29
|
-
|
|
28
|
+
bun install
|
|
29
|
+
bun run build
|
|
30
30
|
```
|
|
31
31
|
|
|
32
32
|
## Upgrading
|
|
@@ -153,29 +153,29 @@ All state is stored in `~/.agentrix/` (configurable via `AGENTRIX_HOME_DIR`):
|
|
|
153
153
|
|
|
154
154
|
```bash
|
|
155
155
|
# Type-check and build
|
|
156
|
-
|
|
156
|
+
bun run build
|
|
157
157
|
|
|
158
158
|
# Type-check only
|
|
159
|
-
|
|
159
|
+
bun run typecheck
|
|
160
160
|
|
|
161
161
|
# Run with development environment
|
|
162
|
-
|
|
162
|
+
bun run dev
|
|
163
163
|
|
|
164
164
|
# Run with production environment
|
|
165
|
-
|
|
165
|
+
bun run prod
|
|
166
166
|
|
|
167
167
|
# Run linter
|
|
168
|
-
|
|
168
|
+
bun run lint
|
|
169
169
|
```
|
|
170
170
|
|
|
171
171
|
### Testing
|
|
172
172
|
|
|
173
173
|
```bash
|
|
174
174
|
# Run all tests
|
|
175
|
-
|
|
175
|
+
bun run test
|
|
176
176
|
|
|
177
177
|
# Run a single test file
|
|
178
|
-
|
|
178
|
+
bun run build && npx vitest run src/utils/hmac_sha512.test.ts
|
|
179
179
|
```
|
|
180
180
|
|
|
181
181
|
**Note**: Tests require building first because daemon commands directly execute the binary.
|