Skip to content

CI fix: sync issue_write body warning across legacy/ff variants#1

Open
advancedresearcharray wants to merge 13 commits into
jluocsa:fix/issue_write-body-description-2410from
advancedresearcharray:fix/issue_write-body-description-2410
Open

CI fix: sync issue_write body warning across legacy/ff variants#1
advancedresearcharray wants to merge 13 commits into
jluocsa:fix/issue_write-body-description-2410from
advancedresearcharray:fix/issue_write-body-description-2410

Conversation

@advancedresearcharray
Copy link
Copy Markdown

Automated CI fix from work queue for github#2443.

Fixes toolsnap mismatch that would fail Test_LegacyIssueWrite_Definition and Test_UpdateIssue, rebases onto current main.

Please merge to update PR github#2443.

njoppi2 and others added 13 commits May 31, 2026 11:11
mcpcurl was sending tools/list and tools/call requests without first
performing the MCP initialize handshake, causing the server to silently
reject all requests and discover zero tools.

Before:
  $ mcpcurl --stdio-server-cmd "github-mcp-server stdio" tools --help
  (no tools listed)

After:
  $ mcpcurl --stdio-server-cmd "github-mcp-server stdio" tools --help
  Available Commands:
    add_comment_to_pending_review  ...
    add_issue_comment              ...
    create_branch                  ...
readJSONRPCResponse now checks for an "error" field in responses
and returns a descriptive error instead of silently passing it through.
Per @SamMorrowDrums review — replace the manual cleanup() calls before
each error return with a single defer right after cmd.Start(). Same
behaviour, less code.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…#2589)

* Skip MCP App form when issue/PR write carries non-form params

When MCP Apps are enabled and the client supports UI, issue_write and
create_pull_request route the call to an interactive form. The form only
collects a subset of fields and rebuilds the submit payload from scratch,
so any parameter it cannot represent was silently dropped — e.g. labels,
assignees, milestone, type, state and issue_fields (priority) for
issue_write.

Skip the form and execute directly whenever the call carries a parameter
outside the set the form collects and re-sends. This generalizes the
previous state-only guard and is robust to future parameter additions
(an unrecognized param now bypasses the form rather than being lost).

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Forward original tool params on MCP App form submit

The issue-write and pr-write forms rebuilt their submit payload from
scratch, so any parameter the form does not render was dropped on submit.
Spread the original toolInput first and override only the edited fields,
so unsupported params (e.g. issue_fields, labels, state) are preserved
when the user submits the form.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Replace the get_commit tool's two boolean flags (include_diff,
include_patch) with a single detail enum: none / stats / full_patch.

Why:
- The two-boolean shape had an awkward dependency
  ("include_patch only applies when include_diff is true") and an
  impossible state (include_patch=true, include_diff=false) that was
  silently ignored.
- A single discriminator collapses three meaningful response shapes
  into one orthogonal choice, makes the most expensive option
  ("full_patch") self-describing, and eliminates the "diff vs patch"
  naming confusion.

Behavior:
- Default ("stats") matches the previous default
  (include_diff=true, include_patch=false): per-file metadata with no
  patch text. Existing callers using defaults are unaffected.
- "none" omits Stats and Files entirely (was include_diff=false).
- "full_patch" is the new opt-in level that adds the unified diff to
  each MinimalCommitFile.

Breaking change: callers that previously passed include_diff or
include_patch must switch to detail. Callers using the defaults are
unaffected.

Changes:
- Added Patch field to MinimalCommitFile.
- Added commitDetail type, parseCommitDetail, and migrated
  convertToMinimalCommit to take a commitDetail.
- Updated get_commit schema, list_commits caller (commitDetailNone),
  unit tests, toolsnap, and README.

Co-authored-by: Sam Morrow <sammorrowdrums@github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…ithub#2593)

* Open created issue/PR link via host open-link capability

The success views for issue-write and pr-write rendered a plain anchor
to the created/updated issue or PR. MCP Apps run in a sandboxed iframe
where target="_blank" navigation may be blocked, so clicking the link
did nothing in some hosts.

Route the click through the host's ui/open-link capability (already
exposed by useMcpApp as openLink), which asks the host to open the URL
in the user's browser. The hook now also falls back to window.open when
the host denies the request, in addition to the existing no-app
fallback. The href is retained so right-click/copy and native fallback
still work.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* Prevent default anchor navigation before URL check

When the success-view link URL was unavailable ("#"), the click handler
returned before calling e.preventDefault(), so the anchor's default
target="_blank" navigation still ran and could open a stray blank tab.
Call preventDefault() first, then no-op when the URL is unavailable.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* fix: Empty assignees array should clear assignees
Add an optional confidence integer parameter (0–100) to update_issue_type,
update_issue_labels, and set_issue_fields MCP tools. The confidence score
is passed through to the REST/GraphQL API on mutation calls.

- Rename structs to WithIntent (labelWithIntent, issueTypeWithIntent)
- Add confidence schema property (integer, min 0, max 100) with prompt
  guidance describing what different confidence levels represent
- Update tool descriptions to encourage including confidence scores
- Pass confidence in the API request body alongside rationale/suggest

Closes github/plan-track-agentic-toolkit#219

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
The `body` parameter on `issue_write` (method='update') replaces the
entire issue body, matching REST API semantics. However, LLM agents
frequently misinterpret `body` as "add a note about this issue" and
end up silently destroying the original issue description (github#2410).

Update the parameter description to make the replace-not-append
semantics explicit and to point users at `add_issue_comment` for the
common "leave a note" use case.

Updates the issue_write toolsnap and README accordingly.

Fixes github#2410.
…tting

Address reviewer feedback on the issue_write body warning:
- Use backticks around method="update" and add_issue_comment so they render
  as inline code in the README rather than as plain prose.
- Tighten the sentence (drop the redundant 'rather than appending to it'
  and 'without modifying the body').
- Keep REPLACES as the single emphatic marker, which is the entire point
  of github#2410 (LLM agents silently destroying issue bodies on update).

Regenerates pkg/github/__toolsnaps__/issue_write.snap and the auto-generated
README / docs surfaces via script/generate-docs.
The prior change updated IssueWrite (feature-flag-enabled) and the
canonical issue_write.snap, but left LegacyIssueWrite with the old
description and the ff snap stale. That mismatch fails
Test_LegacyIssueWrite_Definition and Test_UpdateIssue when CI runs.

Apply the same body description to LegacyIssueWrite and regenerate the
issue_write_ff_remote_mcp_issue_fields toolsnap. Rebased onto current
main.

Co-authored-by: Cursor <cursoragent@cursor.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

9 participants