@rmbk/compeek 0.2.6 → 0.2.8
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 +5 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -159,11 +159,14 @@ compeek/
|
|
|
159
159
|
│ ├── agent/ # Shared tools, types, prompts
|
|
160
160
|
│ ├── app/ # React dashboard (Vite)
|
|
161
161
|
│ ├── container/ # Express tool server (Docker)
|
|
162
|
+
│ ├── mcp/ # MCP server
|
|
162
163
|
│ └── lib/ # Logger
|
|
163
164
|
├── bin/compeek.mjs # CLI (npx compeek)
|
|
165
|
+
├── docker/ # Dockerfile, entrypoint, XFCE4 config
|
|
166
|
+
├── examples/ # Demo form applications
|
|
167
|
+
├── e2e/ # Playwright end-to-end tests
|
|
168
|
+
├── tests/ # Unit tests (vitest)
|
|
164
169
|
├── install.sh # One-line installer
|
|
165
|
-
├── docker/ # Dockerfile + entrypoint
|
|
166
|
-
├── target-app/ # Demo form application
|
|
167
170
|
└── docker-compose.yml
|
|
168
171
|
```
|
|
169
172
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rmbk/compeek",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.8",
|
|
4
4
|
"description": "AI eyes and hands for any desktop application — a general-purpose computer use agent framework powered by Claude Opus 4.6",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "rmbk",
|
|
@@ -39,10 +39,10 @@
|
|
|
39
39
|
"docker:run": "docker run -p 3000:3000 -p 6080:6080 -p 5900:5900 --shm-size=512m -it compeek",
|
|
40
40
|
"test": "vitest run",
|
|
41
41
|
"test:watch": "vitest",
|
|
42
|
-
"test:e2e": "playwright test --project=ui",
|
|
43
|
-
"test:e2e:integration": "COMPEEK_E2E_INTEGRATION=1 playwright test --project=integration",
|
|
44
|
-
"test:e2e:all": "COMPEEK_E2E_INTEGRATION=1 playwright test",
|
|
45
|
-
"test:e2e:ui": "playwright test --project=ui --ui"
|
|
42
|
+
"test:e2e": "playwright test --config=e2e/playwright.config.ts --project=ui",
|
|
43
|
+
"test:e2e:integration": "COMPEEK_E2E_INTEGRATION=1 playwright test --config=e2e/playwright.config.ts --project=integration",
|
|
44
|
+
"test:e2e:all": "COMPEEK_E2E_INTEGRATION=1 playwright test --config=e2e/playwright.config.ts",
|
|
45
|
+
"test:e2e:ui": "playwright test --config=e2e/playwright.config.ts --project=ui --ui"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@anthropic-ai/sdk": "^0.74.0",
|