@bridge_gpt/mcp-server 0.2.46 → 0.2.48

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 (39) hide show
  1. package/README.md +101 -85
  2. package/build/agent-capabilities/default-deps.js +2 -2
  3. package/build/agent-launchers/claude.js +10 -19
  4. package/build/agent-launchers/cursor.js +4 -12
  5. package/build/agent-launchers/prompt.js +117 -0
  6. package/build/commands.generated.js +16 -22
  7. package/build/conduct-epic/bridge-client.js +73 -0
  8. package/build/conduct-epic/cli.js +152 -6
  9. package/build/conductor/cli.js +6 -7
  10. package/build/conductor/doctor.js +13 -116
  11. package/build/conductor/tools.js +18 -349
  12. package/build/conductor-bin.js +6 -30
  13. package/build/docs.generated.js +1 -1
  14. package/build/executor/deps.js +1 -0
  15. package/build/executor/service-lifecycle.js +6 -6
  16. package/build/executor/service-unit.js +13 -16
  17. package/build/index.js +214 -755
  18. package/build/init.js +15 -17
  19. package/build/install-doctor.js +1 -1
  20. package/build/learn-tool-gating.js +283 -0
  21. package/build/mcp-profile.js +13 -3
  22. package/build/mcp-server-invocation.js +14 -0
  23. package/build/pipelines.generated.js +19 -139
  24. package/build/platform-escaping.js +72 -0
  25. package/build/readme.generated.js +1 -1
  26. package/build/review-tickets.js +1 -1
  27. package/build/run-unit-tests-launcher.js +0 -1
  28. package/build/sfcc/register.js +41 -31
  29. package/build/sfcc/registration-inventory.js +44 -20
  30. package/build/start-tickets-conductor.js +2 -2
  31. package/build/start-tickets.js +8 -38
  32. package/build/version.generated.js +2 -2
  33. package/docs/CONDUCTOR.md +10 -12
  34. package/docs/install/mcp-tool-integrations.md +9 -55
  35. package/package.json +1 -1
  36. package/pipelines/idea-to-ticket.json +2 -2
  37. package/pipelines/review-ticket.json +9 -8
  38. package/pipelines/check-ci-ticket.json +0 -36
  39. package/pipelines/pr-ticket.json +0 -24
@@ -1,24 +0,0 @@
1
- {
2
- "name": "pr-ticket",
3
- "description": "Commit changes and create a pull request.",
4
- "variables": ["ticket_key"],
5
- "steps": [
6
- {
7
- "type": "mcp_call",
8
- "tool": "ping",
9
- "params": {},
10
- "description": "Verify Bridge API connectivity"
11
- },
12
- {
13
- "type": "agent_task",
14
- "instruction_file": "commit-and-push.md",
15
- "description": "Stage, commit, and push changes",
16
- "requires_approval": true
17
- },
18
- {
19
- "type": "agent_task",
20
- "instruction_file": "create-pr.md",
21
- "description": "Create a pull request with a title derived from the commit subject"
22
- }
23
- ]
24
- }