@introspection-ai/cli 0.27.1 → 0.28.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 +10 -2
- package/package.json +6 -6
- package/scripts/postinstall.js +4 -2
package/README.md
CHANGED
|
@@ -6,12 +6,20 @@ operating agents across local development and the Introspection platform.
|
|
|
6
6
|
```bash
|
|
7
7
|
npm install -g @introspection-ai/cli
|
|
8
8
|
|
|
9
|
-
# install Pi when missing, then align Recipes and coding-agent plugins
|
|
10
|
-
introspection setup
|
|
11
9
|
introspection login
|
|
12
10
|
introspection --help
|
|
13
11
|
```
|
|
14
12
|
|
|
13
|
+
Give the coding agent the complete machine onboarding entrypoint:
|
|
14
|
+
|
|
15
|
+
```text
|
|
16
|
+
First read https://docs.introspection.dev/agents.md and follow it.
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
The agent prepares the CLI, reads the current docs-owned workflow through
|
|
20
|
+
`introspection skills`, and runs setup for Pi and Recipes when the workflow
|
|
21
|
+
needs them. The user does not run setup manually.
|
|
22
|
+
|
|
15
23
|
Or run without installing:
|
|
16
24
|
|
|
17
25
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@introspection-ai/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "CLI for operating agents on the Introspection platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"introspection",
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
33
|
"optionalDependencies": {
|
|
34
|
-
"@introspection-ai/cli-darwin-arm64": "0.
|
|
35
|
-
"@introspection-ai/cli-darwin-x64": "0.
|
|
36
|
-
"@introspection-ai/cli-linux-x64": "0.
|
|
37
|
-
"@introspection-ai/cli-linux-arm64": "0.
|
|
38
|
-
"@introspection-ai/cli-win32-x64": "0.
|
|
34
|
+
"@introspection-ai/cli-darwin-arm64": "0.28.0",
|
|
35
|
+
"@introspection-ai/cli-darwin-x64": "0.28.0",
|
|
36
|
+
"@introspection-ai/cli-linux-x64": "0.28.0",
|
|
37
|
+
"@introspection-ai/cli-linux-arm64": "0.28.0",
|
|
38
|
+
"@introspection-ai/cli-win32-x64": "0.28.0"
|
|
39
39
|
}
|
|
40
40
|
}
|
package/scripts/postinstall.js
CHANGED
|
@@ -7,8 +7,10 @@
|
|
|
7
7
|
// Human-only output follows the CLI's stderr + TTY contract.
|
|
8
8
|
if (process.stderr.isTTY) {
|
|
9
9
|
process.stderr.write(`
|
|
10
|
-
Introspection CLI installed.
|
|
10
|
+
Introspection CLI installed.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
Give your coding agent this complete machine onboarding entrypoint:
|
|
13
|
+
|
|
14
|
+
https://docs.introspection.dev/agents.md
|
|
13
15
|
`);
|
|
14
16
|
}
|