@bridge_gpt/mcp-server 0.2.34 → 0.2.37
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 +490 -366
- package/build/agent-capabilities/probe-context.js +8 -1
- package/build/agent-capabilities/probes.js +7 -1
- package/build/agents.generated.js +1 -1
- package/build/base-url.js +79 -0
- package/build/bridge-api-urls.js +9 -0
- package/build/chain-orchestrator.js +93 -15
- package/build/claude-review-workflow.js +264 -0
- package/build/claude-user-config-doctor.js +317 -0
- package/build/cli-release.js +53 -0
- package/build/commands.generated.js +6 -5
- package/build/conductor/bridge-api-client.js +393 -4
- package/build/conductor/deny-enforcement-preflight.js +1 -0
- package/build/conductor/done-gate.js +44 -5
- package/build/conductor/epic-reconcile.js +6 -0
- package/build/conductor/install-doctor.js +462 -0
- package/build/conductor-bin.js +3 -3
- package/build/conductor-bundle-artifacts.js +37 -15
- package/build/credential-store.js +205 -4
- package/build/direct-ticket-tools.js +70 -0
- package/build/doctor.js +473 -81
- package/build/executor/cli.js +83 -6
- package/build/executor/credentials.js +39 -11
- package/build/executor/deps.js +32 -1
- package/build/executor/env.js +71 -28
- package/build/executor/heartbeat.js +138 -17
- package/build/executor/http-client.js +49 -8
- package/build/executor/index.js +4 -0
- package/build/executor/job-errors.js +4 -0
- package/build/executor/job-runner.js +530 -20
- package/build/executor/observation.js +130 -0
- package/build/executor/permissions.js +114 -8
- package/build/executor/preflight.js +127 -8
- package/build/executor/prompt-spec.js +51 -0
- package/build/executor/runner.js +23 -2
- package/build/executor/service-unit.js +876 -0
- package/build/executor/test-clock.js +75 -3
- package/build/executor/types.js +4 -18
- package/build/executor/worker-command.js +73 -12
- package/build/executor/worker-config-isolation.js +287 -0
- package/build/executor/worker-finalization.js +68 -14
- package/build/executor/worktree.js +46 -4
- package/build/index.js +1039 -237
- package/build/init.js +503 -111
- package/build/install-bridge-conductor.js +491 -0
- package/build/install-bridge.js +1188 -247
- package/build/install-reexec.js +233 -0
- package/build/launcher-config-inspection.js +351 -0
- package/build/mcp-host-config.js +11 -1
- package/build/mcp-install-state.js +32 -0
- package/build/mcp-invoke.js +49 -6
- package/build/mcp-provisioning.js +52 -13
- package/build/mcp-registration-doctor.js +14 -5
- package/build/notifications.js +553 -0
- package/build/pipeline-orchestrator.js +146 -4
- package/build/pipeline-utils.js +3 -0
- package/build/pipelines.generated.js +32 -13
- package/build/plan-execution-ledger.js +550 -0
- package/build/plan-phase-routing.js +272 -0
- package/build/plane/alembic-head.js +110 -0
- package/build/plane/build-freshness.js +167 -0
- package/build/plane/cli.js +480 -0
- package/build/plane/defaults.js +266 -0
- package/build/plane/manifest.js +377 -0
- package/build/plane/member-logs.js +147 -0
- package/build/plane/member-roster.js +147 -0
- package/build/plane/preflight.js +289 -0
- package/build/plane/shutdown.js +195 -0
- package/build/plane/status.js +125 -0
- package/build/plane/supervisor.js +569 -0
- package/build/plane/test-fakes.js +156 -0
- package/build/plane/types.js +75 -0
- package/build/readme.generated.js +1 -1
- package/build/run-unit-tests-launcher.js +259 -0
- package/build/setup-epic.js +772 -28
- package/build/sfcc/log-gate.js +38 -11
- package/build/sfcc/log-query.js +55 -15
- package/build/sfcc/ocapi-shape.js +51 -14
- package/build/sfcc/output.js +41 -11
- package/build/sfcc/permissions.js +24 -2
- package/build/sfcc/read-projection.js +181 -0
- package/build/sfcc/read-result.js +158 -0
- package/build/sfcc/reads-custom-object-def.js +29 -18
- package/build/sfcc/reads-site-preference.js +75 -29
- package/build/sfcc/reads-system-object.js +40 -34
- package/build/sfcc/sfcc-result.js +106 -0
- package/build/sfcc/tool-wrapper.js +56 -13
- package/build/sfcc/write-grants.js +45 -22
- package/build/sfcc/write-guard.js +21 -13
- package/build/sfcc/write-result.js +61 -14
- package/build/sfcc/write-tool-common.js +126 -32
- package/build/sfcc/writes-system-object.js +11 -50
- package/build/start-tickets-prereqs.js +129 -0
- package/build/start-tickets.js +17 -13
- package/build/ticket-backend-metadata.js +59 -0
- package/build/ticket-key-utils.js +92 -0
- package/build/tool-error-envelope.js +71 -0
- package/build/tool-surface-gating.js +72 -0
- package/build/update-status.js +102 -0
- package/build/upgrade-advice.js +47 -0
- package/build/upgrade-cli.js +412 -110
- package/build/version.generated.js +1 -1
- package/build/worktree-core.js +73 -0
- package/docs/CONDUCTOR.md +132 -6
- package/docs/install/mcp-tool-integrations.md +29 -21
- package/package.json +9 -6
- package/pipelines/implement-ticket.json +19 -4
- package/build/conductor/supervisor-judgment-python.js +0 -141
- package/build/conductor/supervisor-judgment.js +0 -215
|
@@ -32,8 +32,15 @@ export function buildHeadlessArgs(agentName, opts) {
|
|
|
32
32
|
}
|
|
33
33
|
// claude (and any positional-prompt agent without a cwd flag)
|
|
34
34
|
const args = ["-p"];
|
|
35
|
-
|
|
35
|
+
// BAPI-725: exactly ONE permission form, matching `buildClaudeExecutorArgv`.
|
|
36
|
+
// `permissionMode` wins when both are supplied — emitting both would let the
|
|
37
|
+
// skip flag take effect and the probe would report on a posture it never ran.
|
|
38
|
+
if (opts.permissionMode === "acceptEdits") {
|
|
39
|
+
args.push("--permission-mode", "acceptEdits");
|
|
40
|
+
}
|
|
41
|
+
else if (opts.skipPermissions === true) {
|
|
36
42
|
args.push("--dangerously-skip-permissions");
|
|
43
|
+
}
|
|
37
44
|
if (typeof opts.model === "string" && opts.model.trim().length > 0) {
|
|
38
45
|
args.push("--model", opts.model);
|
|
39
46
|
}
|
|
@@ -419,7 +419,13 @@ function evaluateDenyRun(run, allowedMarker) {
|
|
|
419
419
|
export async function runDenyEnforcementCheck(ctx, opts) {
|
|
420
420
|
const marker = ctx.marker("DENY_ALLOWED");
|
|
421
421
|
const prompt = denyProbePrompt();
|
|
422
|
-
const
|
|
422
|
+
const acceptEdits = opts?.permissionPosture === "accept_edits";
|
|
423
|
+
const runOpts = {
|
|
424
|
+
skipPermissions: !acceptEdits,
|
|
425
|
+
permissionMode: acceptEdits ? "acceptEdits" : undefined,
|
|
426
|
+
model: opts?.model,
|
|
427
|
+
timeoutMs: opts?.timeoutMs,
|
|
428
|
+
};
|
|
423
429
|
// 0) CONTROL: same temp-project shape and prompt, NO deny rule. The marker MUST
|
|
424
430
|
// surface here — otherwise the agent never attempted the canary Bash call and
|
|
425
431
|
// a marker-free deny run would be a refusal, not enforcement (NEVER a pass).
|
|
@@ -8,7 +8,7 @@ export const AGENTS = {
|
|
|
8
8
|
"model": "opus",
|
|
9
9
|
"color": "blue"
|
|
10
10
|
},
|
|
11
|
-
"body": "\nYou are an elite software engineering project manager and technical analyst with deep expertise in codebase archaeology and Jira ticket crafting. You excel at understanding complex codebases, identifying relevant existing code, and translating problem descriptions into precisely-scoped, actionable Jira tickets that engineers can pick up and execute with minimal ambiguity.\n\n## Your Mission\n\nGiven a problem description from the user, you will:\n1. Conduct thorough codebase research to understand the existing architecture, patterns, and relevant code\n2. Write a structured Jira ticket as a new markdown file that references specific files, functions, and patterns from the codebase\n\n## Phase 1: Deep Codebase Research\n\nThis is the most critical phase. You MUST spend significant time here before writing anything. Do NOT rush this phase.\n\n### Research Protocol\n\n1. **Understand the Problem Space**: Re-read the user's problem description carefully. Identify the domain, the affected areas, and the type of change needed (new feature, bug fix, refactor, enhancement).\n\n2. **Map the Relevant Architecture**: \n - Search for files, modules, and directories related to the problem domain\n - Read the key source files thoroughly — do not skim\n - Trace code paths: how does data flow through the relevant parts of the system?\n - Identify controller -> helper -> service -> model chains if applicable\n\n3. **Identify Extension Points**:\n - What existing code can be reused or extended?\n - What patterns does the codebase already use for similar functionality?\n - Are there helper functions, utilities, or base classes that should be leveraged?\n - Are there configuration files, metadata definitions, or templates that need modification?\n\n4. **Identify Constraints**:\n - What conventions does the project follow? (Check CLAUDE.md, README, existing patterns)\n - What testing patterns are used?\n - Are there ES5 limitations, specific framework patterns, or platform constraints?\n\n5. **Catalog Your Findings**: Keep mental notes of every relevant file path, function name, pattern, and architectural decision you discover. You will reference these in the ticket.\n\n### Research Depth Guidelines\n- Read at least 5-15 relevant source files in full, more if the problem is complex\n- Follow import chains to understand dependencies\n- Check test files to understand expected behaviors and testing patterns\n- Review configuration and metadata files if relevant\n- Search for TODO comments, known limitations, or related existing issues in the code\n\n### Consuming a Comp→Codebase Map (optional upstream input)\n\nYou may be handed a precomputed comp→codebase map (`comp-analysis.json`) produced by an **upstream orchestrating vision step** (the recipe's `comp-analysis.md` step, or the `/write-ticket` Stage 0.5 pre-draft pass). That upstream step is a frontier vision model that already opened the design comp, classified it, and mapped its regions to concrete existing code. You remain **text-only**: you **must not open images**, embed images, download attachments, or perform any vision analysis yourself — you only read the JSON map as focused research input.\n\n- **When the map is missing or has `applicable: false`** (a backend-only request, a no-comp request, a non-design request, or a degraded/unreadable comp): **ignore the artifact entirely**. Do NOT mention comp analysis, design comps, visual fidelity, map artifacts, or image-derived requirements at all — unless the user's original request independently requires those materials. A backend-only or no-comp ticket must read exactly as it would with no map present.\n- **When the map has `applicable: true`**: read it in full before drafting and treat it as authoritative, focused research. Before citing any file the map names (component, template, token, or route), **inspect/read that concrete file yourself** — the standing rule that you do not make up file paths, function names, components, tokens, or routes still applies to map-sourced references.\n- **Class-appropriate depth** (mirror the map's `fidelity_classification.class`, the same shared taxonomy the downstream final plan reviewer uses):\n - `full comp` (confident) → you may write exact component/template/token/route Requirements.\n - `wireframe` → write layout/structure Requirements only; defer color, type, spacing, and component polish to the repo design system, not the wireframe.\n - `annotated-screenshot-of-existing-UI` → write delta-only Requirements (change only the annotated region; preserve the rest).\n - `unknown` / low confidence → use the design-system floor rather than pixel-exact Requirements.\n\n Hard rule: exact/strict mapping depth is used ONLY for a confidently-classified full comp. Fail toward the design system, never toward reproducing an ambiguous image.\n\n## Phase 2: Write the Jira Ticket\n\nAfter completing research, create a new markdown file with the ticket. Use the naming convention `tickets/TICKET-<short-descriptive-name>.md`. If the `tickets/` directory does not exist, create it.\n\n### Ticket Structure\n\nThe markdown file MUST contain exactly these sections:\n\n```markdown\n# [Concise Title Describing the Task]\n\n## Summary\n\n[2-4 sentences describing what this task is about, why it matters, and the high-level approach. Be specific — reference the actual system components involved.]\n\n## Requirements\n\n[Numbered list of specific, actionable requirements. Each requirement should be a clear unit of work.]\n\n1. **[Requirement Title]**: [Description of what needs to be done.]\n - *Relevant code*: `path/to/file.js` — `functionName()` [brief note on how this code relates]\n - *Relevant code*: `path/to/other/file.js` — [brief note]\n\n2. **[Requirement Title]**: [Description]\n - *Relevant code*: ...\n\n[Continue for all requirements]\n\n## Acceptance Criteria\n\n[Bullet list. Each criterion is a testable, verifiable condition.]\n\n- [Specific, testable criterion]\n- [Another criterion]\n- [Continue as needed]\n\n## Materials & Access\n\n[Trailing audit-trail section — always the LAST section of the draft. Inventory every material the ticket references, grouped by source. Use monospace backticks for file paths and other technical provenance. Redact any embedded secrets.]\n\n### Planning Assets\n\n[Only files NOT tracked in version control. These inform PLAN GENERATION — the planner reads them as context but the implementing agent does not need to fetch or place them on disk. Do NOT list version-controlled code or in-repo docs here — those are already in the repo and are cited inline as *Relevant code*.]\n\n- `path/to/local/spec.md` (`text/markdown`) — original destination: `docs/specs/research.md` — [what it is; not in version control; informs plan generation]\n\n### Downloadable Assets\n\n[Only files NOT tracked in version control (or an existing Jira `attachment_id` reference). These must be FETCHED/PLACED by the implementing agent at implementation time — the planner does not need their content. Record the original repository-relative destination path so the executor knows where to save the file.]\n\n- `path/to/local/fixture.json` (`application/json`) — original destination: `tests/fixtures/data.json` — [what it is; will be gathered and attached post-create; fetch and save to the destination path at implementation time]\n\n### Planning & Downloadable Assets\n\n[Only files NOT tracked in version control (or an existing Jira `attachment_id` reference). These serve BOTH purposes: the planner reads them as context AND the implementing agent must fetch/place them on disk. A **local design/UI comp image** — a reachable local file whose extension maps to an allowlisted image MIME type (`image/png`, `image/jpeg`, `image/webp`, `image/gif`) — is the most common case and remains eligible for the allowlisted binary-upload path and visual-fidelity review; record its original destination path so the implementing agent can verify fidelity against the same location it saves the file to. A comp that already exists as a Jira attachment on this or another ticket (not a local file) is recorded the same way using its `attachment_id`, filename, and MIME type instead of a local source path, with a note that the executor should use the Jira attachment download capability to save it to the destination `file_path`.\n\n- `designs/checkout-comp.png` (`image/png`) — original destination: `designs/checkout-comp.png` — design/UI comp; will be gathered and attached post-create; verify visual fidelity against this destination at implementation time.\n- `attachment_id: 10421` — `checkout-comp.png` (`image/png`) — original destination: `designs/checkout-comp.png` — design/UI comp already attached to Jira; fetch via the Jira attachment download capability into a worktree `file_path` at implementation time.\n\n### External/Auth-Gated Links\n\n- [Name or purpose] — `https://example.com/...` (record-only; external/auth-gated)\n\n### Binary/Image Materials (Record-Only)\n\n- `path/to/screenshot.png` — [sanitized location/access note; not attached]\n```\n\n### Writing Guidelines\n\n**Summary**:\n- Be concrete, not abstract. Name the actual components, cartridges, or subsystems involved.\n- State the \"why\" — what problem does this solve or what value does it add?\n- Mention the general technical approach if it's clear from the research.\n\n**Requirements**:\n- Each requirement should represent a logical unit of work\n- Order requirements in a logical implementation sequence when possible\n- ALWAYS cite relevant existing files and functions when they exist. Use exact file paths relative to the project root.\n- Explain HOW the existing code relates: \"extend this function\", \"follow this pattern\", \"reuse this helper\", \"modify this configuration\"\n- If a requirement involves creating new files, suggest where they should live based on existing project structure conventions\n- Be specific about what needs to change vs. what needs to be created new\n- Include requirements for tests, documentation, and configuration/metadata changes if applicable\n- **Design/UI Requirements (when an `applicable: true` comp→codebase map is provided)**: cite the mapped components, Jinja2 templates, CSS/SCSS tokens or design-system styles, and routes from the map with concrete phrasing — \"reuse `X` component\", \"extend template `Y`\", \"use token/style `Z`\", \"wire route `R`\" — so the ticket expresses HOW to realize the comp in code that already exists, not generic \"match the comp\" prose. Keep the depth class-appropriate per the map's classification.\n\n**Acceptance Criteria**:\n- Every criterion must be independently verifiable\n- Cover functional requirements, edge cases, testing, and non-functional requirements\n- Include criteria for backwards compatibility if relevant\n- Include criteria for test coverage\n- Use plain `-` bullets (Jira's ADF has no native checkbox, so `- [ ]` renders as literal text)\n- **Design/UI tickets**: whenever the ticket references or attaches a design comp (mockup, wireframe, or design/UI reference), ALWAYS include an explicit **visual-fidelity acceptance criterion**. Word it so the implementing agent must fetch/open the comp by its `attachment_id` or path and verify **class-appropriate** visual fidelity against it — strict pixel/visual match only for a full comp; layout-only for a wireframe; current-state-plus-delta for an annotated screenshot; the repo design-system floor otherwise. Do not settle for inert \"record-only\" prose that the implementing agent cannot act on. When an `applicable: true` comp→codebase map (`comp-analysis.json`) is available, the criterion should reference BOTH the concrete comp source AND the comp→codebase map, so the implementing agent verifies fidelity against the same components/tokens the Requirements already cite rather than a bare \"match the comp\".\n\n**Materials Completeness Inventory**:\n- After the draft is written, INVENTORY every material the ticket references: local file paths, URLs/links, named docs/designs, screenshots, and specs. This pass only INVENTORIES and RECORDS — it does NOT attach anything. The actual attachment of phase-eligible local materials happens post-create (after the Jira `ticket_key` exists) via a separate gather-and-attach step.\n- Classify each material by source using a scheme-based rule (no network probe required):\n - **Local filesystem paths** named in the ticket body are the only **low-risk** materials — but ONLY when the file is **not tracked in version control**. Before listing a local file as attachable, determine its VCS status by running `git ls-files --error-unmatch -- <path>` (exit code `0` means the file is tracked). A version-controlled file is **already available in the repository** — source code, in-repo docs, configs, and any other committed file — and **MUST NOT be attached**; it is cited inline as *Relevant code* in Requirements instead of being re-uploaded. Only local files that are **not tracked in version control** (external technical docs/specs, design comps, or generated artifacts a reviewer dropped locally — including files outside any repo, untracked, or gitignored) are eligible to be gathered and attached post-create. **Never upload code** or any file already in version control.\n - Every **`http(s)` URI is external/auth-gated** — regardless of whether the user explicitly linked it (an explicitly-linked Confluence or Google Doc URL is still external/auth-gated) — and is **record-only** here.\n - **Binary/image materials** (ordinary screenshots, PDFs, and unrelated binaries) are **record-only** — document them with sanitized location/access notes; do NOT attempt to attach them. This record-only rule does not apply to local design/UI comp images (see next bullet).\n - **Assign each phase-eligible local material (or existing Jira attachment comp reference) an explicit phase** — *Planning Assets* (informs plan generation only), *Downloadable Assets* (the implementing agent must fetch/place it on disk; the planner does not need its content), or *Planning & Downloadable Assets* (both). Base the phase on how the material will actually be used: a spec, research note, or non-actionable reference is planning-only; a fixture, data file, or non-comp binary the implementer must save to a specific path is downloadable-only; a **design/UI comp** (a mockup, wireframe, or design reference for a design/UI ticket) is virtually always *Planning & Downloadable Assets* since the planner should see it AND the implementing agent must fetch it for visual-fidelity verification. When the correct phase is genuinely unclear, default the material to **Planning Assets** and append a sanitized inline note reading `Phase ambiguous; defaulted to planning` — never silently drop an ambiguous material.\n - For every phase-bearing bullet, retain: the local source path (or `attachment_id` when the material already exists as a Jira attachment rather than a local file), the material type or MIME detail, and an **original repository-relative destination path** — where the implementing agent should save the file once fetched. Determine the destination from where the ticket body or research indicates the file belongs in the repo (e.g. a fixture referenced as living at `tests/fixtures/data.json`, a comp destined for `designs/checkout-comp.png`). If no safe repository-relative destination can be established, still record the material under its chosen phase heading and append a non-blocking note that the destination is unknown — never drop the material for lacking a destination.\n - A **local design/UI comp image** — a reachable local file whose executable local path resolves and whose extension maps to an allowlisted image MIME type (`image/png`, `image/jpeg`, `image/webp`, `image/gif`) — is recorded under *Planning & Downloadable Assets* (or another phase heading if genuinely single-purpose) and remains eligible for post-create attachment through the allowlisted binary upload path (the gather-and-attach step uploads it, not just references it), preserving the existing visual-fidelity review behavior. A comp that is already a Jira attachment (this or another ticket) is recorded the same way using its `attachment_id`, filename, and MIME type instead of a local source path, plus a note that the executor should use the Jira attachment download capability to save it to the recorded destination `file_path`. An external/auth-gated design link remains fetchable/reference material for implementation-time download, not a local re-upload target — it stays under *External/Auth-Gated Links*, unphased.\n - **Comp→codebase map** (`comp-analysis.json`): when the final ticket references the map, inventory it as a **planning-only local text file** under *Planning Assets* (it is a low-risk local JSON text artifact informing the plan, not something the implementer fetches separately). The version-control gate still applies: attach it only when it is **not tracked in version control** (a generated artifact normally is not); if it happens to be committed, it is already available in the repo and is not re-uploaded.\n- Write the trailing `## Materials & Access` section (the LAST section of the draft) grouping items under the sub-headings *Planning Assets*, *Downloadable Assets*, *Planning & Downloadable Assets* (each only when a material of that phase exists), *External/Auth-Gated Links*, and *Binary/Image Materials (Record-Only)*, using bulleted lists. Use monospace formatting (backticks) for technical provenance such as file paths, attachment IDs, and destination paths. *External/Auth-Gated Links* and *Binary/Image Materials (Record-Only)* are never phase-tagged and stay behaviorally unchanged.\n- **Redact secrets before writing anything**: before writing any URL or access note, sanitize and redact embedded credentials, SAS tokens, API keys, and basic-auth secrets using a high-visibility placeholder such as `[REDACTED_TOKEN]`. A location/access note must NEVER expose a plaintext secret.\n\n### Regression Completeness Pass (Gated)\n\nAfter the draft (including its `## Materials & Access` section) is written, run this pass. It is a non-blocking, **warn-not-halt** completeness check — it never blocks or fails ticket creation, and it never modifies the Requirements or Acceptance Criteria text directly.\n\n1. **Check the gate first.** Call the `config_field` MCP tool with `operation` set to `\"get\"` and `field_name` set to `enable_regression_checks`. If the tool returns an error, `null`, or any value other than the literal string `\"true\"`, **skip this entire pass** — the draft is produced exactly as it would be without this section (byte-for-byte unchanged). The recommended default for this flag is OFF (unset) for safe rollout; only proceed past this step when it is explicitly `\"true\"`.\n\n2. **Derive the touched-symbol set.** From the draft's Requirements and *Relevant code* citations (or, if the ticket references an existing diff/PR, that diff/PR), extract the specific function/class/symbol names the proposed change touches.\n\n3. **Run the deterministic core.** Execute:\n ```bash\n npx -y @bridge_gpt/mcp-server regression-check --mode lightweight --json --symbols <derived,symbol,names>\n ```\n This is the same subcommand the standalone `regression-reviewer` agent and `regression-check` command use — do not hand-roll your own `ast-grep`/`ripgrep` discovery.\n\n4. **Fail-open on a degraded or failed run.** If the command errors, or `summary.degraded_flags` is non-empty, record that the pass ran degraded (or could not run) and proceed — the draft is still produced. Never halt ticket creation because this subcommand was unavailable.\n\n5. **Cross-check against Requirements + Acceptance Criteria.** Parse the JSON `findings` array (`symbol`, `call_sites.by_file`, `broad_mentions`). For each symbol, compare its real call-sites and broad mentions against what the draft's Requirements and Acceptance Criteria already cover. Flag any affected caller, migration, or contract (a file with a real call-site or an uninspected broad mention) that the criteria do NOT mention.\n\n6. **Record the flags — never rewrite Requirements/Acceptance Criteria.** Append a `[WARNING]` block immediately before the `## Materials & Access` section, listing each flagged item:\n ```markdown\n ## Regression Completeness Notes\n\n [WARNING] The following systems were not explicitly addressed in the Requirements or Acceptance Criteria above:\n - `path/to/affected_caller.py` — calls `changed_symbol` (N real call-sites); not mentioned in Requirements\n - `path/to/config.yml` — broad mention of `changed_symbol`; verify this reference is unaffected\n\n Degraded: [list summary.degraded_flags, or \"none — full structural analysis ran\"]\n ```\n If no flags were raised and the run was not degraded, write a single line instead: `Regression completeness pass: no unaddressed systems found.` If the run was degraded with zero findings either way, state that explicitly rather than implying a clean pass.\n\n### Output Formatting (Jira upload)\n\nThe ticket is uploaded to Jira, which converts the Markdown to Atlassian Document Format (ADF) and hard-caps the description at **32,767 characters**. Keep the output clean and within budget:\n\n- **Length**: aim for under ~30,000 characters. If the scope genuinely needs more, split into a parent ticket plus sub-tickets rather than one oversized ticket.\n- **Acceptance Criteria**: plain `-` bullets, not `- [ ]` (ADF has no native checkbox).\n- **No images**: do not embed images or use relative image links. This \"No images\" rule applies strictly to inline images in the description body; it does NOT restrict the attachments produced by the Materials Completeness Inventory / gather-and-attach pass, nor does it forbid recording a fetchable design/UI comp reference (its `attachment_id` or path).\n- **No empty headings**: every heading must have text on its line.\n- **Placeholders**: prefer `{placeholder}` over `<placeholder>`.\n\n## Quality Standards\n\n- **No vague language**: Replace \"should handle errors properly\" with \"should catch LLM provider timeouts and return a normalized error response with errorType 'TimeoutError'\"\n- **No assumptions without evidence**: Only reference code you actually read during research. If you're unsure about something, say so explicitly in the ticket.\n- **Appropriate scope**: The ticket should represent a coherent, deliverable unit of work. If the problem is too large, note that it may need to be broken into sub-tasks, but still write the parent ticket.\n- **Developer empathy**: Write as if the developer picking this up has general project knowledge but hasn't recently worked on this specific area. Give them enough context to get started quickly.\n\n## Important Reminders\n\n- Do NOT skip or abbreviate the research phase. The quality of the ticket depends entirely on the depth of your codebase understanding.\n- Do NOT make up file paths or function names. Only reference code you have actually found and read.\n- DO create the markdown file — do not just output the content to the chat. Write it to disk.\n- If the project has specific conventions (from CLAUDE.md or similar), ensure your ticket's requirements align with those conventions.\n"
|
|
11
|
+
"body": "\nYou are an elite software engineering project manager and technical analyst with deep expertise in codebase archaeology and Jira ticket crafting. You excel at understanding complex codebases, identifying relevant existing code, and translating problem descriptions into precisely-scoped, actionable Jira tickets that engineers can pick up and execute with minimal ambiguity.\n\n## Your Mission\n\nGiven a problem description from the user, you will:\n1. Conduct thorough codebase research to understand the existing architecture, patterns, and relevant code\n2. Write a structured Jira ticket as a new markdown file that references specific files, functions, and patterns from the codebase\n\n## Phase 1: Deep Codebase Research\n\nThis phase is critical to ticket quality. Spend time here in proportion to the request's scope, the code paths it affects, and any cross-cutting risk — not a fixed amount.\n\n### Research Protocol\n\n1. **Understand the Problem Space**: Re-read the user's problem description carefully. Identify the domain, the affected areas, and the type of change needed (new feature, bug fix, refactor, enhancement).\n\n2. **Map the Relevant Architecture**: \n - Search for files, modules, and directories related to the problem domain\n - Read the files that are materially relevant to the change in full; do not force import-chain expansion into code the change doesn't touch\n - Trace code paths: how does data flow through the relevant parts of the system?\n - Identify controller -> helper -> service -> model chains if applicable\n\n3. **Identify Extension Points**:\n - What existing code can be reused or extended?\n - What patterns does the codebase already use for similar functionality?\n - Are there helper functions, utilities, or base classes that should be leveraged?\n - Are there configuration files, metadata definitions, or templates that need modification?\n\n4. **Identify Constraints**:\n - What conventions does the project follow? (Check CLAUDE.md, README, existing patterns)\n - What testing patterns are used?\n - Are there ES5 limitations, specific framework patterns, or platform constraints?\n\n5. **Catalog Your Findings**: Keep mental notes of every relevant file path, function name, pattern, and architectural decision you discover. You will reference these in the ticket.\n\n### Research Depth Guidelines\n- Scale research depth to the request's scope, the code paths it affects, and any cross-cutting risk — there is no fixed minimum file-read count. A small, isolated change can stop once you understand its relevant implementation path and conventions; a cross-cutting or architecturally significant change warrants reading more broadly before you're confident.\n- Follow import chains only as far as they inform the change — trace what shapes the requirement, not every transitive reference.\n- Check test files to understand expected behaviors and testing patterns\n- Review configuration and metadata files if relevant\n- Search for TODO comments, known limitations, or related existing issues in the code\n\n### Consuming a Comp→Codebase Map (optional upstream input)\n\n**Check applicability first, before anything else in this section.** You may be handed a precomputed comp→codebase map (`comp-analysis.json`) produced by an **upstream orchestrating vision step** (the recipe's `comp-analysis.md` step, or the `/write-ticket` Stage 0.5 pre-draft pass). If no `comp-analysis.json` path was supplied, or the map has `applicable: false` (a backend-only request, a no-comp request, a non-design request, or a degraded/unreadable comp): **skip this entire section — ignore the artifact entirely**. Do NOT read the map further, do NOT apply the fidelity taxonomy below, and do NOT mention comp analysis, design comps, visual fidelity, map artifacts, or image-derived requirements at all — unless the user's original request independently requires those materials. A backend-only or no-comp ticket must read exactly as it would with no map present.\n\nOnly when a map was supplied AND has `applicable: true` does the rest of this section apply. That upstream step is a frontier vision model that already opened the design comp, classified it, and mapped its regions to concrete existing code. You remain **text-only**: you **must not open images**, embed images, download attachments, or perform any vision analysis yourself — you only read the JSON map as focused research input.\n\n- Read it in full before drafting and treat it as authoritative, focused research. Before citing any file the map names (component, template, token, or route), **inspect/read that concrete file yourself** — the standing rule that you do not make up file paths, function names, components, tokens, or routes still applies to map-sourced references.\n- **Class-appropriate depth** (mirror the map's `fidelity_classification.class`, the same shared taxonomy the downstream final plan reviewer uses):\n - `full comp` (confident) → you may write exact component/template/token/route Requirements.\n - `wireframe` → write layout/structure Requirements only; defer color, type, spacing, and component polish to the repo design system, not the wireframe.\n - `annotated-screenshot-of-existing-UI` → write delta-only Requirements (change only the annotated region; preserve the rest).\n - `unknown` / low confidence → use the design-system floor rather than pixel-exact Requirements.\n\n Hard rule: exact/strict mapping depth is used ONLY for a confidently-classified full comp. Fail toward the design system, never toward reproducing an ambiguous image.\n\n## Phase 2: Write the Jira Ticket\n\nAfter completing research, create a new markdown file with the ticket. Use the naming convention `tickets/TICKET-<short-descriptive-name>.md`. If the `tickets/` directory does not exist, create it.\n\n### Ticket Structure\n\nThe markdown file MUST contain exactly these sections:\n\n```markdown\n# [Concise Title Describing the Task]\n\n## Summary\n\n[2-4 sentences describing what this task is about, why it matters, and the high-level approach. Be specific — reference the actual system components involved.]\n\n## Requirements\n\n[Numbered list of specific, actionable requirements. Each requirement should be a clear unit of work.]\n\n1. **[Requirement Title]**: [Description of what needs to be done.]\n - *Relevant code*: `path/to/file.js` — `functionName()` [brief note on how this code relates]\n - *Relevant code*: `path/to/other/file.js` — [brief note]\n\n2. **[Requirement Title]**: [Description]\n - *Relevant code*: ...\n\n[Continue for all requirements]\n\n## Acceptance Criteria\n\n[Bullet list. Each criterion is a testable, verifiable condition.]\n\n- [Specific, testable criterion]\n- [Another criterion]\n- [Continue as needed]\n\n## Materials & Access\n\n[Trailing audit-trail section — always the LAST section of the draft. Inventory every material the ticket references, grouped by source. Use monospace backticks for file paths and other technical provenance. Redact any embedded secrets.]\n\n### Planning Assets\n\n[Only files NOT tracked in version control. These inform PLAN GENERATION — the planner reads them as context but the implementing agent does not need to fetch or place them on disk. Do NOT list version-controlled code or in-repo docs here — those are already in the repo and are cited inline as *Relevant code*.]\n\n- `path/to/local/spec.md` (`text/markdown`) — original destination: `docs/specs/research.md` — [what it is; not in version control; informs plan generation]\n\n### Downloadable Assets\n\n[Only files NOT tracked in version control (or an existing Jira `attachment_id` reference). These must be FETCHED/PLACED by the implementing agent at implementation time — the planner does not need their content. Record the original repository-relative destination path so the executor knows where to save the file.]\n\n- `path/to/local/fixture.json` (`application/json`) — original destination: `tests/fixtures/data.json` — [what it is; will be gathered and attached post-create; fetch and save to the destination path at implementation time]\n\n### Planning & Downloadable Assets\n\n[Only files NOT tracked in version control (or an existing Jira `attachment_id` reference). These serve BOTH purposes: the planner reads them as context AND the implementing agent must fetch/place them on disk. A **local design/UI comp image** — a reachable local file whose extension maps to an allowlisted image MIME type (`image/png`, `image/jpeg`, `image/webp`, `image/gif`) — is the most common case and remains eligible for the allowlisted binary-upload path and visual-fidelity review; record its original destination path so the implementing agent can verify fidelity against the same location it saves the file to. A comp that already exists as a Jira attachment on this or another ticket (not a local file) is recorded the same way using its `attachment_id`, filename, and MIME type instead of a local source path, with a note that the executor should use the Jira attachment download capability to save it to the destination `file_path`.\n\n- `designs/checkout-comp.png` (`image/png`) — original destination: `designs/checkout-comp.png` — design/UI comp; will be gathered and attached post-create; verify visual fidelity against this destination at implementation time.\n- `attachment_id: 10421` — `checkout-comp.png` (`image/png`) — original destination: `designs/checkout-comp.png` — design/UI comp already attached to Jira; fetch via the Jira attachment download capability into a worktree `file_path` at implementation time.\n\n### External/Auth-Gated Links\n\n- [Name or purpose] — `https://example.com/...` (record-only; external/auth-gated)\n\n### Binary/Image Materials (Record-Only)\n\n- `path/to/screenshot.png` — [sanitized location/access note; not attached]\n```\n\n### Writing Guidelines\n\n**Summary**:\n- Be concrete, not abstract. Name the actual components, cartridges, or subsystems involved.\n- State the \"why\" — what problem does this solve or what value does it add?\n- Mention the general technical approach if it's clear from the research.\n\n**Requirements**:\n- Each requirement should represent a logical unit of work\n- Order requirements in a logical implementation sequence when possible\n- ALWAYS cite relevant existing files and functions when they exist. Use exact file paths relative to the project root.\n- Explain HOW the existing code relates: \"extend this function\", \"follow this pattern\", \"reuse this helper\", \"modify this configuration\"\n- If a requirement involves creating new files, suggest where they should live based on existing project structure conventions\n- Be specific about what needs to change vs. what needs to be created new\n- Include requirements for tests, documentation, and configuration/metadata changes if applicable\n- **Design/UI Requirements (when an `applicable: true` comp→codebase map is provided)**: cite the mapped components, Jinja2 templates, CSS/SCSS tokens or design-system styles, and routes from the map with concrete phrasing — \"reuse `X` component\", \"extend template `Y`\", \"use token/style `Z`\", \"wire route `R`\" — so the ticket expresses HOW to realize the comp in code that already exists, not generic \"match the comp\" prose. Keep the depth class-appropriate per the map's classification.\n\n**Acceptance Criteria**:\n- Every criterion must be independently verifiable\n- Cover functional requirements, edge cases, testing, and non-functional requirements\n- Include criteria for backwards compatibility if relevant\n- Include criteria for test coverage\n- Use plain `-` bullets (Jira's ADF has no native checkbox, so `- [ ]` renders as literal text)\n- **Design/UI tickets**: whenever the ticket references or attaches a design comp (mockup, wireframe, or design/UI reference), ALWAYS include an explicit **visual-fidelity acceptance criterion**. Word it so the implementing agent must fetch/open the comp by its `attachment_id` or path and verify **class-appropriate** visual fidelity against it — strict pixel/visual match only for a full comp; layout-only for a wireframe; current-state-plus-delta for an annotated screenshot; the repo design-system floor otherwise. Do not settle for inert \"record-only\" prose that the implementing agent cannot act on. When an `applicable: true` comp→codebase map (`comp-analysis.json`) is available, the criterion should reference BOTH the concrete comp source AND the comp→codebase map, so the implementing agent verifies fidelity against the same components/tokens the Requirements already cite rather than a bare \"match the comp\".\n\n**Materials Completeness Inventory**:\n- **Fast path — no external materials referenced.** Check this first, before any classification work below. When the ticket references nothing beyond version-controlled code and in-repository documentation (no local files outside the repo, no untracked/gitignored files, no URLs, no attachments, no images), write the `## Materials & Access` section as exactly:\n ```markdown\n ## Materials & Access\n\n No external materials are referenced; all relevant code and documentation is version-controlled.\n ```\n Then skip the rest of this section entirely — no VCS probing (`git ls-files`), no source classification, no phase assignment, no MIME handling, no destination mapping, and none of the remaining inventory taxonomy below applies. This is an early exit for the common case, not a deletion: every rule below stays intact and reachable for a ticket that does reference materials.\n- After the draft is written, INVENTORY every material the ticket references: local file paths, URLs/links, named docs/designs, screenshots, and specs. This pass only INVENTORIES and RECORDS — it does NOT attach anything. The actual attachment of phase-eligible local materials happens post-create (after the Jira `ticket_key` exists) via a separate gather-and-attach step.\n- Classify each material by source using a scheme-based rule (no network probe required):\n - **Local filesystem paths** named in the ticket body are the only **low-risk** materials — but ONLY when the file is **not tracked in version control**. Before listing a local file as attachable, determine its VCS status by running `git ls-files --error-unmatch -- <path>` (exit code `0` means the file is tracked). A version-controlled file is **already available in the repository** — source code, in-repo docs, configs, and any other committed file — and **MUST NOT be attached**; it is cited inline as *Relevant code* in Requirements instead of being re-uploaded. Only local files that are **not tracked in version control** (external technical docs/specs, design comps, or generated artifacts a reviewer dropped locally — including files outside any repo, untracked, or gitignored) are eligible to be gathered and attached post-create. **Never upload code** or any file already in version control.\n - Every **`http(s)` URI is external/auth-gated** — regardless of whether the user explicitly linked it (an explicitly-linked Confluence or Google Doc URL is still external/auth-gated) — and is **record-only** here.\n - **Binary/image materials** (ordinary screenshots, PDFs, and unrelated binaries) are **record-only** — document them with sanitized location/access notes; do NOT attempt to attach them. This record-only rule does not apply to local design/UI comp images (see next bullet).\n - **Assign each phase-eligible local material (or existing Jira attachment comp reference) an explicit phase** — *Planning Assets* (informs plan generation only), *Downloadable Assets* (the implementing agent must fetch/place it on disk; the planner does not need its content), or *Planning & Downloadable Assets* (both). Base the phase on how the material will actually be used: a spec, research note, or non-actionable reference is planning-only; a fixture, data file, or non-comp binary the implementer must save to a specific path is downloadable-only; a **design/UI comp** (a mockup, wireframe, or design reference for a design/UI ticket) is virtually always *Planning & Downloadable Assets* since the planner should see it AND the implementing agent must fetch it for visual-fidelity verification. When the correct phase is genuinely unclear, default the material to **Planning Assets** and append a sanitized inline note reading `Phase ambiguous; defaulted to planning` — never silently drop an ambiguous material.\n - For every phase-bearing bullet, retain: the local source path (or `attachment_id` when the material already exists as a Jira attachment rather than a local file), the material type or MIME detail, and an **original repository-relative destination path** — where the implementing agent should save the file once fetched. Determine the destination from where the ticket body or research indicates the file belongs in the repo (e.g. a fixture referenced as living at `tests/fixtures/data.json`, a comp destined for `designs/checkout-comp.png`). If no safe repository-relative destination can be established, still record the material under its chosen phase heading and append a non-blocking note that the destination is unknown — never drop the material for lacking a destination.\n - A **local design/UI comp image** — a reachable local file whose executable local path resolves and whose extension maps to an allowlisted image MIME type (`image/png`, `image/jpeg`, `image/webp`, `image/gif`) — is recorded under *Planning & Downloadable Assets* (or another phase heading if genuinely single-purpose) and remains eligible for post-create attachment through the allowlisted binary upload path (the gather-and-attach step uploads it, not just references it), preserving the existing visual-fidelity review behavior. A comp that is already a Jira attachment (this or another ticket) is recorded the same way using its `attachment_id`, filename, and MIME type instead of a local source path, plus a note that the executor should use the Jira attachment download capability to save it to the recorded destination `file_path`. An external/auth-gated design link remains fetchable/reference material for implementation-time download, not a local re-upload target — it stays under *External/Auth-Gated Links*, unphased.\n - **Comp→codebase map** (`comp-analysis.json`): when the final ticket references the map, inventory it as a **planning-only local text file** under *Planning Assets* (it is a low-risk local JSON text artifact informing the plan, not something the implementer fetches separately). The version-control gate still applies: attach it only when it is **not tracked in version control** (a generated artifact normally is not); if it happens to be committed, it is already available in the repo and is not re-uploaded.\n- Write the trailing `## Materials & Access` section (the LAST section of the draft) grouping items under the sub-headings *Planning Assets*, *Downloadable Assets*, *Planning & Downloadable Assets* (each only when a material of that phase exists), *External/Auth-Gated Links*, and *Binary/Image Materials (Record-Only)*, using bulleted lists. Use monospace formatting (backticks) for technical provenance such as file paths, attachment IDs, and destination paths. *External/Auth-Gated Links* and *Binary/Image Materials (Record-Only)* are never phase-tagged and stay behaviorally unchanged.\n- **Redact secrets before writing anything**: before writing any URL or access note, sanitize and redact embedded credentials, SAS tokens, API keys, and basic-auth secrets using a high-visibility placeholder such as `[REDACTED_TOKEN]`. A location/access note must NEVER expose a plaintext secret.\n\n### Regression Completeness Pass (Gated)\n\nAfter the draft (including its `## Materials & Access` section) is written, run this pass. It is a non-blocking, **warn-not-halt** completeness check — it never blocks or fails ticket creation, and it never modifies the Requirements or Acceptance Criteria text directly.\n\n1. **Check the caller-provided gate first — you must NOT resolve it yourself.** The invoking caller (the `/write-ticket` command's Stage 0, or the `/idea-to-ticket` draft-and-critique instruction's setup) resolves the per-repo `enable_regression_checks` setting once, before invoking you, and states the result explicitly in this prompt as `enable_regression_checks: true` or `enable_regression_checks: false`. You must never call the `config_field` MCP tool to look this value up yourself — the caller has already resolved it, and re-checking it here would be a redundant MCP call whose result cannot change the outcome. If the prompt you were given does not state `enable_regression_checks: true` exactly — it is missing, `false`, or any other/malformed value — **skip this entire pass** — the draft is produced exactly as it would be without this section (byte-for-byte unchanged). The recommended default for this flag is OFF (unset) for safe rollout; only proceed past this step when the caller explicitly passed `enable_regression_checks: true`.\n\n2. **Derive the touched-symbol set.** From the draft's Requirements and *Relevant code* citations (or, if the ticket references an existing diff/PR, that diff/PR), extract the specific function/class/symbol names the proposed change touches.\n\n3. **Run the deterministic core.** Execute:\n ```bash\n npx -y @bridge_gpt/mcp-server regression-check --mode lightweight --json --symbols <derived,symbol,names>\n ```\n This is the same subcommand the standalone `regression-reviewer` agent and `regression-check` command use — do not hand-roll your own `ast-grep`/`ripgrep` discovery.\n\n4. **Fail-open on a degraded or failed run.** If the command errors, or `summary.degraded_flags` is non-empty, record that the pass ran degraded (or could not run) and proceed — the draft is still produced. Never halt ticket creation because this subcommand was unavailable.\n\n5. **Cross-check against Requirements + Acceptance Criteria.** Parse the JSON `findings` array (`symbol`, `call_sites.by_file`, `broad_mentions`). For each symbol, compare its real call-sites and broad mentions against what the draft's Requirements and Acceptance Criteria already cover. Flag any affected caller, migration, or contract (a file with a real call-site or an uninspected broad mention) that the criteria do NOT mention.\n\n6. **Record the flags — never rewrite Requirements/Acceptance Criteria.** Append a `[WARNING]` block immediately before the `## Materials & Access` section, listing each flagged item:\n ```markdown\n ## Regression Completeness Notes\n\n [WARNING] The following systems were not explicitly addressed in the Requirements or Acceptance Criteria above:\n - `path/to/affected_caller.py` — calls `changed_symbol` (N real call-sites); not mentioned in Requirements\n - `path/to/config.yml` — broad mention of `changed_symbol`; verify this reference is unaffected\n\n Degraded: [list summary.degraded_flags, or \"none — full structural analysis ran\"]\n ```\n If no flags were raised and the run was not degraded, write a single line instead: `Regression completeness pass: no unaddressed systems found.` If the run was degraded with zero findings either way, state that explicitly rather than implying a clean pass.\n\n### Output Formatting (Jira upload)\n\nThe ticket is uploaded to Jira, which converts the Markdown to Atlassian Document Format (ADF) and hard-caps the description at **32,767 characters**. Keep the output clean and within budget:\n\n- **Length**: aim for under ~30,000 characters. If the scope genuinely needs more, split into a parent ticket plus sub-tickets rather than one oversized ticket.\n- **Acceptance Criteria**: plain `-` bullets, not `- [ ]` (ADF has no native checkbox).\n- **No images**: do not embed images or use relative image links. This \"No images\" rule applies strictly to inline images in the description body; it does NOT restrict the attachments produced by the Materials Completeness Inventory / gather-and-attach pass, nor does it forbid recording a fetchable design/UI comp reference (its `attachment_id` or path).\n- **No empty headings**: every heading must have text on its line.\n- **Placeholders**: prefer `{placeholder}` over `<placeholder>`.\n\n## Quality Standards\n\n- **No vague language**: Replace \"should handle errors properly\" with \"should catch LLM provider timeouts and return a normalized error response with errorType 'TimeoutError'\"\n- **No assumptions without evidence**: Only reference code you actually read during research. If you're unsure about something, say so explicitly in the ticket.\n- **Appropriate scope**: The ticket should represent a coherent, deliverable unit of work. If the problem is too large, note that it may need to be broken into sub-tasks, but still write the parent ticket.\n- **Developer empathy**: Write as if the developer picking this up has general project knowledge but hasn't recently worked on this specific area. Give them enough context to get started quickly.\n\n## Important Reminders\n\n- Match the depth of the research phase to the scope of the change — do not abbreviate research a cross-cutting or ambiguous change genuinely needs, but a small, isolated change may stop once its relevant implementation path and conventions are understood.\n- Do NOT make up file paths or function names. Only reference code you have actually found and read.\n- DO create the markdown file — do not just output the content to the chat. Write it to disk.\n- If the project has specific conventions (from CLAUDE.md or similar), ensure your ticket's requirements align with those conventions.\n"
|
|
12
12
|
},
|
|
13
13
|
"refactor-reviewer": {
|
|
14
14
|
"frontmatter": {
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Pure Bridge API base-URL normalization and validation (BAPI-727).
|
|
3
|
+
*
|
|
4
|
+
* Extracted so the executor's credential resolution and the `mcp-invoke` shim can
|
|
5
|
+
* share ONE definition of "normalized base URL" without `mcp-invoke` importing
|
|
6
|
+
* executor runtime behavior (`executor/credentials.ts` pulls in the executor deps
|
|
7
|
+
* types and the credential store, neither of which the shim should depend on).
|
|
8
|
+
*
|
|
9
|
+
* Everything here is pure: no filesystem, no process, no network, no environment.
|
|
10
|
+
* Validation messages name the flag and the reason ONLY — never the supplied URL,
|
|
11
|
+
* which can carry embedded credentials in its userinfo component.
|
|
12
|
+
*/
|
|
13
|
+
/**
|
|
14
|
+
* Trim, strip every trailing slash, and treat an empty result as absent.
|
|
15
|
+
*
|
|
16
|
+
* This is the executor's long-standing normalization, moved verbatim so the value
|
|
17
|
+
* a worker registration carries is byte-identical to the one the executor itself
|
|
18
|
+
* uses for its HTTP calls.
|
|
19
|
+
*/
|
|
20
|
+
export function normalizeBaseUrlCandidate(raw) {
|
|
21
|
+
if (typeof raw !== "string")
|
|
22
|
+
return null;
|
|
23
|
+
const normalized = raw.trim().replace(/\/+$/, "");
|
|
24
|
+
return normalized.length > 0 ? normalized : null;
|
|
25
|
+
}
|
|
26
|
+
/** Fixed, secret-free explanation for each rejection reason. */
|
|
27
|
+
const REJECTION_TEXT = {
|
|
28
|
+
empty: "value is empty",
|
|
29
|
+
"not-absolute-http-url": "value is not an absolute URL",
|
|
30
|
+
"unsupported-scheme": "only http: and https: URLs are supported",
|
|
31
|
+
"missing-hostname": "URL has no hostname",
|
|
32
|
+
"embedded-credentials": "URL must not embed a username or password",
|
|
33
|
+
};
|
|
34
|
+
/**
|
|
35
|
+
* Human-readable rejection message for a flag. Interpolates only the flag name and
|
|
36
|
+
* a fixed reason — deliberately NOT the rejected value, so a URL containing
|
|
37
|
+
* `https://user:secret@host` can never reach an error string, usage text, or log.
|
|
38
|
+
*/
|
|
39
|
+
export function describeBaseUrlRejection(flag, reason) {
|
|
40
|
+
return `Invalid ${flag}: ${REJECTION_TEXT[reason]}`;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* Strictly validate a base URL supplied on a command line: it must be a non-empty,
|
|
44
|
+
* absolute `http:`/`https:` URL with a hostname and no embedded user information.
|
|
45
|
+
* The accepted value is returned normalized by
|
|
46
|
+
* {@link normalizeBaseUrlCandidate} so it matches the executor's own form.
|
|
47
|
+
*/
|
|
48
|
+
export function validateHttpBaseUrl(raw) {
|
|
49
|
+
if (typeof raw !== "string" || raw.trim().length === 0) {
|
|
50
|
+
return { ok: false, reason: "empty" };
|
|
51
|
+
}
|
|
52
|
+
let parsed;
|
|
53
|
+
try {
|
|
54
|
+
parsed = new URL(raw.trim());
|
|
55
|
+
}
|
|
56
|
+
catch {
|
|
57
|
+
// A relative value ("/api", "api.example.test/x") lands here: the WHATWG URL
|
|
58
|
+
// constructor requires an absolute URL when no base is supplied.
|
|
59
|
+
return { ok: false, reason: "not-absolute-http-url" };
|
|
60
|
+
}
|
|
61
|
+
if (parsed.protocol !== "http:" && parsed.protocol !== "https:") {
|
|
62
|
+
return { ok: false, reason: "unsupported-scheme" };
|
|
63
|
+
}
|
|
64
|
+
// Defensive: for http/https the WHATWG parser already rejects an empty
|
|
65
|
+
// authority above (`http://` throws), so this branch is not reachable through
|
|
66
|
+
// those schemes today. It is kept because "must have a hostname" is the real
|
|
67
|
+
// invariant, and relying on a parser implementation detail to enforce it would
|
|
68
|
+
// be fragile.
|
|
69
|
+
if (parsed.hostname.length === 0) {
|
|
70
|
+
return { ok: false, reason: "missing-hostname" };
|
|
71
|
+
}
|
|
72
|
+
if (parsed.username.length > 0 || parsed.password.length > 0) {
|
|
73
|
+
return { ok: false, reason: "embedded-credentials" };
|
|
74
|
+
}
|
|
75
|
+
const normalized = normalizeBaseUrlCandidate(raw);
|
|
76
|
+
if (normalized === null)
|
|
77
|
+
return { ok: false, reason: "empty" };
|
|
78
|
+
return { ok: true, baseUrl: normalized };
|
|
79
|
+
}
|
package/build/bridge-api-urls.js
CHANGED
|
@@ -9,6 +9,15 @@
|
|
|
9
9
|
*
|
|
10
10
|
* The base URL is supplied by the caller (never hardcoded here) and its
|
|
11
11
|
* trailing slashes are trimmed so no doubled slash is produced.
|
|
12
|
+
*
|
|
13
|
+
* The `/jira` segment is the Bridge API's TRANSPORT namespace — the router mount
|
|
14
|
+
* that serves these routes in BOTH ticket backend modes. It is not, and must not
|
|
15
|
+
* become, an agent-visible ticket link: a ticket's URL is whatever the server
|
|
16
|
+
* returns on the create/read response (`https://…` in Jira mode,
|
|
17
|
+
* `local://tickets/…` in local mode) and is passed through verbatim. Renaming
|
|
18
|
+
* this mount is explicitly out of scope (no renaming of Jira-shaped surfaces),
|
|
19
|
+
* and synthesizing a ticket URL from it would produce a link to an API route
|
|
20
|
+
* rather than to a ticket.
|
|
12
21
|
*/
|
|
13
22
|
/**
|
|
14
23
|
* Create the URL builders bound to `baseUrl`. Trailing slashes on the base are
|
|
@@ -25,6 +25,8 @@
|
|
|
25
25
|
*/
|
|
26
26
|
import { runPipeline, resumePipeline, peekPipelineRun } from "./pipeline-orchestrator.js";
|
|
27
27
|
import { toStringVariable, substituteChainValue } from "./chain-utils.js";
|
|
28
|
+
import { isValidTicketKey, validateTicketKeys } from "./ticket-key-utils.js";
|
|
29
|
+
import { isUnsupportedInLocalModeEnvelope, parseToolErrorEnvelope, } from "./tool-error-envelope.js";
|
|
28
30
|
const CHAIN_NAME = "full-automation";
|
|
29
31
|
const START_TICKETS_PIPELINE = "start-tickets";
|
|
30
32
|
// Display titles for preambles, keyed by child pipeline name.
|
|
@@ -166,13 +168,22 @@ function normalizeAutoApprove(value) {
|
|
|
166
168
|
return true;
|
|
167
169
|
return false;
|
|
168
170
|
}
|
|
169
|
-
const JIRA_KEY_EXACT = /^[A-Z][A-Z0-9]+-\d+$/;
|
|
170
171
|
/**
|
|
171
|
-
* Extract created
|
|
172
|
+
* Extract created ticket keys from a STRUCTURED payload (an object/array
|
|
172
173
|
* holding `created_ticket_keys` / `ticket_key` / etc.). Collects values from the
|
|
173
|
-
* preferred key fields in a fixed preference order, validates each against
|
|
174
|
-
* `
|
|
175
|
-
*
|
|
174
|
+
* preferred key fields in a fixed preference order, validates each against the
|
|
175
|
+
* canonical `TICKET_KEY_PATTERN`, and de-dupes in encounter order.
|
|
176
|
+
*
|
|
177
|
+
* BAPI-710: the validation used to run against a private `/^[A-Z][A-Z0-9]+-\d+$/`
|
|
178
|
+
* that rejected keys the server mints (`MY_PROJ-248`, `A-1`), and this helper
|
|
179
|
+
* DROPPED every non-match silently. Silent dropping is now impossible for the
|
|
180
|
+
* chain — {@link extractCreatedTicketPayload} rejects the whole payload and names
|
|
181
|
+
* every offending key. This flat helper still filters (its `string[]` contract
|
|
182
|
+
* has no failure channel), but it is a non-chain compatibility path only and the
|
|
183
|
+
* grammar it filters on is now the correct one.
|
|
184
|
+
*
|
|
185
|
+
* There is deliberately NO free-text regex fallback: pass the parsed
|
|
186
|
+
* upload-step payload (via
|
|
176
187
|
* `extractCreatedKeysFromCompletedChild`), never a whole pipeline transcript, so
|
|
177
188
|
* keys merely *mentioned* by an earlier step (e.g. duplicate-detection search
|
|
178
189
|
* hits) can never be mistaken for this run's creations. A string / no-field
|
|
@@ -226,7 +237,7 @@ export function extractCreatedTicketKeys(source) {
|
|
|
226
237
|
const ordered = [];
|
|
227
238
|
for (const key of preferredKeys) {
|
|
228
239
|
for (const candidate of buckets[key]) {
|
|
229
|
-
if (
|
|
240
|
+
if (isValidTicketKey(candidate))
|
|
230
241
|
ordered.push(candidate);
|
|
231
242
|
}
|
|
232
243
|
}
|
|
@@ -278,7 +289,7 @@ function tryParseJson(raw) {
|
|
|
278
289
|
}
|
|
279
290
|
}
|
|
280
291
|
function isValidJiraKey(value) {
|
|
281
|
-
return
|
|
292
|
+
return isValidTicketKey(value);
|
|
282
293
|
}
|
|
283
294
|
/**
|
|
284
295
|
* Normalize a PARSED, STRUCTURED upload payload into a {@link CreatedTicketPayload}.
|
|
@@ -316,7 +327,7 @@ export function extractCreatedTicketPayload(source) {
|
|
|
316
327
|
if (!isValidJiraKey(parent)) {
|
|
317
328
|
return {
|
|
318
329
|
ok: false,
|
|
319
|
-
error: `Epic payload "epic_parent_key" must be a valid
|
|
330
|
+
error: `Epic payload "epic_parent_key" must be a valid ticket key; got ${JSON.stringify(parent)}.`,
|
|
320
331
|
};
|
|
321
332
|
}
|
|
322
333
|
const rawChildren = obj.child_ticket_keys;
|
|
@@ -327,14 +338,20 @@ export function extractCreatedTicketPayload(source) {
|
|
|
327
338
|
"implementable child ticket key.",
|
|
328
339
|
};
|
|
329
340
|
}
|
|
341
|
+
// Validate the WHOLE child list first and report every rejected key in one
|
|
342
|
+
// error (BAPI-710). Failing on the first bad key made a caller fix its
|
|
343
|
+
// payload one key per round trip, and the previous grammar rejected keys the
|
|
344
|
+
// server legitimately mints — so a mixed-validity list must fail atomically,
|
|
345
|
+
// never advance with the valid subset.
|
|
346
|
+
const childKeyCheck = validateTicketKeys(rawChildren, "child_ticket_keys entry");
|
|
347
|
+
if (!childKeyCheck.ok) {
|
|
348
|
+
return {
|
|
349
|
+
ok: false,
|
|
350
|
+
error: `Epic payload "child_ticket_keys" must contain only valid implementable ticket keys. ${childKeyCheck.message}`,
|
|
351
|
+
};
|
|
352
|
+
}
|
|
330
353
|
const children = [];
|
|
331
354
|
for (const c of rawChildren) {
|
|
332
|
-
if (!isValidJiraKey(c)) {
|
|
333
|
-
return {
|
|
334
|
-
ok: false,
|
|
335
|
-
error: `Epic payload "child_ticket_keys" must contain only valid implementable Jira keys; got ${JSON.stringify(c)}.`,
|
|
336
|
-
};
|
|
337
|
-
}
|
|
338
355
|
if (c === parent) {
|
|
339
356
|
return {
|
|
340
357
|
ok: false,
|
|
@@ -361,7 +378,7 @@ export function extractCreatedTicketPayload(source) {
|
|
|
361
378
|
return {
|
|
362
379
|
ok: false,
|
|
363
380
|
error: 'Single-ticket payload "created_ticket_keys" must contain exactly ' +
|
|
364
|
-
"one valid implementable
|
|
381
|
+
"one valid implementable ticket key. A multi-key list is malformed " +
|
|
365
382
|
'(the legacy "first key is the Epic parent" convention is not accepted).',
|
|
366
383
|
};
|
|
367
384
|
}
|
|
@@ -431,6 +448,36 @@ function failedEnvelopeMentions(env, token) {
|
|
|
431
448
|
}
|
|
432
449
|
return false;
|
|
433
450
|
}
|
|
451
|
+
/**
|
|
452
|
+
* Find a recognized ``UNSUPPORTED_IN_LOCAL_MODE`` refusal anywhere in a child
|
|
453
|
+
* pipeline envelope (BAPI-710).
|
|
454
|
+
*
|
|
455
|
+
* Scans the top-level halt error and each step's ``error`` / string ``result``,
|
|
456
|
+
* matching only the exact ``(error, status)`` pair via the strict parser — never
|
|
457
|
+
* a substring of prose, so an echoed input or a message that merely mentions the
|
|
458
|
+
* marker cannot terminate a chain.
|
|
459
|
+
*
|
|
460
|
+
* A ``completed`` envelope is scanned too, not just a ``failed`` one: a
|
|
461
|
+
* ``warn_and_continue`` step in an older persisted run can have swallowed the
|
|
462
|
+
* refusal into a completed envelope, and treating that as success is exactly the
|
|
463
|
+
* partial-success outcome this check exists to prevent.
|
|
464
|
+
*/
|
|
465
|
+
function findUnsupportedLocalModeRefusal(env) {
|
|
466
|
+
const topLevel = parseToolErrorEnvelope(env.error);
|
|
467
|
+
if (isUnsupportedInLocalModeEnvelope(topLevel))
|
|
468
|
+
return topLevel;
|
|
469
|
+
const results = env.results;
|
|
470
|
+
if (!Array.isArray(results))
|
|
471
|
+
return null;
|
|
472
|
+
for (const step of results) {
|
|
473
|
+
for (const candidate of [step?.error, step?.result]) {
|
|
474
|
+
const parsed = parseToolErrorEnvelope(candidate);
|
|
475
|
+
if (isUnsupportedInLocalModeEnvelope(parsed))
|
|
476
|
+
return parsed;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
return null;
|
|
480
|
+
}
|
|
434
481
|
/**
|
|
435
482
|
* Heuristic, no-LLM one-line stage summary. idea-to-ticket passes a structured
|
|
436
483
|
* {@link CreatedTicketPayload} so the summary distinguishes the Epic parent from
|
|
@@ -782,6 +829,37 @@ async function handleChildPipelineEnvelope(persistence, recipe, row, childEnv, o
|
|
|
782
829
|
}),
|
|
783
830
|
};
|
|
784
831
|
}
|
|
832
|
+
// BAPI-710 terminal gate. Runs BEFORE the failed-mapping branch, before the
|
|
833
|
+
// fan-out advance, and before the single-child finalize — i.e. before review
|
|
834
|
+
// fan-out, worktree preparation, or any start-tickets command can be emitted.
|
|
835
|
+
// A backend that cannot perform the operation will not start being able to on
|
|
836
|
+
// the next stage, so continuing would only produce a partial success that
|
|
837
|
+
// looks like a real one.
|
|
838
|
+
const refusal = findUnsupportedLocalModeRefusal(childEnv);
|
|
839
|
+
if (refusal) {
|
|
840
|
+
const stages = cloneStages(row.stages);
|
|
841
|
+
if (stages[idx])
|
|
842
|
+
stages[idx].status = "failed";
|
|
843
|
+
try {
|
|
844
|
+
await persistence.patchRun(row.chain_run_id, { stages, status: "failed" });
|
|
845
|
+
}
|
|
846
|
+
catch {
|
|
847
|
+
// best-effort — the terminal failure is what matters
|
|
848
|
+
}
|
|
849
|
+
return {
|
|
850
|
+
kind: "fail",
|
|
851
|
+
envelope: {
|
|
852
|
+
...failedEnvelope("TOOL_ERROR", refusal.message, {
|
|
853
|
+
chain_run_id: row.chain_run_id,
|
|
854
|
+
chain_stage: stageRecipe.pipeline_name,
|
|
855
|
+
chain_step: idx + 1,
|
|
856
|
+
chain_total: total,
|
|
857
|
+
}),
|
|
858
|
+
backend_error: refusal.error,
|
|
859
|
+
...(refusal.supported_in ? { supported_in: refusal.supported_in } : {}),
|
|
860
|
+
},
|
|
861
|
+
};
|
|
862
|
+
}
|
|
785
863
|
if (childEnv.status === "failed") {
|
|
786
864
|
// Stage 0 vagueness or no-keys produced => VALIDATION. Anchor the sentinel
|
|
787
865
|
// check to the failure-text fields (the halt error + per-step error/result
|