chinmaymk/ra - AI Agent
Run the ra agent harness in your GitHub Actions workflow
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Activelast commit Apr 10, 2026
- License
- MIT
Pinned Snippet
uses: chinmaymk/ra@d3039906da3d55b5f30cb92325761f666dc19770 # v0.0.7tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| prompt | The prompt to send to the agent | yes | — |
| provider | LLM provider (anthropic, openai, google, ollama, bedrock, azure) | no | anthropic |
| model | Model name to use (e.g. claude-sonnet-4-6, gpt-4o) | no | — |
| system-prompt | System prompt text or path to a file | no | — |
| max-iterations | Maximum agent loop iterations (maps to maxIterations) | no | 50 |
| tool-timeout | Tool execution timeout in milliseconds (maps to toolTimeout) | no | — |
| thinking | Extended thinking level (low, medium, high) | no | — |
| builtin-tools | Enable built-in tools (maps to builtinTools, default true) | no | true |
| skills | Comma-separated list of skills to activate | no | — |
| skill-dirs | Comma-separated list of directories to load skills from | no | — |
| files | Comma-separated list of files to attach to the prompt | no | — |
| memory | Enable persistent memory (maps to memory.enabled) | no | false |
| anthropic-base-url | Custom base URL for Anthropic API (maps to providers.anthropic.baseURL) | no | — |
| openai-base-url | Custom base URL for OpenAI API (maps to providers.openai.baseURL) | no | — |
| google-base-url | Custom base URL for Google API (maps to providers.google.baseURL) | no | — |
| ollama-host | Ollama server host (maps to providers.ollama.host) | no | — |
| azure-endpoint | Azure OpenAI endpoint (maps to providers.azure.endpoint) | no | — |
| azure-deployment | Azure OpenAI deployment name (maps to providers.azure.deployment) | no | — |
| config | Path to ra config file (ra.config.yml, ra.config.json, etc.) | no | — |
| version | ra version to use (e.g. v0.1.0). Defaults to latest release. | no | latest |
| fail-on-error | Whether to fail the workflow if ra exits with a non-zero code (true/false) | no | true |
Outputs
| name | description |
|---|---|
| exit-code | The exit code from the ra process |
| result | The agent output text |