@bridge_gpt/mcp-server 0.2.24 → 0.2.26

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 (36) hide show
  1. package/README.md +98 -28
  2. package/build/agents.generated.js +1 -1
  3. package/build/bridge-api-urls.js +31 -0
  4. package/build/commands.generated.js +5 -5
  5. package/build/conductor/epic-reconcile.js +7 -1
  6. package/build/conductor/epic-runtime.js +5 -0
  7. package/build/conductor-bundle-artifacts.js +802 -0
  8. package/build/conductor-bundle-cli.js +256 -0
  9. package/build/connect-github-api.js +365 -0
  10. package/build/connect-github.js +415 -0
  11. package/build/decision-page-schema.js +34 -5
  12. package/build/decision-page-template.js +117 -35
  13. package/build/docs.generated.js +2 -1
  14. package/build/doctor.js +148 -1
  15. package/build/env-flags.js +31 -0
  16. package/build/index.js +3467 -498
  17. package/build/init.js +7 -3
  18. package/build/install-bridge.js +624 -38
  19. package/build/install-doctor.js +64 -0
  20. package/build/mcp-host-config.js +521 -0
  21. package/build/mcp-host-targets.js +194 -0
  22. package/build/mcp-install-state.js +175 -0
  23. package/build/pipelines.generated.js +127 -132
  24. package/build/readme.generated.js +1 -1
  25. package/build/start-tickets.js +166 -18
  26. package/build/tool-surface-gating.js +396 -0
  27. package/build/version.generated.js +1 -1
  28. package/docs/install/github-app.md +80 -17
  29. package/docs/install/mcp-tool-integrations.md +2 -2
  30. package/package.json +5 -5
  31. package/pipelines/learn-repository.json +111 -119
  32. package/public/css/main.min.css +258 -65
  33. package/public/css/main.min.css.map +1 -1
  34. package/public/js/main.min.js +188 -92
  35. package/public/js/main.min.js.map +1 -1
  36. package/smoke-test/SMOKE-TEST.md +4 -4
package/build/init.js CHANGED
@@ -303,9 +303,13 @@ export async function runInit(cwd) {
303
303
  console.log(` Skipped (unchanged): ${skippedFiles.size}`);
304
304
  console.log(` ${dirNames}`);
305
305
  // ---- Phase 4b: Scaffold shipped documentation assets ----
306
- // The capability catalog (docs/mcp-tool-integrations.md) the /install-bridge
307
- // capability report cites for each gate's human "why". Keyed by target path
308
- // RELATIVE to the consumer project root; content is never secret.
306
+ // Every doc asset the /install-bridge capability report points a human at,
307
+ // so no pointer it prints dangles inside an installed project: the
308
+ // capability catalog (docs/mcp-tool-integrations.md) that explains each
309
+ // gate's human "why", and the SFCC integration guide
310
+ // (docs/install/sfcc-integration.md) that the report's SFCC configure_in
311
+ // pointer names by path. Keyed by target path RELATIVE to the consumer
312
+ // project root; content is never secret.
309
313
  const docsWritten = new Set();
310
314
  const docsSkipped = new Set();
311
315
  for (const [relTarget, content] of Object.entries(DOCS)) {