agent-trajectories 0.3.0 → 0.3.1
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 +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -80,9 +80,18 @@ Over time, trajectories become a searchable knowledge base:
|
|
|
80
80
|
|
|
81
81
|
## Quick Start
|
|
82
82
|
|
|
83
|
+
```bash
|
|
84
|
+
# Install globally (trail command available directly)
|
|
85
|
+
npm install -g agent-trajectories
|
|
86
|
+
|
|
87
|
+
# Or install locally (requires npx prefix)
|
|
88
|
+
npm install agent-trajectories
|
|
89
|
+
```
|
|
90
|
+
|
|
83
91
|
```bash
|
|
84
92
|
# Start tracking a task
|
|
85
93
|
trail start "Implement auth module"
|
|
94
|
+
# (use `npx trail start ...` if installed locally)
|
|
86
95
|
|
|
87
96
|
# View current status
|
|
88
97
|
trail status
|