| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-05-11 | 1.0 kB | |
| v0.9.0 source code.tar.gz | 2026-05-11 | 5.5 MB | |
| v0.9.0 source code.zip | 2026-05-11 | 5.6 MB | |
| Totals: 3 Items | 11.1 MB | 0 | |
v0.9.0 — Torque Agent Engine
New: Agent Workflow Engine
- WorkflowDefinition schema — standardized format for AI agent pipelines (nodes + edges + config)
- Node registry with 9 built-in types: webhook/cron/event triggers, LLM (OpenAI + Anthropic), HTTP request, code execution, condition router, create/query records, delay
- Topological DAG execution engine with condition routing, abort signals, and per-node timing
- _agentWorkflows and _agentExecutions system tables created automatically
New: Agent API Endpoints
- GET /api/agents/nodes — discover all registered node types with their config schemas
- POST /api/agents/workflows/register — register workflows (designed for Torque canvas export)
- GET /api/agents/workflows — list workflows
- POST /api/agents/workflows/:workflowId/execute — run a workflow, returns full execution trace
- GET /api/agents/workflows/:workflowId/execute/stream — SSE-streamed execution logs
- GET /api/agents/workflows/:workflowId/executions — execution history