mcp-copilot-worker 1.1.3 → 1.1.4

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 (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -154,7 +154,24 @@ npm run smoke
154
154
  npm run doctor -- --json
155
155
  ```
156
156
 
157
+ `npm run test:unit` includes two live task-protocol integration tests
158
+ (`test/task-protocol.test.ts`) that drive the real Copilot CLI over stdio.
159
+ They run by default on authenticated developer machines and are skipped
160
+ automatically in CI (or whenever `CI=true`). Force-enable them anywhere
161
+ with `RUN_COPILOT_LIVE_TESTS=1`, or force-skip locally with
162
+ `MCP_COPILOT_SKIP_LIVE=1`.
163
+
157
164
  For CLI-level MCP validation, use `mcpc` against `bin/mcp-copilot-worker.mjs`.
165
+ The repo ships a ready-made harness under `test/mcpc/`:
166
+
167
+ ```bash
168
+ bash test/mcpc/run-suite.sh # baseline discovery + contract suite
169
+ bash test/mcpc/run-advanced-suite.sh # stateful continuation / cancel / fleet
170
+ bash test/mcpc/run-all.sh # both suites back to back
171
+ ```
172
+
173
+ See `test/mcpc/README.md` for session-first workflow, hypothesis features,
174
+ and the repo-specific rules the harness enforces.
158
175
 
159
176
  ## Architecture notes
160
177
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-copilot-worker",
3
- "version": "1.1.3",
3
+ "version": "1.1.4",
4
4
  "description": "Copilot-only MCP worker with resumable background agents",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",