@task-shepherd/agent 1.0.19 → 1.0.21
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 +17 -0
- package/dist/cli/index.js +1 -1
- package/dist/index.js +1 -1
- package/dist/meta.json +93 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,10 +4,25 @@ AI agent service for automated project analysis and task processing with Claude
|
|
|
4
4
|
|
|
5
5
|
## Installation
|
|
6
6
|
|
|
7
|
+
### Option 1: Using npx (Recommended)
|
|
7
8
|
```bash
|
|
9
|
+
# No installation needed - always uses latest version
|
|
10
|
+
npx @task-shepherd/agent init
|
|
11
|
+
npx @task-shepherd/agent start
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
### Option 2: Global Install
|
|
15
|
+
```bash
|
|
16
|
+
# Install globally for permanent CLI access
|
|
8
17
|
npm install -g @task-shepherd/agent
|
|
18
|
+
|
|
19
|
+
# Then use directly
|
|
20
|
+
task-shepherd-agent init
|
|
21
|
+
task-shepherd-agent start
|
|
9
22
|
```
|
|
10
23
|
|
|
24
|
+
**Note:** `npx` is recommended as it ensures you're always using the latest version without managing global installations.
|
|
25
|
+
|
|
11
26
|
## Quick Start
|
|
12
27
|
|
|
13
28
|
### 1. Initialize Agent
|
|
@@ -176,6 +191,8 @@ task-shepherd-agent workspace list
|
|
|
176
191
|
|
|
177
192
|
## CLI Commands
|
|
178
193
|
|
|
194
|
+
**Note:** Replace `task-shepherd-agent` with `npx @task-shepherd/agent` if using npx.
|
|
195
|
+
|
|
179
196
|
### Agent Management
|
|
180
197
|
```bash
|
|
181
198
|
task-shepherd-agent init # Initialize agent
|