@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 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 yarn:
17
+ Or with Bun:
18
18
 
19
19
  ```bash
20
- yarn global add @agentrix/cli
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
- yarn install
29
- yarn build
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
- yarn build
156
+ bun run build
157
157
 
158
158
  # Type-check only
159
- yarn typecheck
159
+ bun run typecheck
160
160
 
161
161
  # Run with development environment
162
- yarn dev
162
+ bun run dev
163
163
 
164
164
  # Run with production environment
165
- yarn prod
165
+ bun run prod
166
166
 
167
167
  # Run linter
168
- yarn lint
168
+ bun run lint
169
169
  ```
170
170
 
171
171
  ### Testing
172
172
 
173
173
  ```bash
174
174
  # Run all tests
175
- yarn test
175
+ bun run test
176
176
 
177
177
  # Run a single test file
178
- yarn build && npx vitest run src/utils/hmac_sha512.test.ts
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.