@crewpilot/agent 1.0.0 → 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 +131 -107
- package/dist-npm/cli.js +0 -0
- package/dist-npm/index.js +160 -127
- package/package.json +69 -69
- package/prompts/agent.md +282 -266
- package/prompts/catalyst.config.json +72 -72
- package/prompts/copilot-instructions.md +36 -36
- package/prompts/skills/assure-code-quality/SKILL.md +112 -112
- package/prompts/skills/assure-pr-intelligence/SKILL.md +148 -148
- package/prompts/skills/assure-review-functional/SKILL.md +114 -0
- package/prompts/skills/assure-review-standards/SKILL.md +106 -0
- package/prompts/skills/assure-threat-model/SKILL.md +182 -0
- package/prompts/skills/assure-vulnerability-scan/SKILL.md +146 -146
- package/prompts/skills/autopilot-meeting/SKILL.md +434 -407
- package/prompts/skills/autopilot-worker/SKILL.md +737 -623
- package/prompts/skills/daily-digest/SKILL.md +188 -167
- package/prompts/skills/deliver-change-management/SKILL.md +132 -132
- package/prompts/skills/deliver-deploy-guard/SKILL.md +144 -144
- package/prompts/skills/deliver-doc-governance/SKILL.md +130 -130
- package/prompts/skills/engineer-feature-builder/SKILL.md +270 -270
- package/prompts/skills/engineer-root-cause-analysis/SKILL.md +150 -150
- package/prompts/skills/engineer-test-first/SKILL.md +148 -148
- package/prompts/skills/insights-knowledge-base/SKILL.md +202 -181
- package/prompts/skills/insights-pattern-detection/SKILL.md +142 -142
- package/prompts/skills/strategize-architecture-planner/SKILL.md +141 -141
- package/prompts/skills/strategize-solution-design/SKILL.md +118 -118
- package/scripts/postinstall.js +108 -108
package/package.json
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@crewpilot/agent",
|
|
3
|
-
"version": "
|
|
4
|
-
"description": "CrewPilot — Your AI engineering crew that plans, architects, builds, tests, and ships software autonomously. 55+ MCP tools & 16 domain skills.",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "dist-npm/index.js",
|
|
7
|
-
"bin": {
|
|
8
|
-
"crewpilot": "dist-npm/cli.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"dist-npm/index.js",
|
|
12
|
-
"dist-npm/cli.js",
|
|
13
|
-
"prompts/**",
|
|
14
|
-
"scripts/postinstall.js",
|
|
15
|
-
"README.md",
|
|
16
|
-
"LICENSE"
|
|
17
|
-
],
|
|
18
|
-
"keywords": [
|
|
19
|
-
"crewpilot",
|
|
20
|
-
"crewpilot",
|
|
21
|
-
"mcp",
|
|
22
|
-
"model-context-protocol",
|
|
23
|
-
"copilot",
|
|
24
|
-
"agent",
|
|
25
|
-
"code-quality",
|
|
26
|
-
"architecture",
|
|
27
|
-
"engineering",
|
|
28
|
-
"ai"
|
|
29
|
-
],
|
|
30
|
-
"author": "Aman Raj",
|
|
31
|
-
"license": "PROPRIETARY",
|
|
32
|
-
"repository": {
|
|
33
|
-
"type": "git",
|
|
34
|
-
"url": "https://github.com/amanraj-ms/catalyst"
|
|
35
|
-
},
|
|
36
|
-
"scripts": {
|
|
37
|
-
"build": "tsc",
|
|
38
|
-
"dev": "tsx watch src/index.ts",
|
|
39
|
-
"start": "node dist/index.js",
|
|
40
|
-
"bundle:npm": "node scripts/bundle-npm.js",
|
|
41
|
-
"lint": "eslint src/",
|
|
42
|
-
"test": "vitest run",
|
|
43
|
-
"test:watch": "vitest",
|
|
44
|
-
"typecheck": "tsc --noEmit",
|
|
45
|
-
"prepublishOnly": "npm run build && npm run bundle:npm && node scripts/copy-prompts.js",
|
|
46
|
-
"postinstall": "node scripts/postinstall.js"
|
|
47
|
-
},
|
|
48
|
-
"dependencies": {
|
|
49
|
-
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
50
|
-
"better-sqlite3": "^11.0.0",
|
|
51
|
-
"nodemailer": "^8.0.5",
|
|
52
|
-
"zod": "^3.23.0"
|
|
53
|
-
},
|
|
54
|
-
"devDependencies": {
|
|
55
|
-
"@eslint/js": "^10.0.1",
|
|
56
|
-
"@types/better-sqlite3": "^7.6.0",
|
|
57
|
-
"@types/node": "^22.0.0",
|
|
58
|
-
"@types/nodemailer": "^8.0.0",
|
|
59
|
-
"esbuild": "^0.24.2",
|
|
60
|
-
"eslint": "^10.2.0",
|
|
61
|
-
"tsx": "^4.16.0",
|
|
62
|
-
"typescript": "^5.5.0",
|
|
63
|
-
"typescript-eslint": "^8.58.1",
|
|
64
|
-
"vitest": "^4.1.4"
|
|
65
|
-
},
|
|
66
|
-
"engines": {
|
|
67
|
-
"node": ">=20.0.0"
|
|
68
|
-
}
|
|
69
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@crewpilot/agent",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "CrewPilot — Your AI engineering crew that plans, architects, builds, tests, and ships software autonomously. 55+ MCP tools & 16 domain skills.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist-npm/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"crewpilot": "dist-npm/cli.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist-npm/index.js",
|
|
12
|
+
"dist-npm/cli.js",
|
|
13
|
+
"prompts/**",
|
|
14
|
+
"scripts/postinstall.js",
|
|
15
|
+
"README.md",
|
|
16
|
+
"LICENSE"
|
|
17
|
+
],
|
|
18
|
+
"keywords": [
|
|
19
|
+
"crewpilot",
|
|
20
|
+
"crewpilot",
|
|
21
|
+
"mcp",
|
|
22
|
+
"model-context-protocol",
|
|
23
|
+
"copilot",
|
|
24
|
+
"agent",
|
|
25
|
+
"code-quality",
|
|
26
|
+
"architecture",
|
|
27
|
+
"engineering",
|
|
28
|
+
"ai"
|
|
29
|
+
],
|
|
30
|
+
"author": "Aman Raj",
|
|
31
|
+
"license": "PROPRIETARY",
|
|
32
|
+
"repository": {
|
|
33
|
+
"type": "git",
|
|
34
|
+
"url": "https://github.com/amanraj-ms/catalyst"
|
|
35
|
+
},
|
|
36
|
+
"scripts": {
|
|
37
|
+
"build": "tsc",
|
|
38
|
+
"dev": "tsx watch src/index.ts",
|
|
39
|
+
"start": "node dist/index.js",
|
|
40
|
+
"bundle:npm": "node scripts/bundle-npm.js",
|
|
41
|
+
"lint": "eslint src/",
|
|
42
|
+
"test": "vitest run",
|
|
43
|
+
"test:watch": "vitest",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"prepublishOnly": "npm run build && npm run bundle:npm && node scripts/copy-prompts.js",
|
|
46
|
+
"postinstall": "node scripts/postinstall.js"
|
|
47
|
+
},
|
|
48
|
+
"dependencies": {
|
|
49
|
+
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
50
|
+
"better-sqlite3": "^11.0.0",
|
|
51
|
+
"nodemailer": "^8.0.5",
|
|
52
|
+
"zod": "^3.23.0"
|
|
53
|
+
},
|
|
54
|
+
"devDependencies": {
|
|
55
|
+
"@eslint/js": "^10.0.1",
|
|
56
|
+
"@types/better-sqlite3": "^7.6.0",
|
|
57
|
+
"@types/node": "^22.0.0",
|
|
58
|
+
"@types/nodemailer": "^8.0.0",
|
|
59
|
+
"esbuild": "^0.24.2",
|
|
60
|
+
"eslint": "^10.2.0",
|
|
61
|
+
"tsx": "^4.16.0",
|
|
62
|
+
"typescript": "^5.5.0",
|
|
63
|
+
"typescript-eslint": "^8.58.1",
|
|
64
|
+
"vitest": "^4.1.4"
|
|
65
|
+
},
|
|
66
|
+
"engines": {
|
|
67
|
+
"node": ">=20.0.0"
|
|
68
|
+
}
|
|
69
|
+
}
|