@vionwilliams/agent-os 1.0.0-alpha.12

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.
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="zh-CN">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <title>Agent-OS Panel Reset</title>
7
+ <script type="module" crossorigin src="/assets/index-aYo4LOni.js"></script>
8
+ <link rel="stylesheet" crossorigin href="/assets/index-BX-Unh58.css">
9
+ </head>
10
+ <body>
11
+ <div id="root"></div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,3 @@
1
+ This project is dual-licensed under the Unlicense and MIT licenses.
2
+
3
+ You may use this code under the terms of either license.
Binary file
package/package.json ADDED
@@ -0,0 +1,164 @@
1
+ {
2
+ "name": "@vionwilliams/agent-os",
3
+ "version": "1.0.0-alpha.12",
4
+ "description": "Agent-OS — 智能任务通用工作系统:多模型路由、意图编排、多智能体协调、DataHub 与可编程面板。",
5
+ "type": "module",
6
+ "private": false,
7
+ "publishConfig": {
8
+ "access": "public"
9
+ },
10
+ "license": "SEE LICENSE IN LICENSE",
11
+ "author": "VION WILLIAMS",
12
+ "homepage": "https://github.com/VIONWILLIAMS/agent-os#readme",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/VIONWILLIAMS/agent-os.git"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/VIONWILLIAMS/agent-os/issues"
19
+ },
20
+ "keywords": [
21
+ "agent",
22
+ "ai",
23
+ "cli",
24
+ "byok",
25
+ "agent-os",
26
+ "multi-agent",
27
+ "knowledge-forge",
28
+ "fca",
29
+ "multi-model-router",
30
+ "super-coordination"
31
+ ],
32
+ "bin": {
33
+ "agent-os": "dist/cli.js"
34
+ },
35
+ "files": [
36
+ "dist/cli.js",
37
+ "dist/vendor",
38
+ "dist/panel-ui",
39
+ "dist/bdi-ui",
40
+ "LICENSE",
41
+ "README.md"
42
+ ],
43
+ "engines": {
44
+ "bun": ">=1.3.0"
45
+ },
46
+ "scripts": {
47
+ "build": "bash scripts/build.sh",
48
+ "start": "bun dist/cli.js",
49
+ "dev": "bun run src/entrypoints/cli.tsx",
50
+ "typecheck": "tsc --noEmit",
51
+ "test": "bun test",
52
+ "test:panels": "bun test test/coordination/panels/",
53
+ "test:global": "bun run scripts/codex-test-global.ts",
54
+ "test:global:quick": "bun run scripts/codex-test-global.ts --quick",
55
+ "test:global:json": "bun run scripts/codex-test-global.ts --json",
56
+ "build:ui": "vite build",
57
+ "dev:ui": "vite dev",
58
+ "build:workshop-ui": "vite build --config vite.workshop.config.ts",
59
+ "dev:workshop-ui": "vite dev --config vite.workshop.config.ts",
60
+ "build:bdi-ui": "vite build --config vite.bdi.config.ts",
61
+ "dev:bdi-ui": "vite dev --config vite.bdi.config.ts",
62
+ "dev:bdi-console": "bash scripts/bdi-console-dev.sh",
63
+ "build:mobile-ui": "vite build --config vite.mobile.config.ts",
64
+ "dev:mobile-ui": "vite dev --config vite.mobile.config.ts",
65
+ "dev:workbench": "bash scripts/workbench-dev.sh",
66
+ "dev:mobile-bridge": "bash scripts/mobile-dev-bridge.sh",
67
+ "sync:mobile-android": "bun run build:mobile-ui && cap sync android",
68
+ "open:mobile-android": "cap open android",
69
+ "build:mobile-android": "bun run sync:mobile-android",
70
+ "prepublishOnly": "bash scripts/build.sh"
71
+ },
72
+ "dependencies": {
73
+ "@alcalzone/ansi-tokenize": "^0.1.0",
74
+ "@ant/claude-for-chrome-mcp": "file:./stubs/ant-claude-for-chrome-mcp",
75
+ "@anthropic-ai/claude-agent-sdk": "^0.2.87",
76
+ "@anthropic-ai/mcpb": "^2.1.2",
77
+ "@anthropic-ai/sdk": "^0.81.0",
78
+ "@aws-sdk/client-bedrock-runtime": "^3.700.0",
79
+ "@capacitor-community/speech-recognition": "^7.0.1",
80
+ "@capacitor/app": "^8.1.0",
81
+ "@capacitor/camera": "^8.1.0",
82
+ "@capacitor/core": "^8.3.1",
83
+ "@commander-js/extra-typings": "^14.0.0",
84
+ "@modelcontextprotocol/sdk": "^1.12.0",
85
+ "ajv": "^8.17.0",
86
+ "asciichart": "^1.5.25",
87
+ "auto-bind": "^5.0.1",
88
+ "axios": "^1.7.0",
89
+ "bidi-js": "^1.0.3",
90
+ "chalk": "^5.4.0",
91
+ "chokidar": "^4.0.0",
92
+ "cli-boxes": "^3.0.0",
93
+ "code-excerpt": "^4.0.0",
94
+ "color-diff-napi": "^0.0.1",
95
+ "commander": "^14.0.0",
96
+ "diff": "^7.0.0",
97
+ "emoji-regex": "^10.4.0",
98
+ "env-paths": "^3.0.0",
99
+ "execa": "^9.5.0",
100
+ "fflate": "^0.8.2",
101
+ "figures": "^6.1.0",
102
+ "fuse.js": "^7.0.0",
103
+ "get-east-asian-width": "^1.3.0",
104
+ "google-auth-library": "^9.14.0",
105
+ "highlight.js": "^11.10.0",
106
+ "https-proxy-agent": "^7.0.0",
107
+ "ignore": "^6.0.0",
108
+ "indent-string": "^5.0.0",
109
+ "jsonc-parser": "^3.3.0",
110
+ "lodash-es": "^4.17.21",
111
+ "lru-cache": "^11.0.0",
112
+ "lucide-react": "^0.546.0",
113
+ "marked": "^15.0.0",
114
+ "p-map": "^7.0.0",
115
+ "picomatch": "^4.0.0",
116
+ "proper-lockfile": "^4.1.2",
117
+ "qrcode": "^1.5.4",
118
+ "react": "^19.0.0",
119
+ "react-dom": "^19.2.4",
120
+ "react-is": "^19.2.4",
121
+ "react-reconciler": "^0.31.0",
122
+ "recharts": "^3.8.1",
123
+ "semver": "^7.6.0",
124
+ "shell-quote": "^1.8.0",
125
+ "signal-exit": "^4.1.0",
126
+ "stack-utils": "^2.0.6",
127
+ "strip-ansi": "^7.1.0",
128
+ "supports-hyperlinks": "^3.1.0",
129
+ "tree-kill": "^1.2.2",
130
+ "turndown": "^7.2.2",
131
+ "type-fest": "^4.30.0",
132
+ "undici": "^7.0.0",
133
+ "usehooks-ts": "^3.1.0",
134
+ "vscode-jsonrpc": "^8.2.0",
135
+ "vscode-languageserver-protocol": "^3.17.0",
136
+ "vscode-languageserver-types": "^3.17.0",
137
+ "wrap-ansi": "^9.0.0",
138
+ "ws": "^8.18.0",
139
+ "xss": "^1.0.15",
140
+ "yaml": "^2.8.3",
141
+ "zod": "^3.24.0"
142
+ },
143
+ "devDependencies": {
144
+ "@capacitor/android": "^8.3.1",
145
+ "@capacitor/cli": "^8.3.1",
146
+ "@tailwindcss/postcss": "^4.2.2",
147
+ "@tailwindcss/vite": "^4.2.2",
148
+ "@types/bun": "latest",
149
+ "@types/diff": "^7.0.0",
150
+ "@types/lodash-es": "^4.17.12",
151
+ "@types/proper-lockfile": "^4.1.4",
152
+ "@types/qrcode": "^1.5.0",
153
+ "@types/react": "^19.0.0",
154
+ "@types/react-dom": "^19.2.3",
155
+ "@types/shell-quote": "^1.7.0",
156
+ "@types/ws": "^8.5.0",
157
+ "@vitejs/plugin-react": "^6.0.1",
158
+ "autoprefixer": "^10.4.27",
159
+ "postcss": "^8.5.9",
160
+ "tailwindcss": "^4.2.2",
161
+ "typescript": "^5.7.0",
162
+ "vite": "^8.0.7"
163
+ }
164
+ }