@utopia-ai/cli 0.1.0 → 0.1.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/.claude/settings.local.json +2 -1
- package/package.json +11 -3
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@utopia-ai/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Production-aware probes that give AI coding agents real-time context about how code runs in production",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"utopia": "
|
|
7
|
+
"utopia": "bin/utopia.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
10
|
"build": "tsc",
|
|
@@ -12,7 +12,15 @@
|
|
|
12
12
|
"start:server": "tsx src/server/index.ts",
|
|
13
13
|
"start:mcp": "tsx src/mcp/index.ts"
|
|
14
14
|
},
|
|
15
|
-
"keywords": [
|
|
15
|
+
"keywords": [
|
|
16
|
+
"cli",
|
|
17
|
+
"probes",
|
|
18
|
+
"observability",
|
|
19
|
+
"ai",
|
|
20
|
+
"claude",
|
|
21
|
+
"codex",
|
|
22
|
+
"production-context"
|
|
23
|
+
],
|
|
16
24
|
"license": "MIT",
|
|
17
25
|
"dependencies": {
|
|
18
26
|
"@anthropic-ai/sdk": "^0.39.0",
|