@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.
Files changed (41) hide show
  1. package/README.md +144 -18
  2. package/build/base-ref.js +151 -0
  3. package/build/commands.generated.js +6 -4
  4. package/build/conductor/bridge-api-client.js +44 -3
  5. package/build/conductor/doctor.js +33 -22
  6. package/build/conductor/epic-runtime.js +101 -5
  7. package/build/conductor/pr-ci-producer.js +21 -2
  8. package/build/conductor/pr-discovery.js +12 -2
  9. package/build/conductor-bin.js +50 -20
  10. package/build/credential-store.js +564 -64
  11. package/build/decision-page-template.js +9 -4
  12. package/build/docs.generated.js +5 -0
  13. package/build/executor/base-branch.js +50 -0
  14. package/build/executor/env.js +12 -1
  15. package/build/executor/job-errors.js +1 -0
  16. package/build/executor/job-runner.js +38 -7
  17. package/build/executor/test-clock.js +6 -1
  18. package/build/executor/worker-finalization.js +88 -1
  19. package/build/executor/worktree.js +21 -1
  20. package/build/index.js +2741 -702
  21. package/build/init.js +29 -0
  22. package/build/install-bridge.js +1076 -114
  23. package/build/pipelines.generated.js +2 -2
  24. package/build/pr-base-contract.js +36 -0
  25. package/build/readme.generated.js +1 -1
  26. package/build/setup-epic.js +483 -0
  27. package/build/sfcc/log-gate.js +85 -0
  28. package/build/sfcc/log-query.js +170 -0
  29. package/build/sfcc/register.js +10 -0
  30. package/build/sfcc/setup-status.js +33 -3
  31. package/build/start-tickets.js +164 -75
  32. package/build/version.generated.js +1 -1
  33. package/build/worktree-core.js +62 -10
  34. package/{CONDUCTOR.md → docs/CONDUCTOR.md} +88 -29
  35. package/docs/install/github-app.md +189 -0
  36. package/docs/install/mcp-tool-integrations.md +305 -0
  37. package/docs/install/sfcc-integration.md +140 -0
  38. package/package.json +5 -5
  39. package/public/js/main.min.js +55 -10
  40. package/public/js/main.min.js.map +1 -1
  41. package/smoke-test/SMOKE-TEST.md +3 -2
@@ -487,12 +487,12 @@ and raw protocol noise.** Sensitive values are redacted.
487
487
 
488
488
  ---
489
489
 
490
- ## Full 60-Tool Smoke Tier Matrix
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 + 12 + 22 = 61** (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).
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. |