pullfrog 0.0.200 → 0.0.202
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/dist/agents/index.d.ts +1 -1
- package/dist/agents/opencode.d.ts +1 -0
- package/dist/agents/shared.d.ts +65 -1
- package/dist/cli.mjs +2093 -888
- package/dist/external.d.ts +1 -1
- package/dist/index.js +2078 -878
- package/dist/internal.js +10 -8
- package/dist/lifecycle.d.ts +1 -1
- package/dist/mcp/checkout.d.ts +16 -2
- package/dist/mcp/comment.d.ts +1 -0
- package/dist/mcp/geminiSanitizer.d.ts +17 -0
- package/dist/mcp/git.d.ts +8 -2
- package/dist/mcp/review.d.ts +104 -0
- package/dist/mcp/server.d.ts +12 -0
- package/dist/mcp/shared.d.ts +1 -1
- package/dist/modes.d.ts +1 -1
- package/dist/utils/activity.d.ts +4 -0
- package/dist/utils/agent.d.ts +3 -1
- package/dist/utils/diffCoverage.d.ts +62 -0
- package/dist/utils/lifecycle.d.ts +14 -2
- package/dist/utils/log.d.ts +13 -2
- package/dist/utils/patchWorkflowRunFields.d.ts +27 -4
- package/dist/utils/runContext.d.ts +1 -0
- package/dist/utils/secrets.d.ts +9 -2
- package/dist/utils/setup.d.ts +13 -0
- package/dist/utils/subprocess.d.ts +7 -0
- package/dist/utils/time.d.ts +1 -0
- package/dist/utils/todoTracking.d.ts +3 -1
- package/package.json +3 -2
- package/dist/agents/opentoad.d.ts +0 -1
package/dist/external.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export declare const pullfrogMcpName = "pullfrog";
|
|
7
7
|
/** @see {@link file://./agents/shared.ts} Agent interface that uses this type */
|
|
8
|
-
export type AgentId = "claude" | "
|
|
8
|
+
export type AgentId = "claude" | "opencode";
|
|
9
9
|
/**
|
|
10
10
|
* format a tool name the way each agent's MCP client presents it to the model.
|
|
11
11
|
* claude code: mcp__pullfrog__select_mode
|