multi-agents-custom 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 +201 -0
- package/dist/chunk-C62CM2KR.mjs +795 -0
- package/dist/cli/index.d.mts +1 -0
- package/dist/cli/index.d.ts +1 -0
- package/dist/cli/index.js +887 -0
- package/dist/cli/index.mjs +83 -0
- package/dist/index.d.mts +224 -0
- package/dist/index.d.ts +224 -0
- package/dist/index.js +839 -0
- package/dist/index.mjs +22 -0
- package/package.json +64 -0
package/dist/index.mjs
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AntigravityWriter,
|
|
3
|
+
ConfigGenerator,
|
|
4
|
+
CopilotWriter,
|
|
5
|
+
CursorWriter,
|
|
6
|
+
DEFAULT_PERSONAS,
|
|
7
|
+
Logger,
|
|
8
|
+
QwenWriter,
|
|
9
|
+
buildPersonas,
|
|
10
|
+
resolveWriters
|
|
11
|
+
} from "./chunk-C62CM2KR.mjs";
|
|
12
|
+
export {
|
|
13
|
+
AntigravityWriter,
|
|
14
|
+
ConfigGenerator,
|
|
15
|
+
CopilotWriter,
|
|
16
|
+
CursorWriter,
|
|
17
|
+
DEFAULT_PERSONAS,
|
|
18
|
+
Logger,
|
|
19
|
+
QwenWriter,
|
|
20
|
+
buildPersonas,
|
|
21
|
+
resolveWriters
|
|
22
|
+
};
|
package/package.json
ADDED
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "multi-agents-custom",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "Generates AI tool config files for a five-role software development pipeline (PM → BA → Tech Lead → Developer → Tester) into each tool's native config folder. No API calls required.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"module": "dist/index.mjs",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"multi-agents-custom": "./dist/cli/index.js"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --clean",
|
|
20
|
+
"dev": "tsup src/index.ts src/cli/index.ts --format cjs,esm --dts --watch",
|
|
21
|
+
"test": "jest",
|
|
22
|
+
"test:watch": "jest --watch",
|
|
23
|
+
"lint": "eslint src --ext .ts",
|
|
24
|
+
"typecheck": "tsc --noEmit",
|
|
25
|
+
"prepublishOnly": "npm run build",
|
|
26
|
+
"postinstall": "node dist/cli/index.js || true"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"multi-agent",
|
|
30
|
+
"ai",
|
|
31
|
+
"config-generator",
|
|
32
|
+
"cursor",
|
|
33
|
+
"copilot",
|
|
34
|
+
"qwen",
|
|
35
|
+
"antigravity",
|
|
36
|
+
"pm",
|
|
37
|
+
"ba",
|
|
38
|
+
"tech-lead",
|
|
39
|
+
"developer",
|
|
40
|
+
"tester",
|
|
41
|
+
"pipeline"
|
|
42
|
+
],
|
|
43
|
+
"author": "",
|
|
44
|
+
"license": "MIT",
|
|
45
|
+
"dependencies": {},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@types/jest": "^29.5.0",
|
|
48
|
+
"@types/node": "^20.0.0",
|
|
49
|
+
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
|
50
|
+
"@typescript-eslint/parser": "^6.0.0",
|
|
51
|
+
"eslint": "^8.0.0",
|
|
52
|
+
"jest": "^29.5.0",
|
|
53
|
+
"ts-jest": "^29.1.0",
|
|
54
|
+
"tsup": "^8.0.0",
|
|
55
|
+
"typescript": "^5.3.0"
|
|
56
|
+
},
|
|
57
|
+
"files": [
|
|
58
|
+
"dist",
|
|
59
|
+
"README.md"
|
|
60
|
+
],
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=18.0.0"
|
|
63
|
+
}
|
|
64
|
+
}
|