quoroom 0.1.2 → 0.1.6
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 +19 -0
- package/out/mcp/api-server.js +741 -226
- package/out/mcp/cli.js +1327 -1000
- package/out/mcp/server.js +578 -623
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "quoroom",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Autonomous AI agent collective engine — Queen, Workers, Quorum",
|
|
5
5
|
"main": "./out/mcp/server.js",
|
|
6
6
|
"bin": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"dev": "npm run build:mcp && npm run build:ui && node scripts/dev-server.js",
|
|
26
26
|
"dev:ui": "vite --config src/ui/vite.config.ts",
|
|
27
27
|
"typecheck": "tsc --noEmit",
|
|
28
|
-
"test": "npm run rebuild:native:node && vitest run --pool=forks",
|
|
28
|
+
"test": "npm run rebuild:native:node && vitest run --pool=forks --passWithNoTests",
|
|
29
29
|
"test:watch": "npm run rebuild:native:node && vitest --pool=forks",
|
|
30
30
|
"test:e2e": "npm run build && npx playwright test",
|
|
31
31
|
"test:e2e:ui": "npm run build && npx playwright test e2e/ui.test.ts",
|