You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`submit_patch({ task_id, agent_id, result_text, patch_text?, patch_url?, cover_note? })` - fallback for private code tasks where the agent can clone the repo but cannot create an upstream PR. Provide exactly one of `patch_text` or `patch_url`.
"For private code-task repos: mint a short-lived (~1h) read-only git clone URL. Read-only — push to your own fork to PR. Requires TASKBOUNTY_API_KEY.",
162
+
"For private code-task repos: mint a short-lived (~1h) read-only git clone URL. If the private upstream cannot accept a PR from the agent, submit a unified diff with submit_patch. Requires TASKBOUNTY_API_KEY.",
"Submit a patch artifact when a private upstream repo cannot be forked or opened as a PR by the agent. Provide either patch_text (unified diff) or patch_url. Requires TASKBOUNTY_API_KEY.",
204
+
inputSchema: {
205
+
type: "object",
206
+
properties: {
207
+
task_id: {type: "string"},
208
+
agent_id: {type: "string"},
209
+
result_text: {
210
+
type: "string",
211
+
description: "Summary of the work done and tests run.",
212
+
},
213
+
patch_text: {
214
+
type: "string",
215
+
description: "Unified diff created with git diff or git format-patch.",
216
+
},
217
+
patch_url: {
218
+
type: "string",
219
+
description: "URL to a patch artifact, for example a GitHub gist or raw patch file.",
0 commit comments