@bridge_gpt/mcp-server 0.1.11 → 0.1.13
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/build/commands.generated.js +1 -1
- package/build/decision-page-schema.js +101 -0
- package/build/decision-page-schema.test.js +248 -0
- package/build/decision-page-template.js +222 -109
- package/build/index.js +126 -33
- package/build/pipelines.generated.js +19 -64
- package/build/version.generated.js +1 -1
- package/package.json +1 -1
- package/pipelines/check-ci-ticket.json +3 -8
- package/pipelines/implement-ticket.json +3 -8
- package/pipelines/pr-ticket.json +3 -8
- package/pipelines/review-ticket.json +7 -37
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "review-ticket",
|
|
3
|
-
"description": "Review a ticket with two rounds of analysis (initial + second opinion), evaluate suggestions for accuracy, and produce a resolution
|
|
3
|
+
"description": "Review a ticket with two rounds of analysis (initial + second opinion), evaluate suggestions for accuracy, and produce a combined review-and-resolution document with decision trees.",
|
|
4
4
|
"variables": ["ticket_key", "docs_dir"],
|
|
5
5
|
"steps": [
|
|
6
6
|
{
|
|
@@ -11,44 +11,19 @@
|
|
|
11
11
|
},
|
|
12
12
|
{
|
|
13
13
|
"type": "mcp_call",
|
|
14
|
-
"tool": "
|
|
14
|
+
"tool": "request_ticket_review",
|
|
15
15
|
"params": {
|
|
16
16
|
"ticket_number": "{ticket_key}",
|
|
17
17
|
"wait_for_result": true,
|
|
18
18
|
"save_locally": true,
|
|
19
19
|
"provider": "{provider}"
|
|
20
20
|
},
|
|
21
|
-
"description": "Generate
|
|
21
|
+
"description": "Generate combined clarify+critique review (initial)",
|
|
22
22
|
"on_error": "warn_and_continue"
|
|
23
23
|
},
|
|
24
24
|
{
|
|
25
25
|
"type": "mcp_call",
|
|
26
|
-
"tool": "
|
|
27
|
-
"params": {
|
|
28
|
-
"ticket_number": "{ticket_key}",
|
|
29
|
-
"wait_for_result": true,
|
|
30
|
-
"save_locally": true,
|
|
31
|
-
"provider": "{provider}"
|
|
32
|
-
},
|
|
33
|
-
"description": "Generate ticket quality critique (initial)",
|
|
34
|
-
"on_error": "warn_and_continue"
|
|
35
|
-
},
|
|
36
|
-
{
|
|
37
|
-
"type": "mcp_call",
|
|
38
|
-
"tool": "request_clarifying_questions",
|
|
39
|
-
"params": {
|
|
40
|
-
"ticket_number": "{ticket_key}",
|
|
41
|
-
"second_opinion": "auto",
|
|
42
|
-
"wait_for_result": true,
|
|
43
|
-
"save_locally": true,
|
|
44
|
-
"provider": "{provider}"
|
|
45
|
-
},
|
|
46
|
-
"description": "Generate clarifying questions (second opinion)",
|
|
47
|
-
"on_error": "warn_and_continue"
|
|
48
|
-
},
|
|
49
|
-
{
|
|
50
|
-
"type": "mcp_call",
|
|
51
|
-
"tool": "request_ticket_critique",
|
|
26
|
+
"tool": "request_ticket_review",
|
|
52
27
|
"params": {
|
|
53
28
|
"ticket_number": "{ticket_key}",
|
|
54
29
|
"second_opinion": "auto",
|
|
@@ -56,18 +31,13 @@
|
|
|
56
31
|
"save_locally": true,
|
|
57
32
|
"provider": "{provider}"
|
|
58
33
|
},
|
|
59
|
-
"description": "Generate
|
|
34
|
+
"description": "Generate combined clarify+critique review (second opinion)",
|
|
60
35
|
"on_error": "warn_and_continue"
|
|
61
36
|
},
|
|
62
37
|
{
|
|
63
38
|
"type": "agent_task",
|
|
64
|
-
"instruction_file": "evaluate-
|
|
65
|
-
"description": "Evaluate review
|
|
66
|
-
},
|
|
67
|
-
{
|
|
68
|
-
"type": "agent_task",
|
|
69
|
-
"instruction_file": "recommend-ticket-resolutions.md",
|
|
70
|
-
"description": "Produce a resolution guide with decision trees and confidence-tagged recommendations"
|
|
39
|
+
"instruction_file": "evaluate-and-recommend.md",
|
|
40
|
+
"description": "Evaluate ticket-review findings against the codebase and produce the combined review-and-resolution document at {docs_dir}/review/{ticket_key}-review-and-resolution.md"
|
|
71
41
|
},
|
|
72
42
|
{
|
|
73
43
|
"type": "agent_task",
|