@bridge_gpt/mcp-server 0.2.45 → 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 +103 -86
- 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/agents.generated.js +1 -1
- 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 +2 -2
- 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 +253 -759
- 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 +20 -140
- 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/tool-surface-gating.js +9 -3
- package/build/update-status.js +15 -0
- 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 +2 -2
- 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
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "review-ticket",
|
|
3
|
-
"description": "Review a ticket, evaluate suggestions for accuracy, and produce a combined review-and-resolution document with decision trees. A single request_ticket_review step runs the backend's resolved difficulty-adaptive review policy, which internally runs any second-opinion rounds server-side. Pass --rounds=1|2 to forward an explicit round count that forces the review shape (1 = single pass, 2 = full second-opinion review); omit it to let the backend policy executor decide adaptively.",
|
|
4
|
-
"variables": ["ticket_key", "docs_dir", "base_branch", "base_sha", "no_refresh_base"
|
|
3
|
+
"description": "Review a ticket, evaluate suggestions for accuracy, and produce a combined review-and-resolution document with decision trees. A single request_ticket_review step runs the backend's resolved difficulty-adaptive review policy, which internally runs any second-opinion rounds server-side. Pass --rounds=1|2 to forward an explicit round count that forces the review shape (1 = single pass, 2 = full second-opinion review); omit it to let the backend policy executor decide adaptively. The round count is injected into the request_ticket_review step as a real integer by get_pipeline_recipe, not substituted as a recipe variable.",
|
|
4
|
+
"variables": ["ticket_key", "docs_dir", "base_branch", "base_sha", "no_refresh_base"],
|
|
5
5
|
"steps": [
|
|
6
6
|
{
|
|
7
7
|
"type": "mcp_call",
|
|
@@ -16,8 +16,7 @@
|
|
|
16
16
|
"ticket_number": "{ticket_key}",
|
|
17
17
|
"wait_for_result": true,
|
|
18
18
|
"save_locally": true,
|
|
19
|
-
"provider": "{provider}"
|
|
20
|
-
"rounds": "{rounds}"
|
|
19
|
+
"provider": "{provider}"
|
|
21
20
|
},
|
|
22
21
|
"description": "Generate combined clarify+critique review. The backend runs the resolved difficulty-adaptive policy (including any second-opinion rounds) server-side; an explicit rounds value (1|2) forces the shape.",
|
|
23
22
|
"on_error": "warn_and_continue"
|
|
@@ -25,8 +24,9 @@
|
|
|
25
24
|
{
|
|
26
25
|
"type": "mcp_call",
|
|
27
26
|
"id": "materialize-fresh-base",
|
|
28
|
-
"tool": "
|
|
27
|
+
"tool": "fresh_base",
|
|
29
28
|
"params": {
|
|
29
|
+
"action": "materialize",
|
|
30
30
|
"base_branch": "{base_branch}",
|
|
31
31
|
"base_sha": "{base_sha}",
|
|
32
32
|
"no_refresh_base": "{no_refresh_base}"
|
|
@@ -47,11 +47,12 @@
|
|
|
47
47
|
{
|
|
48
48
|
"type": "mcp_call",
|
|
49
49
|
"id": "cleanup-fresh-base",
|
|
50
|
-
"tool": "
|
|
50
|
+
"tool": "fresh_base",
|
|
51
51
|
"params": {
|
|
52
|
-
"
|
|
52
|
+
"action": "cleanup",
|
|
53
|
+
"fresh_base_root": "<the fresh_base_root path returned by the earlier fresh_base materialize step's result>"
|
|
53
54
|
},
|
|
54
|
-
"description": "Remove the temp workspace created by
|
|
55
|
+
"description": "Remove the temp workspace created by the earlier fresh_base materialize step. fresh_base_root is a RUNTIME value, not a static recipe variable: call this tool with the actual path string returned by that step's result, not the placeholder text shown in params above.",
|
|
55
56
|
"on_error": "warn_and_continue"
|
|
56
57
|
}
|
|
57
58
|
]
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "check-ci-ticket",
|
|
3
|
-
"description": "Commit changes, create a pull request, and monitor CI checks.",
|
|
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
|
-
"type": "mcp_call",
|
|
25
|
-
"tool": "config_field",
|
|
26
|
-
"params": { "operation": "get", "field_name": "ci_followup_config" },
|
|
27
|
-
"description": "Fetch repo-specific CI follow-up configuration",
|
|
28
|
-
"on_error": "warn_and_continue"
|
|
29
|
-
},
|
|
30
|
-
{
|
|
31
|
-
"type": "agent_task",
|
|
32
|
-
"instruction_file": "monitor-ci-checks.md",
|
|
33
|
-
"description": "Monitor CI checks and report results"
|
|
34
|
-
}
|
|
35
|
-
]
|
|
36
|
-
}
|
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
|
-
}
|