@inference/cli 0.0.4 → 0.0.6
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 +19 -0
- package/package.json +7 -5
package/README.md
CHANGED
|
@@ -45,6 +45,9 @@ inf project list
|
|
|
45
45
|
# Select a project
|
|
46
46
|
inf project switch <project-id>
|
|
47
47
|
|
|
48
|
+
# Instrument a codebase with observability (run from your project directory)
|
|
49
|
+
inf install
|
|
50
|
+
|
|
48
51
|
# View recent training runs
|
|
49
52
|
inf training list
|
|
50
53
|
|
|
@@ -71,6 +74,22 @@ inf project switch <id> # Set the active project
|
|
|
71
74
|
inf project current # Show the currently active project
|
|
72
75
|
```
|
|
73
76
|
|
|
77
|
+
### Install (Automated Observability Setup)
|
|
78
|
+
|
|
79
|
+
```bash
|
|
80
|
+
inf install # Instrument your codebase with Catalyst observability
|
|
81
|
+
inf install --dry-run # Preview changes without modifying files
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
Automatically instruments your codebase to route LLM API calls through the Inference.net observability proxy. The command:
|
|
85
|
+
|
|
86
|
+
1. Confirms your active project and API key
|
|
87
|
+
2. Detects available AI coding agents (Claude Code, OpenCode, or Codex)
|
|
88
|
+
3. Fetches the latest instrumentation skill from inference.net
|
|
89
|
+
4. Launches the selected agent to scan and modify your code
|
|
90
|
+
|
|
91
|
+
Run this from the root of the project you want to instrument.
|
|
92
|
+
|
|
74
93
|
### Training
|
|
75
94
|
|
|
76
95
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inference/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "Inference.net CLI - manage training runs, evals, datasets, and inferences from your terminal",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"ai"
|
|
27
27
|
],
|
|
28
28
|
"optionalDependencies": {
|
|
29
|
-
"@inference/cli-darwin-arm64": "0.0.
|
|
30
|
-
"@inference/cli-darwin-x64": "0.0.
|
|
31
|
-
"@inference/cli-linux-x64": "0.0.
|
|
32
|
-
"@inference/cli-linux-arm64": "0.0.
|
|
29
|
+
"@inference/cli-darwin-arm64": "0.0.6",
|
|
30
|
+
"@inference/cli-darwin-x64": "0.0.6",
|
|
31
|
+
"@inference/cli-linux-x64": "0.0.6",
|
|
32
|
+
"@inference/cli-linux-arm64": "0.0.6"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "bun run clean:bin && bun run build:cli",
|
|
@@ -56,6 +56,8 @@
|
|
|
56
56
|
"@opentui/react": "0.1.80",
|
|
57
57
|
"@trpc/client": "11.4.0",
|
|
58
58
|
"@trpc/server": "11.4.0",
|
|
59
|
+
"@inquirer/confirm": "5.1.21",
|
|
60
|
+
"@inquirer/select": "4.4.2",
|
|
59
61
|
"@types/bun": "1.3.6",
|
|
60
62
|
"chalk": "5.4.1",
|
|
61
63
|
"cli-table3": "0.6.5",
|