Integrate AI-powered automation into your workflows using Claude
Qontinui provides the AI Prompt action type that enables intelligent automation powered by Claude. Use it to add AI capabilities to your workflows for autonomous code analysis, fixes, and improvements.
Execute AI Prompts with Claude
Execute an AI prompt with context isolation. The simplest and most powerful way to add AI capabilities to your workflow. Supports single-shot execution or auto-continuation for longer tasks.
The prompt to send to Claude. Can be natural language or a slash command.
Example: Fix all TypeScript errors in src/components/
Reference to a reusable prompt template (alternative to inline prompt).
Example: fix-type-errors
Maximum sessions to spawn. 1 = one-shot, null = unlimited auto-continuation until [TASK_COMPLETE].
Example: 1 (default, one-shot)
Store the AI output in a workflow variable for use by subsequent actions.
Example: ai_result
Execution timeout in milliseconds.
Example: 600000 (10 minutes, default)
Run a focused prompt to fix a specific issue
Allow AI to continue across sessions for larger tasks
Set maxSessions to 1 (default) for quick, focused tasks that can complete in a single session. This prevents unexpected long-running operations.
Set maxSessions to null for tasks that may need multiple sessions, like large refactoring or multi-file changes. The AI will continue until it outputs [TASK_COMPLETE].
Store AI output in workflow variables to pass information between actions. This is especially useful in sequences.
After AI makes changes, use SHELL actions to run tests, linting, or type checking to verify the changes are correct.