원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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
| 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