@metis_agent/metis-tui 1.0.0-rc.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/bin/metis +56 -0
- package/dist/LICENSE +21 -0
- package/dist/cli/cli/cmd/tui/photon_rs_bg-bq08arze.wasm +0 -0
- package/dist/cli/cli/cmd/tui/worker.js +3731 -0
- package/dist/cli/highlights-eq9cgrbb.scm +604 -0
- package/dist/cli/highlights-ghv9g403.scm +205 -0
- package/dist/cli/highlights-hk7bwhj4.scm +284 -0
- package/dist/cli/highlights-r812a2qc.scm +150 -0
- package/dist/cli/highlights-x6tmsnaa.scm +115 -0
- package/dist/cli/index.js +4464 -0
- package/dist/cli/injections-73j83es3.scm +27 -0
- package/dist/cli/parser.worker.js +1025 -0
- package/dist/cli/photon_rs_bg-bq08arze.wasm +0 -0
- package/dist/cli/tree-sitter-javascript-nd0q4pe9.wasm +0 -0
- package/dist/cli/tree-sitter-markdown-411r6y9b.wasm +0 -0
- package/dist/cli/tree-sitter-markdown_inline-j5349f42.wasm +0 -0
- package/dist/cli/tree-sitter-typescript-zxjzwt75.wasm +0 -0
- package/dist/cli/tree-sitter-zig-e78zbjpm.wasm +0 -0
- package/migration/20260127222353_familiar_lady_ursula/migration.sql +90 -0
- package/migration/20260127222353_familiar_lady_ursula/snapshot.json +796 -0
- package/migration/20260211171708_add_project_commands/migration.sql +1 -0
- package/migration/20260211171708_add_project_commands/snapshot.json +806 -0
- package/migration/20260213144116_wakeful_the_professor/migration.sql +11 -0
- package/migration/20260213144116_wakeful_the_professor/snapshot.json +897 -0
- package/migration/20260225215848_workspace/migration.sql +7 -0
- package/migration/20260225215848_workspace/snapshot.json +959 -0
- package/migration/20260227213759_add_session_workspace_id/migration.sql +2 -0
- package/migration/20260227213759_add_session_workspace_id/snapshot.json +983 -0
- package/migration/20260228203230_blue_harpoon/migration.sql +17 -0
- package/migration/20260228203230_blue_harpoon/snapshot.json +1102 -0
- package/migration/20260303231226_add_workspace_fields/migration.sql +5 -0
- package/migration/20260303231226_add_workspace_fields/snapshot.json +1013 -0
- package/migration/20260309230000_move_org_to_state/migration.sql +3 -0
- package/migration/20260309230000_move_org_to_state/snapshot.json +1156 -0
- package/migration/20260312043431_session_message_cursor/migration.sql +4 -0
- package/migration/20260312043431_session_message_cursor/snapshot.json +1168 -0
- package/migration/20260323234822_events/migration.sql +13 -0
- package/migration/20260323234822_events/snapshot.json +1271 -0
- package/migration/20260410174513_workspace-name/migration.sql +16 -0
- package/migration/20260410174513_workspace-name/snapshot.json +1271 -0
- package/migration/20260413175956_chief_energizer/migration.sql +13 -0
- package/migration/20260413175956_chief_energizer/snapshot.json +1399 -0
- package/migration/20260423070820_add_icon_url_override/migration.sql +2 -0
- package/migration/20260423070820_add_icon_url_override/snapshot.json +1409 -0
- package/migration/20260427172553_slow_nightmare/migration.sql +17 -0
- package/migration/20260427172553_slow_nightmare/snapshot.json +1409 -0
- package/migration/20260428004200_add_session_path/migration.sql +1 -0
- package/migration/20260428004200_add_session_path/snapshot.json +1419 -0
- package/migration/20260501142318_next_venus/migration.sql +2 -0
- package/migration/20260501142318_next_venus/snapshot.json +1439 -0
- package/migration/20260504145000_add_sync_owner/migration.sql +1 -0
- package/migration/20260504145000_add_sync_owner/snapshot.json +1449 -0
- package/migration/20260507164347_add_workspace_time/migration.sql +1 -0
- package/migration/20260507164347_add_workspace_time/snapshot.json +1459 -0
- package/migration/20260511000411_data_migration_state/migration.sql +4 -0
- package/migration/20260511000411_data_migration_state/snapshot.json +1490 -0
- package/package.json +168 -0
package/package.json
ADDED
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://json.schemastore.org/package.json",
|
|
3
|
+
"name": "@metis_agent/metis-tui",
|
|
4
|
+
"version": "1.0.0-rc.1",
|
|
5
|
+
"description": "Enterprise-grade AI coding assistant CLI",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "bun run script/build.ts",
|
|
8
|
+
"build:metis-tui": "bun run script/build-metis-tui.ts",
|
|
9
|
+
"dev:metis-tui-preview": "bun run --conditions=browser src/index.ts metis-tui-preview",
|
|
10
|
+
"fix-node-pty": "bun run script/fix-node-pty.ts",
|
|
11
|
+
"typecheck": "tsgo --noEmit"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"ai",
|
|
15
|
+
"cli",
|
|
16
|
+
"coding-assistant",
|
|
17
|
+
"agent",
|
|
18
|
+
"developer-tools"
|
|
19
|
+
],
|
|
20
|
+
"repository": {
|
|
21
|
+
"type": "git",
|
|
22
|
+
"url": "git+https://github.com/anomalyco/metis.git"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"type": "commonjs",
|
|
26
|
+
"private": false,
|
|
27
|
+
"imports": {
|
|
28
|
+
"#db": {
|
|
29
|
+
"bun": "./src/storage/db.bun.ts",
|
|
30
|
+
"node": "./src/storage/db.node.ts",
|
|
31
|
+
"default": "./src/storage/db.bun.ts"
|
|
32
|
+
},
|
|
33
|
+
"#pty": {
|
|
34
|
+
"bun": "./src/pty/pty.bun.ts",
|
|
35
|
+
"node": "./src/pty/pty.node.ts",
|
|
36
|
+
"default": "./src/pty/pty.bun.ts"
|
|
37
|
+
},
|
|
38
|
+
"#httpapi-server": {
|
|
39
|
+
"bun": "./src/server/httpapi-server.node.ts",
|
|
40
|
+
"node": "./src/server/httpapi-server.node.ts",
|
|
41
|
+
"default": "./src/server/httpapi-server.node.ts"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"bin": {
|
|
45
|
+
"Metis": "./bin/metis",
|
|
46
|
+
"metis": "./bin/metis"
|
|
47
|
+
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/cross-spawn": "catalog:",
|
|
50
|
+
"@types/npm-package-arg": "6.1.4",
|
|
51
|
+
"@types/react": "19.2.17",
|
|
52
|
+
"@types/semver": "7.7.1",
|
|
53
|
+
"@types/turndown": "5.0.6",
|
|
54
|
+
"@types/which": "3.0.4",
|
|
55
|
+
"@octokit/webhooks-types": "7.6.1",
|
|
56
|
+
"@types/yargs": "17.0.35",
|
|
57
|
+
"vitest": "4.1.4"
|
|
58
|
+
},
|
|
59
|
+
"dependencies": {
|
|
60
|
+
"@actions/core": "1.11.1",
|
|
61
|
+
"@actions/github": "6.0.1",
|
|
62
|
+
"@agentclientprotocol/sdk": "^0.22.1",
|
|
63
|
+
"@ai-sdk/alibaba": "1.0.25",
|
|
64
|
+
"@ai-sdk/amazon-bedrock": "4.0.108",
|
|
65
|
+
"@ai-sdk/anthropic": "^3.0.79",
|
|
66
|
+
"@ai-sdk/azure": "3.0.66",
|
|
67
|
+
"@ai-sdk/cerebras": "2.0.54",
|
|
68
|
+
"@ai-sdk/cohere": "3.0.36",
|
|
69
|
+
"@ai-sdk/deepinfra": "2.0.52",
|
|
70
|
+
"@ai-sdk/gateway": "3.0.120",
|
|
71
|
+
"@ai-sdk/google": "^3.0.79",
|
|
72
|
+
"@ai-sdk/google-vertex": "4.0.137",
|
|
73
|
+
"@ai-sdk/groq": "3.0.39",
|
|
74
|
+
"@ai-sdk/mistral": "3.0.37",
|
|
75
|
+
"@ai-sdk/openai": "^3.0.65",
|
|
76
|
+
"@ai-sdk/openai-compatible": "^2.0.48",
|
|
77
|
+
"@ai-sdk/perplexity": "3.0.33",
|
|
78
|
+
"@ai-sdk/provider": "3.0.10",
|
|
79
|
+
"@ai-sdk/provider-utils": "4.0.27",
|
|
80
|
+
"@ai-sdk/togetherai": "2.0.53",
|
|
81
|
+
"@ai-sdk/vercel": "2.0.50",
|
|
82
|
+
"@ai-sdk/xai": "3.0.92",
|
|
83
|
+
"@aws-sdk/credential-providers": "3.1053.0",
|
|
84
|
+
"@clack/prompts": "1.0.0-alpha.1",
|
|
85
|
+
"@metis-ai/core": "file:../core",
|
|
86
|
+
"@effect/cluster": "^0.58.2",
|
|
87
|
+
"@effect/opentelemetry": "^4.0.0-beta.57",
|
|
88
|
+
"@effect/platform-node": "^4.0.0-beta.57",
|
|
89
|
+
"@effect/rpc": "^0.75.1",
|
|
90
|
+
"@hono/zod-validator": "^0.8.0",
|
|
91
|
+
"@kobalte/core": "^0.13.11",
|
|
92
|
+
"@lydell/node-pty": "^1.2.0-beta.12",
|
|
93
|
+
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
94
|
+
"@npmcli/arborist": "^9.6.0",
|
|
95
|
+
"@octokit/rest": "^22.0.1",
|
|
96
|
+
"@openauthjs/openauth": "^0.4.3",
|
|
97
|
+
"@openrouter/ai-sdk-provider": "2.9.0",
|
|
98
|
+
"@opentelemetry/api": "^1.9.1",
|
|
99
|
+
"@opentelemetry/resources": "^2.7.1",
|
|
100
|
+
"@opentelemetry/sdk-node": "^0.218.0",
|
|
101
|
+
"@opentelemetry/semantic-conventions": "^1.41.1",
|
|
102
|
+
"@opentui/core": "0.2.15",
|
|
103
|
+
"@opentui/core-darwin-arm64": "0.2.15",
|
|
104
|
+
"@opentui/keymap": "0.2.15",
|
|
105
|
+
"@opentui/react": "0.2.15",
|
|
106
|
+
"@opentui/solid": "0.2.15",
|
|
107
|
+
"@parcel/watcher": "^2.5.6",
|
|
108
|
+
"@pierre/diffs": "^1.2.2",
|
|
109
|
+
"@silvia-odwyer/photon-node": "0.3.4",
|
|
110
|
+
"@solid-primitives/event-bus": "^1.1.2",
|
|
111
|
+
"@solid-primitives/scheduled": "^1.5.3",
|
|
112
|
+
"@solid-primitives/storage": "^4.3.4",
|
|
113
|
+
"ai": "^6.0.191",
|
|
114
|
+
"ai-gateway-provider": "3.1.3",
|
|
115
|
+
"bonjour-service": "^1.4.0",
|
|
116
|
+
"bun-pty": "0.4.9",
|
|
117
|
+
"cli-sound": "^1.1.3",
|
|
118
|
+
"clipboardy": "5.3.1",
|
|
119
|
+
"cross-spawn": "^7.0.6",
|
|
120
|
+
"decimal.js": "^10.6.0",
|
|
121
|
+
"diff": "^9.0.0",
|
|
122
|
+
"dompurify": "^3.4.5",
|
|
123
|
+
"drizzle-kit": "^1.0.0-beta.19-d95b7a4",
|
|
124
|
+
"drizzle-orm": "^1.0.0-beta.19-d95b7a4",
|
|
125
|
+
"effect": "^4.0.0-beta.59",
|
|
126
|
+
"fuzzysort": "^3.1.0",
|
|
127
|
+
"gitlab-ai-provider": "^6.7.0",
|
|
128
|
+
"google-auth-library": "10.6.2",
|
|
129
|
+
"gray-matter": "^4.0.3",
|
|
130
|
+
"hnsw": "^1.1.1",
|
|
131
|
+
"hono": "^4.12.22",
|
|
132
|
+
"hono-openapi": "^1.3.0",
|
|
133
|
+
"ignore": "^7.0.5",
|
|
134
|
+
"immer": "^11.1.8",
|
|
135
|
+
"ioredis": "^5.10.1",
|
|
136
|
+
"jsonc-parser": "^3.3.1",
|
|
137
|
+
"luxon": "^3.7.2",
|
|
138
|
+
"marked": "^18.0.4",
|
|
139
|
+
"marked-shiki": "^1.2.1",
|
|
140
|
+
"mime-types": "3.0.2",
|
|
141
|
+
"open": "^11.0.0",
|
|
142
|
+
"opentui-spinner": "^0.0.6",
|
|
143
|
+
"react": "19.2.7",
|
|
144
|
+
"remeda": "^2.34.1",
|
|
145
|
+
"remend": "^1.3.0",
|
|
146
|
+
"semver": "^7.8.1",
|
|
147
|
+
"shiki": "^4.1.0",
|
|
148
|
+
"solid-js": "^1.9.10",
|
|
149
|
+
"solid-list": "^0.3.0",
|
|
150
|
+
"tree-sitter": "^0.25.0",
|
|
151
|
+
"tree-sitter-bash": "^0.25.1",
|
|
152
|
+
"tree-sitter-powershell": "^0.26.4",
|
|
153
|
+
"turndown": "^7.2.4",
|
|
154
|
+
"typescript": "^6.0.3",
|
|
155
|
+
"ulid": "^3.0.2",
|
|
156
|
+
"venice-ai-sdk-provider": "1.1.19",
|
|
157
|
+
"vscode-jsonrpc": "^8.2.1",
|
|
158
|
+
"vscode-languageserver-types": "3.17.5",
|
|
159
|
+
"web-tree-sitter": "^0.26.9",
|
|
160
|
+
"zod": "^4.4.3"
|
|
161
|
+
},
|
|
162
|
+
"files": [
|
|
163
|
+
"bin/metis",
|
|
164
|
+
"dist/cli/",
|
|
165
|
+
"dist/LICENSE",
|
|
166
|
+
"migration/"
|
|
167
|
+
]
|
|
168
|
+
}
|