orbit-code-ai 0.1.31 → 0.1.32
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/dist/cli.mjs +35855 -1011
- package/package.json +150 -149
package/package.json
CHANGED
|
@@ -1,149 +1,150 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "orbit-code-ai",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Orbit AI – Your AI-powered IBM ACE coding companion",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"author": "moenawaf",
|
|
7
|
-
"bin": {
|
|
8
|
-
"orbit": "bin/orbit"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"bin/",
|
|
12
|
-
"dist/cli.mjs",
|
|
13
|
-
"skills/",
|
|
14
|
-
"_agent_reference/",
|
|
15
|
-
"README.md"
|
|
16
|
-
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "bun run scripts/build.ts",
|
|
19
|
-
"build:exe": "bun run build && bun build dist/cli.mjs --compile --minify --outfile dist/orbit",
|
|
20
|
-
"build:dist": "bun run build:exe && bun run scripts/package-dist.ts",
|
|
21
|
-
"dev": "bun run build && node dist/cli.mjs",
|
|
22
|
-
"dev:grpc": "bun run scripts/start-grpc.ts",
|
|
23
|
-
"dev:grpc:cli": "bun run scripts/grpc-cli.ts",
|
|
24
|
-
"start": "node dist/cli.mjs",
|
|
25
|
-
"test": "bun test",
|
|
26
|
-
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
27
|
-
"test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
|
|
28
|
-
"security:pr-scan": "bun run scripts/pr-intent-scan.ts",
|
|
29
|
-
"typecheck": "tsc --noEmit",
|
|
30
|
-
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
31
|
-
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
32
|
-
"build:verified": "bun run build && bun run verify:privacy",
|
|
33
|
-
"test:provider": "bun test src/services/api/*.test.ts src/utils/context.test.ts",
|
|
34
|
-
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
35
|
-
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
36
|
-
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
|
|
37
|
-
"hardening:check": "bun run smoke && bun run doctor:runtime",
|
|
38
|
-
"hardening:strict": "bun run typecheck && bun run hardening:check",
|
|
39
|
-
"prepack": "npm run build"
|
|
40
|
-
},
|
|
41
|
-
"dependencies": {
|
|
42
|
-
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
43
|
-
"@anthropic-ai/sandbox-runtime": "0.0.46",
|
|
44
|
-
"@anthropic-ai/sdk": "0.81.0",
|
|
45
|
-
"@commander-js/extra-typings": "12.1.0",
|
|
46
|
-
"@growthbook/growthbook": "1.6.5",
|
|
47
|
-
"@grpc/grpc-js": "^1.14.3",
|
|
48
|
-
"@grpc/proto-loader": "^0.8.0",
|
|
49
|
-
"@mendable/firecrawl-js": "4.18.1",
|
|
50
|
-
"@modelcontextprotocol/sdk": "1.29.0",
|
|
51
|
-
"@opentelemetry/api": "1.9.1",
|
|
52
|
-
"@opentelemetry/api-logs": "0.214.0",
|
|
53
|
-
"@opentelemetry/core": "2.6.1",
|
|
54
|
-
"@opentelemetry/exporter-logs-otlp-http": "0.214.0",
|
|
55
|
-
"@opentelemetry/exporter-trace-otlp-grpc": "0.57.2",
|
|
56
|
-
"@opentelemetry/resources": "2.6.1",
|
|
57
|
-
"@opentelemetry/sdk-logs": "0.214.0",
|
|
58
|
-
"@opentelemetry/sdk-metrics": "2.6.1",
|
|
59
|
-
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
60
|
-
"@opentelemetry/sdk-trace-node": "2.6.1",
|
|
61
|
-
"@opentelemetry/semantic-conventions": "1.40.0",
|
|
62
|
-
"ajv": "8.18.0",
|
|
63
|
-
"auto-bind": "5.0.1",
|
|
64
|
-
"axios": "1.14.0",
|
|
65
|
-
"bidi-js": "1.0.3",
|
|
66
|
-
"chalk": "5.6.2",
|
|
67
|
-
"chokidar": "4.0.3",
|
|
68
|
-
"cli-boxes": "3.0.0",
|
|
69
|
-
"cli-highlight": "2.1.11",
|
|
70
|
-
"code-excerpt": "4.0.0",
|
|
71
|
-
"commander": "12.1.0",
|
|
72
|
-
"cross-spawn": "7.0.6",
|
|
73
|
-
"diff": "8.0.3",
|
|
74
|
-
"duck-duck-scrape": "^2.2.7",
|
|
75
|
-
"emoji-regex": "10.6.0",
|
|
76
|
-
"env-paths": "3.0.0",
|
|
77
|
-
"execa": "9.6.1",
|
|
78
|
-
"fflate": "0.8.2",
|
|
79
|
-
"figures": "6.1.0",
|
|
80
|
-
"fuse.js": "7.1.0",
|
|
81
|
-
"get-east-asian-width": "1.5.0",
|
|
82
|
-
"google-auth-library": "9.15.1",
|
|
83
|
-
"https-proxy-agent": "7.0.6",
|
|
84
|
-
"ignore": "7.0.5",
|
|
85
|
-
"indent-string": "5.0.0",
|
|
86
|
-
"jsonc-parser": "3.3.1",
|
|
87
|
-
"lodash-es": "4.18.1",
|
|
88
|
-
"lru-cache": "11.2.7",
|
|
89
|
-
"marked": "15.0.12",
|
|
90
|
-
"p-map": "7.0.4",
|
|
91
|
-
"picomatch": "4.0.4",
|
|
92
|
-
"proper-lockfile": "4.1.2",
|
|
93
|
-
"qrcode": "1.5.4",
|
|
94
|
-
"react": "19.2.4",
|
|
95
|
-
"react-compiler-runtime": "1.0.0",
|
|
96
|
-
"react-reconciler": "0.33.0",
|
|
97
|
-
"semver": "7.7.4",
|
|
98
|
-
"sharp": "^0.34.5",
|
|
99
|
-
"shell-quote": "1.8.3",
|
|
100
|
-
"signal-exit": "4.1.0",
|
|
101
|
-
"stack-utils": "2.0.6",
|
|
102
|
-
"strip-ansi": "7.2.0",
|
|
103
|
-
"supports-hyperlinks": "3.2.0",
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
"
|
|
111
|
-
"
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
"
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
"@types/
|
|
119
|
-
"@types/
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
"
|
|
129
|
-
"ibm-
|
|
130
|
-
"
|
|
131
|
-
"
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
"
|
|
137
|
-
"
|
|
138
|
-
"
|
|
139
|
-
"
|
|
140
|
-
"
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
"
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "orbit-code-ai",
|
|
3
|
+
"version": "0.1.32",
|
|
4
|
+
"description": "Orbit AI – Your AI-powered IBM ACE coding companion",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"author": "moenawaf",
|
|
7
|
+
"bin": {
|
|
8
|
+
"orbit": "bin/orbit"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"bin/",
|
|
12
|
+
"dist/cli.mjs",
|
|
13
|
+
"skills/",
|
|
14
|
+
"_agent_reference/",
|
|
15
|
+
"README.md"
|
|
16
|
+
],
|
|
17
|
+
"scripts": {
|
|
18
|
+
"build": "bun run scripts/build.ts",
|
|
19
|
+
"build:exe": "bun run build && bun build dist/cli.mjs --compile --minify --outfile dist/orbit",
|
|
20
|
+
"build:dist": "bun run build:exe && bun run scripts/package-dist.ts",
|
|
21
|
+
"dev": "bun run build && node dist/cli.mjs",
|
|
22
|
+
"dev:grpc": "bun run scripts/start-grpc.ts",
|
|
23
|
+
"dev:grpc:cli": "bun run scripts/grpc-cli.ts",
|
|
24
|
+
"start": "node dist/cli.mjs",
|
|
25
|
+
"test": "bun test",
|
|
26
|
+
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-dir=coverage --max-concurrency=1 && bun run scripts/render-coverage-heatmap.ts",
|
|
27
|
+
"test:coverage:ui": "bun run scripts/render-coverage-heatmap.ts",
|
|
28
|
+
"security:pr-scan": "bun run scripts/pr-intent-scan.ts",
|
|
29
|
+
"typecheck": "tsc --noEmit",
|
|
30
|
+
"smoke": "bun run build && node dist/cli.mjs --version",
|
|
31
|
+
"verify:privacy": "bun run scripts/verify-no-phone-home.ts",
|
|
32
|
+
"build:verified": "bun run build && bun run verify:privacy",
|
|
33
|
+
"test:provider": "bun test src/services/api/*.test.ts src/utils/context.test.ts",
|
|
34
|
+
"doctor:runtime": "bun run scripts/system-check.ts",
|
|
35
|
+
"doctor:runtime:json": "bun run scripts/system-check.ts --json",
|
|
36
|
+
"doctor:report": "bun run scripts/system-check.ts --out reports/doctor-runtime.json",
|
|
37
|
+
"hardening:check": "bun run smoke && bun run doctor:runtime",
|
|
38
|
+
"hardening:strict": "bun run typecheck && bun run hardening:check",
|
|
39
|
+
"prepack": "npm run build"
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"@alcalzone/ansi-tokenize": "0.3.0",
|
|
43
|
+
"@anthropic-ai/sandbox-runtime": "0.0.46",
|
|
44
|
+
"@anthropic-ai/sdk": "0.81.0",
|
|
45
|
+
"@commander-js/extra-typings": "12.1.0",
|
|
46
|
+
"@growthbook/growthbook": "1.6.5",
|
|
47
|
+
"@grpc/grpc-js": "^1.14.3",
|
|
48
|
+
"@grpc/proto-loader": "^0.8.0",
|
|
49
|
+
"@mendable/firecrawl-js": "4.18.1",
|
|
50
|
+
"@modelcontextprotocol/sdk": "1.29.0",
|
|
51
|
+
"@opentelemetry/api": "1.9.1",
|
|
52
|
+
"@opentelemetry/api-logs": "0.214.0",
|
|
53
|
+
"@opentelemetry/core": "2.6.1",
|
|
54
|
+
"@opentelemetry/exporter-logs-otlp-http": "0.214.0",
|
|
55
|
+
"@opentelemetry/exporter-trace-otlp-grpc": "0.57.2",
|
|
56
|
+
"@opentelemetry/resources": "2.6.1",
|
|
57
|
+
"@opentelemetry/sdk-logs": "0.214.0",
|
|
58
|
+
"@opentelemetry/sdk-metrics": "2.6.1",
|
|
59
|
+
"@opentelemetry/sdk-trace-base": "2.6.1",
|
|
60
|
+
"@opentelemetry/sdk-trace-node": "2.6.1",
|
|
61
|
+
"@opentelemetry/semantic-conventions": "1.40.0",
|
|
62
|
+
"ajv": "8.18.0",
|
|
63
|
+
"auto-bind": "5.0.1",
|
|
64
|
+
"axios": "1.14.0",
|
|
65
|
+
"bidi-js": "1.0.3",
|
|
66
|
+
"chalk": "5.6.2",
|
|
67
|
+
"chokidar": "4.0.3",
|
|
68
|
+
"cli-boxes": "3.0.0",
|
|
69
|
+
"cli-highlight": "2.1.11",
|
|
70
|
+
"code-excerpt": "4.0.0",
|
|
71
|
+
"commander": "12.1.0",
|
|
72
|
+
"cross-spawn": "7.0.6",
|
|
73
|
+
"diff": "8.0.3",
|
|
74
|
+
"duck-duck-scrape": "^2.2.7",
|
|
75
|
+
"emoji-regex": "10.6.0",
|
|
76
|
+
"env-paths": "3.0.0",
|
|
77
|
+
"execa": "9.6.1",
|
|
78
|
+
"fflate": "0.8.2",
|
|
79
|
+
"figures": "6.1.0",
|
|
80
|
+
"fuse.js": "7.1.0",
|
|
81
|
+
"get-east-asian-width": "1.5.0",
|
|
82
|
+
"google-auth-library": "9.15.1",
|
|
83
|
+
"https-proxy-agent": "7.0.6",
|
|
84
|
+
"ignore": "7.0.5",
|
|
85
|
+
"indent-string": "5.0.0",
|
|
86
|
+
"jsonc-parser": "3.3.1",
|
|
87
|
+
"lodash-es": "4.18.1",
|
|
88
|
+
"lru-cache": "11.2.7",
|
|
89
|
+
"marked": "15.0.12",
|
|
90
|
+
"p-map": "7.0.4",
|
|
91
|
+
"picomatch": "4.0.4",
|
|
92
|
+
"proper-lockfile": "4.1.2",
|
|
93
|
+
"qrcode": "1.5.4",
|
|
94
|
+
"react": "19.2.4",
|
|
95
|
+
"react-compiler-runtime": "1.0.0",
|
|
96
|
+
"react-reconciler": "0.33.0",
|
|
97
|
+
"semver": "7.7.4",
|
|
98
|
+
"sharp": "^0.34.5",
|
|
99
|
+
"shell-quote": "1.8.3",
|
|
100
|
+
"signal-exit": "4.1.0",
|
|
101
|
+
"stack-utils": "2.0.6",
|
|
102
|
+
"strip-ansi": "7.2.0",
|
|
103
|
+
"supports-hyperlinks": "3.2.0",
|
|
104
|
+
"tedious": "^20.0.0",
|
|
105
|
+
"tree-kill": "1.2.2",
|
|
106
|
+
"turndown": "7.2.2",
|
|
107
|
+
"type-fest": "4.41.0",
|
|
108
|
+
"undici": "7.24.6",
|
|
109
|
+
"usehooks-ts": "3.1.1",
|
|
110
|
+
"vscode-languageserver-protocol": "3.17.5",
|
|
111
|
+
"wrap-ansi": "9.0.2",
|
|
112
|
+
"ws": "8.20.0",
|
|
113
|
+
"xss": "1.0.15",
|
|
114
|
+
"yaml": "2.8.3",
|
|
115
|
+
"zod": "3.25.76"
|
|
116
|
+
},
|
|
117
|
+
"devDependencies": {
|
|
118
|
+
"@types/bun": "1.3.11",
|
|
119
|
+
"@types/node": "25.5.0",
|
|
120
|
+
"@types/react": "19.2.14",
|
|
121
|
+
"tsx": "^4.21.0",
|
|
122
|
+
"typescript": "5.9.3"
|
|
123
|
+
},
|
|
124
|
+
"engines": {
|
|
125
|
+
"node": ">=20.0.0"
|
|
126
|
+
},
|
|
127
|
+
"keywords": [
|
|
128
|
+
"orbit",
|
|
129
|
+
"ibm-ace",
|
|
130
|
+
"ibm-mq",
|
|
131
|
+
"esql",
|
|
132
|
+
"integration",
|
|
133
|
+
"enterprise-integration",
|
|
134
|
+
"ai",
|
|
135
|
+
"llm",
|
|
136
|
+
"cli",
|
|
137
|
+
"agent",
|
|
138
|
+
"coding-assistant",
|
|
139
|
+
"gemini",
|
|
140
|
+
"openai",
|
|
141
|
+
"ollama"
|
|
142
|
+
],
|
|
143
|
+
"license": "SEE LICENSE FILE",
|
|
144
|
+
"publishConfig": {
|
|
145
|
+
"access": "public"
|
|
146
|
+
},
|
|
147
|
+
"overrides": {
|
|
148
|
+
"lodash-es": "4.18.1"
|
|
149
|
+
}
|
|
150
|
+
}
|