24 lines
503 B
YAML
24 lines
503 B
YAML
name: "Pullfrog Action"
|
|
description: "Execute coding agents with a prompt"
|
|
author: "Pullfrog"
|
|
|
|
inputs:
|
|
prompt:
|
|
description: "Prompt to send to the agent"
|
|
required: true
|
|
effort:
|
|
description: "Effort level: mini (fast), auto (default), max (most capable)"
|
|
required: false
|
|
default: "auto"
|
|
cwd:
|
|
description: "Working directory for the agent (defaults to GITHUB_WORKSPACE)"
|
|
required: false
|
|
|
|
runs:
|
|
using: "node24"
|
|
main: "entry"
|
|
|
|
branding:
|
|
icon: "code"
|
|
color: "green"
|