@introspection-ai/cli 0.8.0 → 0.10.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 +9 -9
- package/package.json +10 -10
package/README.md
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
# @introspection-ai/cli
|
|
2
2
|
|
|
3
|
-
The [Introspection](https://introspection.dev) command-line interface
|
|
4
|
-
|
|
5
|
-
streams your local working-tree content into a running task's sandbox,
|
|
6
|
-
re-shipping on every change.
|
|
3
|
+
The [Introspection](https://introspection.dev) command-line interface for
|
|
4
|
+
operating agents across local development and the Introspection platform.
|
|
7
5
|
|
|
8
6
|
```bash
|
|
9
7
|
npm install -g @introspection-ai/cli
|
|
10
8
|
|
|
11
|
-
#
|
|
12
|
-
introspection
|
|
9
|
+
# authenticate and inspect the available commands
|
|
10
|
+
introspection login
|
|
11
|
+
introspection --help
|
|
13
12
|
```
|
|
14
13
|
|
|
15
14
|
Or run without installing:
|
|
16
15
|
|
|
17
16
|
```bash
|
|
18
|
-
npx @introspection-ai/cli
|
|
17
|
+
npx @introspection-ai/cli --help
|
|
19
18
|
```
|
|
20
19
|
|
|
21
|
-
The platform-specific
|
|
22
|
-
(`@introspection-ai/cli-<os>-<cpu>`) selected automatically
|
|
20
|
+
The platform-specific CLI and its Rust judge engine are delivered via an
|
|
21
|
+
optional dependency (`@introspection-ai/cli-<os>-<cpu>`) selected automatically
|
|
22
|
+
by npm.
|
|
23
23
|
|
|
24
24
|
Full documentation: https://github.com/introspection-org/introspection-cli
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@introspection-ai/cli",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.10.0",
|
|
4
|
+
"description": "CLI for operating agents on the Introspection platform",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"introspection",
|
|
7
7
|
"cli",
|
|
8
|
-
"
|
|
9
|
-
"
|
|
10
|
-
"
|
|
8
|
+
"agents",
|
|
9
|
+
"evaluation",
|
|
10
|
+
"observability"
|
|
11
11
|
],
|
|
12
12
|
"homepage": "https://github.com/introspection-org/introspection-cli#readme",
|
|
13
13
|
"repository": {
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"node": ">=18"
|
|
27
27
|
},
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@introspection-ai/cli-darwin-arm64": "0.
|
|
30
|
-
"@introspection-ai/cli-darwin-x64": "0.
|
|
31
|
-
"@introspection-ai/cli-linux-x64": "0.
|
|
32
|
-
"@introspection-ai/cli-linux-arm64": "0.
|
|
33
|
-
"@introspection-ai/cli-win32-x64": "0.
|
|
29
|
+
"@introspection-ai/cli-darwin-arm64": "0.10.0",
|
|
30
|
+
"@introspection-ai/cli-darwin-x64": "0.10.0",
|
|
31
|
+
"@introspection-ai/cli-linux-x64": "0.10.0",
|
|
32
|
+
"@introspection-ai/cli-linux-arm64": "0.10.0",
|
|
33
|
+
"@introspection-ai/cli-win32-x64": "0.10.0"
|
|
34
34
|
}
|
|
35
35
|
}
|