@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/README.md
CHANGED
|
@@ -1,107 +1,131 @@
|
|
|
1
|
-
# @crewpilot/agent
|
|
2
|
-
|
|
3
|
-
Your AI dev crew — plans, architects, builds, tests, and ships software autonomously. **
|
|
4
|
-
|
|
5
|
-
## Install
|
|
6
|
-
|
|
7
|
-
```bash
|
|
8
|
-
npm install @crewpilot/agent
|
|
9
|
-
```
|
|
10
|
-
|
|
11
|
-
On install, Catalyst automatically creates `.github/` files in your project so the **@Catalyst agent** appears in Copilot Chat's agent dropdown.
|
|
12
|
-
|
|
13
|
-
## Usage
|
|
14
|
-
|
|
15
|
-
### As an MCP Server (VS Code, Cursor, Claude Desktop)
|
|
16
|
-
|
|
17
|
-
Add to `.vscode/mcp.json`:
|
|
18
|
-
|
|
19
|
-
```json
|
|
20
|
-
{
|
|
21
|
-
"servers": {
|
|
22
|
-
"crewpilot": {
|
|
23
|
-
"command": "npx",
|
|
24
|
-
"args": ["@crewpilot/agent"]
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
For Claude Desktop (`claude_desktop_config.json`):
|
|
31
|
-
|
|
32
|
-
```json
|
|
33
|
-
{
|
|
34
|
-
"mcpServers": {
|
|
35
|
-
"crewpilot": {
|
|
36
|
-
"command": "npx",
|
|
37
|
-
"args": ["@crewpilot/agent"]
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
### CLI Commands
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
npx @crewpilot/agent # Start MCP server (stdio)
|
|
47
|
-
npx @crewpilot/agent init # Create .github/ files in current directory
|
|
48
|
-
npx @crewpilot/agent --help # Show usage
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
### Global Install
|
|
52
|
-
|
|
53
|
-
```bash
|
|
54
|
-
npm install -g @crewpilot/agent
|
|
55
|
-
crewpilot # Start MCP server
|
|
56
|
-
crewpilot init # Setup .github/ files
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
## What Gets Created
|
|
60
|
-
|
|
61
|
-
On `npm install` (or `crewpilot init`), these files are created in your project:
|
|
62
|
-
|
|
63
|
-
| File | Purpose |
|
|
64
|
-
|---|---|
|
|
65
|
-
| `.github/agents/catalyst.md` | Agent definition — enables @Catalyst in Copilot Chat |
|
|
66
|
-
| `.github/copilot-instructions.md` | Project-level Copilot instructions |
|
|
67
|
-
| `.github/catalyst.config.json` | Platform configuration (thresholds, board settings) |
|
|
68
|
-
| `.github/skills/*/SKILL.md` |
|
|
69
|
-
|
|
70
|
-
Existing files are never overwritten.
|
|
71
|
-
|
|
72
|
-
## MCP Tools (
|
|
73
|
-
|
|
74
|
-
| Module | Tools | Purpose |
|
|
75
|
-
|---|---|---|
|
|
76
|
-
| Terminal | 3 | Command execution and environment management |
|
|
77
|
-
| Git | 6 | Branch, commit, diff, log, stage, status |
|
|
78
|
-
| Knowledge | 9 | Persistent memory, search, semantic search, patterns |
|
|
79
|
-
| Metrics | 3 | Code complexity, bundle size, coverage analysis |
|
|
80
|
-
| Dispatch |
|
|
81
|
-
| Board |
|
|
82
|
-
| Orchestrator | 14 | Worker lifecycle, planning, branching, PR creation |
|
|
83
|
-
| Notification | 3 | Email and messaging notifications |
|
|
84
|
-
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
**
|
|
94
|
-
**
|
|
95
|
-
**
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
1
|
+
# @crewpilot/agent
|
|
2
|
+
|
|
3
|
+
Your AI dev crew — plans, architects, builds, tests, and ships software autonomously. **66+ MCP tools** and **19 domain skills** for every phase of software development.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @crewpilot/agent
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
On install, Catalyst automatically creates `.github/` files in your project so the **@Catalyst agent** appears in Copilot Chat's agent dropdown.
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
### As an MCP Server (VS Code, Cursor, Claude Desktop)
|
|
16
|
+
|
|
17
|
+
Add to `.vscode/mcp.json`:
|
|
18
|
+
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"servers": {
|
|
22
|
+
"crewpilot": {
|
|
23
|
+
"command": "npx",
|
|
24
|
+
"args": ["@crewpilot/agent"]
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
For Claude Desktop (`claude_desktop_config.json`):
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
{
|
|
34
|
+
"mcpServers": {
|
|
35
|
+
"crewpilot": {
|
|
36
|
+
"command": "npx",
|
|
37
|
+
"args": ["@crewpilot/agent"]
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### CLI Commands
|
|
44
|
+
|
|
45
|
+
```bash
|
|
46
|
+
npx @crewpilot/agent # Start MCP server (stdio)
|
|
47
|
+
npx @crewpilot/agent init # Create .github/ files in current directory
|
|
48
|
+
npx @crewpilot/agent --help # Show usage
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Global Install
|
|
52
|
+
|
|
53
|
+
```bash
|
|
54
|
+
npm install -g @crewpilot/agent
|
|
55
|
+
crewpilot # Start MCP server
|
|
56
|
+
crewpilot init # Setup .github/ files
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## What Gets Created
|
|
60
|
+
|
|
61
|
+
On `npm install` (or `crewpilot init`), these files are created in your project:
|
|
62
|
+
|
|
63
|
+
| File | Purpose |
|
|
64
|
+
|---|---|
|
|
65
|
+
| `.github/agents/catalyst.md` | Agent definition — enables @Catalyst in Copilot Chat |
|
|
66
|
+
| `.github/copilot-instructions.md` | Project-level Copilot instructions |
|
|
67
|
+
| `.github/catalyst.config.json` | Platform configuration (thresholds, board settings) |
|
|
68
|
+
| `.github/skills/*/SKILL.md` | 19 domain skill files for on-demand skill loading |
|
|
69
|
+
|
|
70
|
+
Existing files are never overwritten.
|
|
71
|
+
|
|
72
|
+
## MCP Tools (66)
|
|
73
|
+
|
|
74
|
+
| Module | Tools | Purpose |
|
|
75
|
+
|---|---|---|
|
|
76
|
+
| Terminal | 3 | Command execution and environment management |
|
|
77
|
+
| Git | 6 | Branch, commit, diff, log, stage, status |
|
|
78
|
+
| Knowledge | 9 | Persistent memory, search, semantic search, patterns |
|
|
79
|
+
| Metrics | 3 | Code complexity, bundle size, coverage analysis |
|
|
80
|
+
| Dispatch | 4 | Parallel execution, consensus, review workflows, subagent delegation |
|
|
81
|
+
| Board | 14 | Task management, sprint tracking, PR integration |
|
|
82
|
+
| Orchestrator | 14 | Worker lifecycle, planning, branching, PR creation |
|
|
83
|
+
| Notification | 3 | Email and messaging notifications |
|
|
84
|
+
| Artifacts | 3 | Phase-based artifact persistence for workflow communication |
|
|
85
|
+
| Sessions | 3 | Session save/restore for resuming long-running workflows |
|
|
86
|
+
| Work IQ | 3 | M365 integration — emails, meetings, docs, Teams (optional) |
|
|
87
|
+
| Config | 1 | Runtime configuration management |
|
|
88
|
+
|
|
89
|
+
## Skills (19)
|
|
90
|
+
|
|
91
|
+
Organized across five engineering pillars:
|
|
92
|
+
|
|
93
|
+
**Strategize** — Solution Design, Architecture Planner
|
|
94
|
+
**Assure** — Code Quality, Review Functional, Review Standards, Threat Model, Vulnerability Scan, PR Intelligence
|
|
95
|
+
**Engineer** — Feature Builder, Test-First, Root Cause Analysis
|
|
96
|
+
**Deliver** — Change Management, Deploy Guard, Doc Governance
|
|
97
|
+
**Insights** — Pattern Detection, Knowledge Base
|
|
98
|
+
**Automation** — Autopilot Worker, Autopilot Meeting, Daily Digest
|
|
99
|
+
|
|
100
|
+
## VS Code Extension
|
|
101
|
+
|
|
102
|
+
For a richer experience with auto-start, agent switching, and automatic `.github/` syncing, install the [Catalyst VS Code Extension](https://marketplace.visualstudio.com/items?itemName=CrewPilot.crewpilot).
|
|
103
|
+
|
|
104
|
+
## Work IQ — M365 Integration (Optional)
|
|
105
|
+
|
|
106
|
+
To enable M365 integration (emails, meetings, documents, Teams), add the Work IQ MCP server alongside CrewPilot in your `.vscode/mcp.json`:
|
|
107
|
+
|
|
108
|
+
```json
|
|
109
|
+
{
|
|
110
|
+
"servers": {
|
|
111
|
+
"crewpilot": {
|
|
112
|
+
"command": "npx",
|
|
113
|
+
"args": ["@crewpilot/agent"]
|
|
114
|
+
},
|
|
115
|
+
"workiq": {
|
|
116
|
+
"command": "npx",
|
|
117
|
+
"args": ["-y", "@microsoft/workiq@latest", "mcp"]
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
```
|
|
122
|
+
|
|
123
|
+
Requires a Microsoft 365 Copilot license. Work IQ is entirely optional — all workflows gracefully degrade without it. See the [full setup guide](https://github.com/amanraj-ms/catalyst#work-iq-setup-m365-integration).
|
|
124
|
+
|
|
125
|
+
## Requirements
|
|
126
|
+
|
|
127
|
+
- Node.js 20+
|
|
128
|
+
|
|
129
|
+
## License
|
|
130
|
+
|
|
131
|
+
Proprietary — All rights reserved.
|
package/dist-npm/cli.js
CHANGED
|
File without changes
|