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.
Files changed (2) hide show
  1. package/README.md +9 -0
  2. 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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-trajectories",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Capture the complete train of thought of agent work as first-class artifacts",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",