@saga-ai/cli 0.1.4 → 0.2.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 +21 -0
- package/dist/cli.cjs +1597 -50
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -13,6 +13,7 @@ Run commands using npx (no global installation required):
|
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
npx @saga-ai/cli init
|
|
16
|
+
npx @saga-ai/cli find <query>
|
|
16
17
|
npx @saga-ai/cli implement <story-slug>
|
|
17
18
|
npx @saga-ai/cli dashboard
|
|
18
19
|
```
|
|
@@ -35,6 +36,26 @@ Creates the `.saga/` directory structure:
|
|
|
35
36
|
|
|
36
37
|
Also updates `.gitignore` to ignore worktrees.
|
|
37
38
|
|
|
39
|
+
### `saga find <query>`
|
|
40
|
+
|
|
41
|
+
Find an epic or story by slug or title using fuzzy search.
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
saga find my-story
|
|
45
|
+
saga find "login feature"
|
|
46
|
+
saga find auth --type epic
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Options:
|
|
50
|
+
- `--type <type>` - Type to search for: `epic` or `story` (default: story)
|
|
51
|
+
|
|
52
|
+
Returns JSON with:
|
|
53
|
+
- `found: true` + `data` - Single match found
|
|
54
|
+
- `found: false` + `matches` - Multiple matches for disambiguation
|
|
55
|
+
- `found: false` + `error` - No matches found
|
|
56
|
+
|
|
57
|
+
Supports typo tolerance (e.g., "implment" matches "implement").
|
|
58
|
+
|
|
38
59
|
### `saga implement <story-slug>`
|
|
39
60
|
|
|
40
61
|
Run autonomous story implementation using Claude workers.
|