@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.
- package/README.md +101 -85
- package/build/agent-capabilities/default-deps.js +2 -2
- package/build/agent-launchers/claude.js +10 -19
- package/build/agent-launchers/cursor.js +4 -12
- package/build/agent-launchers/prompt.js +117 -0
- package/build/commands.generated.js +16 -22
- package/build/conduct-epic/bridge-client.js +73 -0
- package/build/conduct-epic/cli.js +152 -6
- package/build/conductor/cli.js +6 -7
- package/build/conductor/doctor.js +13 -116
- package/build/conductor/tools.js +18 -349
- package/build/conductor-bin.js +6 -30
- package/build/docs.generated.js +1 -1
- package/build/executor/deps.js +1 -0
- package/build/executor/service-lifecycle.js +6 -6
- package/build/executor/service-unit.js +13 -16
- package/build/index.js +214 -755
- package/build/init.js +15 -17
- package/build/install-doctor.js +1 -1
- package/build/learn-tool-gating.js +283 -0
- package/build/mcp-profile.js +13 -3
- package/build/mcp-server-invocation.js +14 -0
- package/build/pipelines.generated.js +19 -139
- package/build/platform-escaping.js +72 -0
- package/build/readme.generated.js +1 -1
- package/build/review-tickets.js +1 -1
- package/build/run-unit-tests-launcher.js +0 -1
- package/build/sfcc/register.js +41 -31
- package/build/sfcc/registration-inventory.js +44 -20
- package/build/start-tickets-conductor.js +2 -2
- package/build/start-tickets.js +8 -38
- package/build/version.generated.js +2 -2
- package/docs/CONDUCTOR.md +10 -12
- package/docs/install/mcp-tool-integrations.md +9 -55
- package/package.json +1 -1
- package/pipelines/idea-to-ticket.json +2 -2
- package/pipelines/review-ticket.json +9 -8
- package/pipelines/check-ci-ticket.json +0 -36
- package/pipelines/pr-ticket.json +0 -24
package/pipelines/pr-ticket.json
DELETED
|
@@ -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
|
-
}
|