بنقرة واحدة
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