@muggleai/works 2.0.0
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 +326 -0
- package/bin/muggle.js +2 -0
- package/dist/chunk-O6JAG3WQ.js +6950 -0
- package/dist/cli.js +8 -0
- package/dist/index.js +1 -0
- package/package.json +94 -0
- package/scripts/postinstall.mjs +862 -0
- package/skills-dist/muggle-do.md +589 -0
- package/skills-dist/publish-test-to-cloud.md +43 -0
- package/skills-dist/test-feature-local.md +344 -0
package/dist/cli.js
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { src_exports2 as commands, createChildLogger, createUnifiedMcpServer, getConfig, getLocalQaTools, getLogger, getQaTools, local_exports as localQa, mcp_exports as mcp, qa_exports as qa, server_exports as server, src_exports as shared } from './chunk-O6JAG3WQ.js';
|
package/package.json
ADDED
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@muggleai/works",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Unified MCP server for Muggle AI - Cloud QA and Local Testing tools",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"muggle": "bin/muggle.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"bin/muggle.js",
|
|
13
|
+
"scripts/postinstall.mjs",
|
|
14
|
+
"skills-dist"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"clean": "rimraf dist",
|
|
18
|
+
"build": "tsup",
|
|
19
|
+
"build:release": "npm run build",
|
|
20
|
+
"build:workspace": "turbo run build",
|
|
21
|
+
"typecheck:workspace": "turbo run typecheck",
|
|
22
|
+
"lint:workspace": "turbo run lint",
|
|
23
|
+
"test:workspace": "turbo run test",
|
|
24
|
+
"dev:workspace": "turbo run dev",
|
|
25
|
+
"bootstrap": "npm install && npm run build",
|
|
26
|
+
"bootstrap:workspace": "pnpm install && pnpm run build:workspace",
|
|
27
|
+
"postinstall": "node scripts/postinstall.mjs",
|
|
28
|
+
"start": "node dist/index.js",
|
|
29
|
+
"dev": "tsx watch src/index.ts",
|
|
30
|
+
"lint": "eslint . --fix",
|
|
31
|
+
"lint:check": "eslint .",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"test": "vitest run",
|
|
34
|
+
"test:watch": "vitest"
|
|
35
|
+
},
|
|
36
|
+
"muggleConfig": {
|
|
37
|
+
"electronAppVersion": "1.0.11",
|
|
38
|
+
"downloadBaseUrl": "https://github.com/multiplex-ai/muggle-ai-works/releases/download",
|
|
39
|
+
"runtimeTargetDefault": "production",
|
|
40
|
+
"checksums": {
|
|
41
|
+
"darwin-arm64": "",
|
|
42
|
+
"darwin-x64": "",
|
|
43
|
+
"win32-x64": "",
|
|
44
|
+
"linux-x64": ""
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
49
|
+
"@muggleai/mcp": "file:packages/mcps",
|
|
50
|
+
"@muggleai/workflows": "file:packages/workflows",
|
|
51
|
+
"axios": "^1.7.9",
|
|
52
|
+
"commander": "^14.0.3",
|
|
53
|
+
"open": "^11.0.0",
|
|
54
|
+
"ulid": "^3.0.2",
|
|
55
|
+
"uuid": "^13.0.0",
|
|
56
|
+
"winston": "^3.17.0",
|
|
57
|
+
"zod": "^4.3.6"
|
|
58
|
+
},
|
|
59
|
+
"devDependencies": {
|
|
60
|
+
"@eslint/js": "^10.0.1",
|
|
61
|
+
"@types/node": "^25.5.0",
|
|
62
|
+
"@types/uuid": "^10.0.0",
|
|
63
|
+
"@typescript-eslint/eslint-plugin": "^8.34.0",
|
|
64
|
+
"@typescript-eslint/parser": "^8.34.0",
|
|
65
|
+
"eslint": "^10.1.0",
|
|
66
|
+
"eslint-plugin-unused-imports": "^4.2.0",
|
|
67
|
+
"rimraf": "^6.0.1",
|
|
68
|
+
"tsup": "^8.5.1",
|
|
69
|
+
"tsx": "^4.19.2",
|
|
70
|
+
"turbo": "^2.5.6",
|
|
71
|
+
"typescript": "^5.7.3",
|
|
72
|
+
"vitest": "^4.0.18"
|
|
73
|
+
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=22.0.0"
|
|
76
|
+
},
|
|
77
|
+
"keywords": [
|
|
78
|
+
"mcp",
|
|
79
|
+
"model-context-protocol",
|
|
80
|
+
"muggle-ai",
|
|
81
|
+
"qa",
|
|
82
|
+
"testing",
|
|
83
|
+
"automation",
|
|
84
|
+
"localhost"
|
|
85
|
+
],
|
|
86
|
+
"author": "Muggle AI",
|
|
87
|
+
"license": "MIT",
|
|
88
|
+
"packageManager": "pnpm@10.0.0",
|
|
89
|
+
"repository": {
|
|
90
|
+
"type": "git",
|
|
91
|
+
"url": "git+https://github.com/multiplex-ai/muggle-ai-works.git"
|
|
92
|
+
},
|
|
93
|
+
"homepage": "https://www.muggle-ai.com/muggleTestV0/docs/mcp/mcp-overview"
|
|
94
|
+
}
|