@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.
- package/README.md +98 -28
- package/build/agents.generated.js +1 -1
- package/build/bridge-api-urls.js +31 -0
- package/build/commands.generated.js +5 -5
- package/build/conductor/epic-reconcile.js +7 -1
- package/build/conductor/epic-runtime.js +5 -0
- package/build/conductor-bundle-artifacts.js +802 -0
- package/build/conductor-bundle-cli.js +256 -0
- package/build/connect-github-api.js +365 -0
- package/build/connect-github.js +415 -0
- package/build/decision-page-schema.js +34 -5
- package/build/decision-page-template.js +117 -35
- package/build/docs.generated.js +2 -1
- package/build/doctor.js +148 -1
- package/build/env-flags.js +31 -0
- package/build/index.js +3467 -498
- package/build/init.js +7 -3
- package/build/install-bridge.js +624 -38
- package/build/install-doctor.js +64 -0
- package/build/mcp-host-config.js +521 -0
- package/build/mcp-host-targets.js +194 -0
- package/build/mcp-install-state.js +175 -0
- package/build/pipelines.generated.js +127 -132
- package/build/readme.generated.js +1 -1
- package/build/start-tickets.js +166 -18
- package/build/tool-surface-gating.js +396 -0
- package/build/version.generated.js +1 -1
- package/docs/install/github-app.md +80 -17
- package/docs/install/mcp-tool-integrations.md +2 -2
- package/package.json +5 -5
- package/pipelines/learn-repository.json +111 -119
- package/public/css/main.min.css +258 -65
- package/public/css/main.min.css.map +1 -1
- package/public/js/main.min.js +188 -92
- package/public/js/main.min.js.map +1 -1
- 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
|
-
//
|
|
307
|
-
//
|
|
308
|
-
//
|
|
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)) {
|