@autonome-research/thread-phase-cli 3.0.0 → 3.0.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 +8 -2
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
# @autonome-research/thread-phase-cli
|
|
2
2
|
|
|
3
|
-
The CLI and auto-loader for [thread-phase](https://github.com/
|
|
3
|
+
The CLI and auto-loader for [thread-phase](https://github.com/autonome-research/thread-phase). Discovers extensions under `./.thread-phase/{triggers,adapters,pipelines}/` and runs registered pipelines.
|
|
4
4
|
|
|
5
5
|
```sh
|
|
6
|
-
|
|
6
|
+
# One install gets the full runtime — core + adapter protocol + bin.
|
|
7
|
+
npm install -g @autonome-research/thread-phase-cli
|
|
8
|
+
|
|
9
|
+
# …plus the agent SDKs your adapters actually use (optional, only when needed):
|
|
10
|
+
npm install -g @anthropic-ai/sdk # anthropicAgent
|
|
11
|
+
npm install -g openai # codexAgent (Responses API)
|
|
12
|
+
npm install -g @mariozechner/pi-coding-agent # piAgent
|
|
7
13
|
```
|
|
8
14
|
|
|
9
15
|
## Commands
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autonome-research/thread-phase-cli",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "CLI and auto-loader for thread-phase — discovers extensions under .thread-phase/ and runs registered pipelines. Installing this gets the full runtime (core + adapters).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"typecheck": "tsc --noEmit"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@autonome-research/thread-phase": "^3.0.
|
|
28
|
-
"@autonome-research/thread-phase-agents": "^3.0.
|
|
27
|
+
"@autonome-research/thread-phase": "^3.0.1",
|
|
28
|
+
"@autonome-research/thread-phase-agents": "^3.0.1",
|
|
29
29
|
"tsx": "^4.19.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
},
|
|
41
41
|
"repository": {
|
|
42
42
|
"type": "git",
|
|
43
|
-
"url": "git+https://github.com/
|
|
43
|
+
"url": "git+https://github.com/autonome-research/thread-phase.git",
|
|
44
44
|
"directory": "packages/thread-phase-cli"
|
|
45
45
|
}
|
|
46
46
|
}
|