show fallback indicator in model dropdown, move agent logs to main, bump to 0.0.191

Made-with: Cursor
This commit is contained in:
Colin McDonnell
2026-04-03 19:00:52 +00:00
committed by pullfrog[bot]
parent 45fb07b34f
commit d525fc21be
6 changed files with 13 additions and 13 deletions
+5 -5
View File
@@ -144706,7 +144706,7 @@ var import_semver = __toESM(require_semver2(), 1);
// package.json
var package_default = {
name: "@pullfrog/pullfrog",
version: "0.0.190",
version: "0.0.191",
type: "module",
files: [
"index.js",
@@ -149171,10 +149171,6 @@ var agent = (input) => {
return {
...input,
run: async (ctx) => {
if (ctx.payload.model) log.info(`\xBB model: ${ctx.payload.model}`);
if (ctx.payload.timeout) log.info(`\xBB timeout: ${ctx.payload.timeout}`);
log.info(`\xBB push: ${ctx.payload.push}`);
log.info(`\xBB shell: ${ctx.payload.shell}`);
log.debug(`\xBB payload: ${JSON.stringify(ctx.payload, null, 2)}`);
return input.run(ctx);
}
@@ -151361,6 +151357,10 @@ async function main() {
toolContext.mcpServerUrl = mcpHttpServer.url;
log.info(`\xBB MCP server started at ${mcpHttpServer.url}`);
timer.checkpoint("mcpServer");
if (payload.model) log.info(`\xBB model: ${payload.model}`);
if (payload.timeout) log.info(`\xBB timeout: ${payload.timeout}`);
log.info(`\xBB push: ${payload.push}`);
log.info(`\xBB shell: ${payload.shell}`);
const instructions = resolveInstructions({
payload,
repo: runContext.repo,