@bridge_gpt/mcp-server 0.2.21 → 0.2.24
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 +144 -18
- package/build/base-ref.js +151 -0
- package/build/commands.generated.js +6 -4
- package/build/conductor/bridge-api-client.js +44 -3
- package/build/conductor/doctor.js +33 -22
- package/build/conductor/epic-runtime.js +101 -5
- package/build/conductor/pr-ci-producer.js +21 -2
- package/build/conductor/pr-discovery.js +12 -2
- package/build/conductor-bin.js +50 -20
- package/build/credential-store.js +564 -64
- package/build/decision-page-template.js +9 -4
- package/build/docs.generated.js +5 -0
- package/build/executor/base-branch.js +50 -0
- package/build/executor/env.js +12 -1
- package/build/executor/job-errors.js +1 -0
- package/build/executor/job-runner.js +38 -7
- package/build/executor/test-clock.js +6 -1
- package/build/executor/worker-finalization.js +88 -1
- package/build/executor/worktree.js +21 -1
- package/build/index.js +2741 -702
- package/build/init.js +29 -0
- package/build/install-bridge.js +1076 -114
- package/build/pipelines.generated.js +2 -2
- package/build/pr-base-contract.js +36 -0
- package/build/readme.generated.js +1 -1
- package/build/setup-epic.js +483 -0
- package/build/sfcc/log-gate.js +85 -0
- package/build/sfcc/log-query.js +170 -0
- package/build/sfcc/register.js +10 -0
- package/build/sfcc/setup-status.js +33 -3
- package/build/start-tickets.js +164 -75
- package/build/version.generated.js +1 -1
- package/build/worktree-core.js +62 -10
- package/{CONDUCTOR.md → docs/CONDUCTOR.md} +88 -29
- package/docs/install/github-app.md +189 -0
- package/docs/install/mcp-tool-integrations.md +305 -0
- package/docs/install/sfcc-integration.md +140 -0
- package/package.json +5 -5
- package/public/js/main.min.js +55 -10
- package/public/js/main.min.js.map +1 -1
- package/smoke-test/SMOKE-TEST.md +3 -2
package/smoke-test/SMOKE-TEST.md
CHANGED
|
@@ -487,12 +487,12 @@ and raw protocol noise.** Sensitive values are redacted.
|
|
|
487
487
|
|
|
488
488
|
---
|
|
489
489
|
|
|
490
|
-
## Full
|
|
490
|
+
## Full 62-Tool Smoke Tier Matrix
|
|
491
491
|
|
|
492
492
|
Every registered MCP tool appears **exactly once** below with its smoke tier.
|
|
493
493
|
Tier 4 (mutating/hazardous) tools are **deferred in v1**.
|
|
494
494
|
|
|
495
|
-
Coverage reconciliation: **7 + 19 + 1 +
|
|
495
|
+
Coverage reconciliation: **7 + 19 + 1 + 13 + 22 = 62** (BAPI-443 Phase 3a: `list_config_fields` merged into `config_field`; `get_config_field`/`list_attachments`/`download_attachment` merged into `config_field`/`attachment`; BAPI-474 added `materialize_fresh_base` + `cleanup_fresh_base` to Tier 4; BAPI-563 added `visual_diff` to Tier 4; BAPI-523 added `estimate_epic` to Tier 3).
|
|
496
496
|
|
|
497
497
|
| Tier | Tool | Default action / expected-empty / special handling |
|
|
498
498
|
|---|---|---|
|
|
@@ -535,6 +535,7 @@ Coverage reconciliation: **7 + 19 + 1 + 12 + 22 = 61** (BAPI-443 Phase 3a: `list
|
|
|
535
535
|
| Tier 3 | `request_reimplement_context` | Async (ticket-key based); retrieve with `get_reimplement_context`; opt-in. |
|
|
536
536
|
| Tier 3 | `request_deep_research` | Async; returns `task_id`; retrieve with `get_deep_research`; opt-in. |
|
|
537
537
|
| Tier 3 | `request_brainstorm` | Async; returns `brainstorm_id`; retrieve with `get_brainstorm`; opt-in. |
|
|
538
|
+
| Tier 3 | `estimate_epic` | Synchronous, token-costing epic estimation orchestrator (`epic_key` or explicit `ticket_keys`); returns the estimate in one call; opt-in. |
|
|
538
539
|
| Tier 4 | `create_ticket` | Mutating; deferred in v1. |
|
|
539
540
|
| Tier 4 | `add_comment` | Mutating; deferred in v1. |
|
|
540
541
|
| Tier 4 | `update_ticket_description` | Mutating; deferred in v1. |
|