一键导入
absurd
Postgres-native durable workflow system — run workflows as SQL stored procedures, no extra infrastructure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Postgres-native durable workflow system — run workflows as SQL stored procedures, no extra infrastructure.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
In-process vector database for AI applications — embed vector search, hybrid retrieval, and full-text search directly into your application without managing a separate server.
LLM-powered knowledge extraction CLI — transform unstructured text into structured knowledge (graphs, hypergraphs, spatio-temporal graphs) with a single command.
Give your AI agent one-click internet access — Twitter, Reddit, YouTube, GitHub, Bilibili, and more. Zero API fees.
Generate token-efficient CLIs for AI agents by reading API docs and studying community patterns. Prints Go binaries + Claude Code skills + MCP servers.
Terminal AI coding agent with video input, subagents, MCP support, and ACP editor integration
AI-powered code review CLI — deterministic pipelines + LLM agent, battle-tested at Alibaba scale
基于 SOC 职业分类
| name | absurd |
| description | Postgres-native durable workflow system — run workflows as SQL stored procedures, no extra infrastructure. |
| tags | ["durable-execution","postgres","workflows","python","orchestration"] |
| related_skills | ["hermes-agent"] |
Absurd runs durable workflows entirely within PostgreSQL using stored procedures. No Temporal, no Prefect, no Celery — just Postgres.
pip install absurd
# Initialize in your Postgres database
absurd init --database postgresql://user:***@localhost:5432/myapp
# Define a workflow
absurd workflow create process_order << 'SQL'
INSERT INTO absurd.workflows (name, steps) VALUES
('process_order', ARRAY['validate', 'charge', 'ship']);
SQL
# Execute
absurd run process_order --input '{"order_id": 42}'
# Check status
absurd status <execution-id>
-- Workflows automatically retry failed steps
-- Configure via workflow definition
absurd workflow update process_order --max-retries 3 --backoff exponential
# List all running workflows
absurd list --status running
# View execution history
absurd history --workflow process_order --limit 10
pg_cron extension for scheduled workflowsSECURITY DEFINER — ensure Postgres user has appropriate permissions# Verify installation
absurd --version
# Verify database connection
absurd status --database postgresql://localhost/myapp