@odla-ai/cli 0.23.0 → 0.25.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 +8 -0
- package/dist/bin.cjs +582 -185
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +1 -1
- package/dist/{chunk-RZDRUVBT.js → chunk-HG63GLGU.js} +583 -186
- package/dist/chunk-HG63GLGU.js.map +1 -0
- package/dist/index.cjs +582 -185
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -3
- package/dist/index.d.ts +4 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-RZDRUVBT.js.map +0 -1
package/README.md
CHANGED
|
@@ -43,12 +43,20 @@ app is registered, start each session by reading its doing tasks, open bugs and
|
|
|
43
43
|
goals, and recent decisions:
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
+
npx odla-ai pm handoff --app <appId>
|
|
46
47
|
npx odla-ai pm task list --app <appId> --column doing
|
|
47
48
|
npx odla-ai pm bug list --app <appId> --status open
|
|
48
49
|
npx odla-ai pm goal list --app <appId> --status open
|
|
49
50
|
npx odla-ai pm decision list --app <appId> --limit 20
|
|
50
51
|
```
|
|
51
52
|
|
|
53
|
+
`pm handoff` is the authoritative unresolved-state view: unmet goals, every
|
|
54
|
+
non-done task, and every open or triaged bug. File bugs with actionable context
|
|
55
|
+
(`pm bug add ... --description "reproduction/evidence"`); a title-only bug is
|
|
56
|
+
rejected. When an accepted decision resolves or explicitly retains a bug, link
|
|
57
|
+
it with `pm bug done <id> --decision <decision-id>` or
|
|
58
|
+
`pm bug set <id> --status triaged --decision <decision-id>`.
|
|
59
|
+
|
|
52
60
|
Read the active task, linked goal, and comments before changing code. Without
|
|
53
61
|
`--app`, list commands span every project the account co-owns, which is the
|
|
54
62
|
right first view when coordinating several efforts; scope every write to the
|