@crewpilot/agent 2.0.0 → 3.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.
Files changed (27) hide show
  1. package/README.md +131 -131
  2. package/dist-npm/cli.js +5 -5
  3. package/dist-npm/index.js +100 -100
  4. package/package.json +69 -69
  5. package/prompts/agent.md +282 -282
  6. package/prompts/copilot-instructions.md +36 -36
  7. package/prompts/{catalyst.config.json → crewpilot.config.json} +72 -72
  8. package/prompts/skills/assure-code-quality/SKILL.md +112 -112
  9. package/prompts/skills/assure-pr-intelligence/SKILL.md +148 -148
  10. package/prompts/skills/assure-review-functional/SKILL.md +114 -114
  11. package/prompts/skills/assure-review-standards/SKILL.md +106 -106
  12. package/prompts/skills/assure-threat-model/SKILL.md +182 -182
  13. package/prompts/skills/assure-vulnerability-scan/SKILL.md +146 -146
  14. package/prompts/skills/autopilot-meeting/SKILL.md +434 -434
  15. package/prompts/skills/autopilot-worker/SKILL.md +737 -737
  16. package/prompts/skills/daily-digest/SKILL.md +188 -188
  17. package/prompts/skills/deliver-change-management/SKILL.md +132 -132
  18. package/prompts/skills/deliver-deploy-guard/SKILL.md +144 -144
  19. package/prompts/skills/deliver-doc-governance/SKILL.md +130 -130
  20. package/prompts/skills/engineer-feature-builder/SKILL.md +270 -270
  21. package/prompts/skills/engineer-root-cause-analysis/SKILL.md +150 -150
  22. package/prompts/skills/engineer-test-first/SKILL.md +148 -148
  23. package/prompts/skills/insights-knowledge-base/SKILL.md +202 -202
  24. package/prompts/skills/insights-pattern-detection/SKILL.md +142 -142
  25. package/prompts/skills/strategize-architecture-planner/SKILL.md +141 -141
  26. package/prompts/skills/strategize-solution-design/SKILL.md +118 -118
  27. package/scripts/postinstall.js +108 -108
package/package.json CHANGED
@@ -1,69 +1,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
- }
1
+ {
2
+ "name": "@crewpilot/agent",
3
+ "version": "3.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/crewpilot"
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
+ }