Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Crawler Summary
Build autonomous, long-running AI agents that parse PRDs/specifications into structured task lists and execute them autonomously with state persistence, error recovery, and cross-session resumption. Works with any agent framework (Cursor, OpenCode, etc.). --- name: long-running-agent description: Build autonomous, long-running AI agents that parse PRDs/specifications into structured task lists and execute them autonomously with state persistence, error recovery, and cross-session resumption. Works with any agent framework (Cursor, OpenCode, etc.). license: MIT compatibility: Requires file system access, JSON processing, and ability to execute tasks over extended perio Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Freshness
Last checked 4/15/2026
Best For
long-running-agent is best for parse, be, result workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack
Build autonomous, long-running AI agents that parse PRDs/specifications into structured task lists and execute them autonomously with state persistence, error recovery, and cross-session resumption. Works with any agent framework (Cursor, OpenCode, etc.). --- name: long-running-agent description: Build autonomous, long-running AI agents that parse PRDs/specifications into structured task lists and execute them autonomously with state persistence, error recovery, and cross-session resumption. Works with any agent framework (Cursor, OpenCode, etc.). license: MIT compatibility: Requires file system access, JSON processing, and ability to execute tasks over extended perio
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Bowen31337
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
Summary
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Setup snapshot
git clone https://github.com/bowen31337/autonomous-agent-framework.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Bowen31337
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
python
def setup_project_structure(project_name: str):
"""Create directory structure for long-running agent."""
directories = [
f"tasks/{project_name}",
f"results/{project_name}",
f"memories/{project_name}",
f"logs/{project_name}"
]
for directory in directories:
os.makedirs(directory, exist_ok=True)
print(f"โ
Created: {directory}")python
def parse_prd_to_tasks(prd_content: str, project_name: str) -> Dict:
"""Parse PRD into structured task list with dependencies."""
# See references/prd-processing.md for full implementation
tasks = {
"project_name": project_name,
"created_at": datetime.now().isoformat(),
"total_tasks": 0,
"completed_tasks": 0,
"tasks": []
}
# Extract sections, analyze dependencies, categorize tasks
# Returns structured JSON with full task metadata
return taskspython
def setup_api_rotation(api_configs: List[Dict]):
"""Setup API rotation with multiple endpoints."""
# See references/api-rotation.md for full implementation
global api_manager
api_manager = APIRotationManager()
for config in api_configs:
api_manager.add_endpoint(
name=config["name"],
base_url=config["base_url"],
api_key=config["api_key"],
rate_limit=config.get("rate_limit", 60),
quota_limit=config.get("quota_limit", 1000)
)
print(f"๐ API rotation configured with {len(api_configs)} endpoints")python
def save_task_list(task_list: Dict, file_path: str = None):
"""Save task list to persistent storage."""
# See references/state-management.md for full implementation
if not file_path:
file_path = f"tasks/{task_list['project_name']}/current_tasks.json"
os.makedirs(os.path.dirname(file_path), exist_ok=True)
with open(file_path, 'w') as f:
json.dump(task_list, f, indent=2)
def load_task_list(project_name: str = None, file_path: str = None) -> Dict:
"""Load task list from persistent storage."""
# Implementation details in references/state-management.md
passpython
def execute_next_task(project_name: str) -> Dict:
"""Execute the next available task with dependency checking."""
# See references/task-execution.md for full implementation
task_list = load_task_list(project_name)
# Find next executable task (dependencies met, status pending)
next_task = find_next_executable_task(task_list)
if not next_task:
return {"status": "no_tasks_available"}
# Execute task by category with API rotation support
result = execute_task_by_category(next_task)
# Update task status and save state
update_task_status(next_task["id"], "completed" if result["success"] else "failed")
return resultpython
def save_execution_pattern(task: Dict, execution_result: Dict, pattern_file: str = "memories/patterns.json"):
"""Save successful execution patterns for learning."""
# See references/learning-system.md for full implementation
pattern = {
"task_category": task["category"],
"task_type": task.get("type", "general"),
"execution_approach": execution_result.get("approach"),
"success_factors": execution_result.get("success_factors", []),
"timestamp": datetime.now().isoformat()
}
# Save pattern for future reference
patterns = load_json_file(pattern_file, [])
patterns.append(pattern)
save_json_file(pattern_file, patterns)Full documentation captured from public sources, including the complete README when available.
Docs source
GITHUB OPENCLEW
Editorial quality
ready
Build autonomous, long-running AI agents that parse PRDs/specifications into structured task lists and execute them autonomously with state persistence, error recovery, and cross-session resumption. Works with any agent framework (Cursor, OpenCode, etc.). --- name: long-running-agent description: Build autonomous, long-running AI agents that parse PRDs/specifications into structured task lists and execute them autonomously with state persistence, error recovery, and cross-session resumption. Works with any agent framework (Cursor, OpenCode, etc.). license: MIT compatibility: Requires file system access, JSON processing, and ability to execute tasks over extended perio
Build resilient autonomous agents that can parse PRDs/specifications, generate structured task lists, and execute tasks autonomously over extended periods with state persistence and automatic recovery.
This skill provides agent-agnostic patterns that work with any AI agent framework including Cursor, OpenCode, Claude, and others.
A long-running agent consists of seven core systems that work with any agent framework:
These patterns are framework-agnostic and can be implemented with any AI agent that has file system access.
Create the basic directory structure for persistent state management:
def setup_project_structure(project_name: str):
"""Create directory structure for long-running agent."""
directories = [
f"tasks/{project_name}",
f"results/{project_name}",
f"memories/{project_name}",
f"logs/{project_name}"
]
for directory in directories:
os.makedirs(directory, exist_ok=True)
print(f"โ
Created: {directory}")
Parse requirements documents into structured, executable task lists:
def parse_prd_to_tasks(prd_content: str, project_name: str) -> Dict:
"""Parse PRD into structured task list with dependencies."""
# See references/prd-processing.md for full implementation
tasks = {
"project_name": project_name,
"created_at": datetime.now().isoformat(),
"total_tasks": 0,
"completed_tasks": 0,
"tasks": []
}
# Extract sections, analyze dependencies, categorize tasks
# Returns structured JSON with full task metadata
return tasks
Full Implementation: See references/prd-processing.md
Configure intelligent API rotation for external service calls:
def setup_api_rotation(api_configs: List[Dict]):
"""Setup API rotation with multiple endpoints."""
# See references/api-rotation.md for full implementation
global api_manager
api_manager = APIRotationManager()
for config in api_configs:
api_manager.add_endpoint(
name=config["name"],
base_url=config["base_url"],
api_key=config["api_key"],
rate_limit=config.get("rate_limit", 60),
quota_limit=config.get("quota_limit", 1000)
)
print(f"๐ API rotation configured with {len(api_configs)} endpoints")
Full Implementation: See references/api-rotation.md
Create persistent state management for cross-session continuity:
def save_task_list(task_list: Dict, file_path: str = None):
"""Save task list to persistent storage."""
# See references/state-management.md for full implementation
if not file_path:
file_path = f"tasks/{task_list['project_name']}/current_tasks.json"
os.makedirs(os.path.dirname(file_path), exist_ok=True)
with open(file_path, 'w') as f:
json.dump(task_list, f, indent=2)
def load_task_list(project_name: str = None, file_path: str = None) -> Dict:
"""Load task list from persistent storage."""
# Implementation details in references/state-management.md
pass
Full Implementation: See references/state-management.md
Execute tasks autonomously with dependency management:
def execute_next_task(project_name: str) -> Dict:
"""Execute the next available task with dependency checking."""
# See references/task-execution.md for full implementation
task_list = load_task_list(project_name)
# Find next executable task (dependencies met, status pending)
next_task = find_next_executable_task(task_list)
if not next_task:
return {"status": "no_tasks_available"}
# Execute task by category with API rotation support
result = execute_task_by_category(next_task)
# Update task status and save state
update_task_status(next_task["id"], "completed" if result["success"] else "failed")
return result
Full Implementation: See references/task-execution.md
Implement pattern recognition and continuous improvement:
def save_execution_pattern(task: Dict, execution_result: Dict, pattern_file: str = "memories/patterns.json"):
"""Save successful execution patterns for learning."""
# See references/learning-system.md for full implementation
pattern = {
"task_category": task["category"],
"task_type": task.get("type", "general"),
"execution_approach": execution_result.get("approach"),
"success_factors": execution_result.get("success_factors", []),
"timestamp": datetime.now().isoformat()
}
# Save pattern for future reference
patterns = load_json_file(pattern_file, [])
patterns.append(pattern)
save_json_file(pattern_file, patterns)
Full Implementation: See references/learning-system.md
Integrate with your specific AI agent framework:
# For any agent framework (Cursor, OpenCode, Claude, etc.)
def run_long_running_agent(prd_content: str, project_name: str):
"""Main entry point for long-running agent workflow."""
# 1. Setup
setup_project_structure(project_name)
setup_api_rotation(load_api_config())
# 2. Parse PRD
task_list = parse_prd_to_tasks(prd_content, project_name)
save_task_list(task_list)
# 3. Execute tasks
while has_pending_tasks(project_name):
result = execute_next_task(project_name)
if result["status"] == "no_tasks_available":
break
# Learn from execution
if result.get("success"):
save_execution_pattern(result["task"], result)
# 4. Generate summary
return generate_project_summary(project_name)
run_long_running_agent() with your PRD contentexecute_next_task()# Start new project
prd = "Your PRD content here..."
summary = run_long_running_agent(prd, "ecommerce-platform")
# Resume existing project
result = execute_next_task("ecommerce-platform")
# Check status
status = get_project_status("ecommerce-platform")
| Pattern | Purpose | Implementation |
|---------|---------|----------------|
| PRD Parsing | Convert specs to structured tasks | parse_prd_to_tasks() function with regex parsing |
| API Rotation | Intelligent API key rotation and load balancing | APIRotationManager with weighted selection |
| Rate Limiting | Prevent API quota exhaustion | Per-endpoint usage tracking and throttling |
| Task State Management | Track progress across sessions | JSON file-based persistence in tasks/ directory |
| Autonomous Execution | Self-directed task processing | execute_next_task() with dependency checking |
| Cross-Session Persistence | Resume work after interruption | File-based state management |
| Dependency Management | Ensure proper task ordering | Dependency analysis and validation |
| Progress Tracking | Monitor and update status | update_task_status() with counters |
| Parallel Execution | Handle independent tasks concurrently | ThreadPoolExecutor with file locking |
| Error Recovery | Handle failures gracefully | Try-catch with error logging and retry logic |
| Learning System | Improve from execution patterns | Pattern and solution storage in memories/ |
| Agent Agnostic | Work with any AI agent | Standard Python functions, no framework dependencies |
project-name/
โโโ tasks/project-name/
โ โโโ current_tasks.json # Current task list and status
โ โโโ task_history.json # Completed task history
โโโ results/project-name/
โ โโโ task_001/ # Individual task outputs
โ โโโ task_002/
โโโ memories/project-name/
โ โโโ patterns.json # Learned execution patterns
โ โโโ solutions.json # Error solutions
โโโ logs/project-name/
โโโ execution.log # Detailed execution logs
For detailed implementations, see:
tasks = parse_prd_to_tasks(prd_content, "my-project")run_long_running_agent(prd_content, "my-project")tasks/my-project/execute_next_task("my-project")This skill works with any AI agent that can:
Simply load this skill and call the main functions with your PRD content to begin autonomous task execution with full persistence and recovery capabilities.
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/snapshot"
curl -s "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/contract"
curl -s "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/trust"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
Rank
70
AI Agents & MCPs & AI Workflow Automation โข (~400 MCP servers for AI agents) โข AI Automation / AI Agent with MCPs โข AI Workflows & AI Agents โข MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Rank
70
AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | ๐ Star if you like it!
Traction
No public download signal
Freshness
Updated 6d ago
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "GITHUB_OPENCLEW",
"generatedAt": "2026-04-17T03:05:37.911Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
},
{
"key": "parse",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "be",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
},
{
"key": "result",
"type": "capability",
"support": "supported",
"confidenceSource": "profile",
"notes": "Declared in agent profile metadata"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile capability:parse|supported|profile capability:be|supported|profile capability:result|supported|profile"
}Facts JSON
[
{
"factKey": "docs_crawl",
"category": "integration",
"label": "Crawlable docs",
"value": "6 indexed pages on the official domain",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
},
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Bowen31337",
"href": "https://github.com/bowen31337/autonomous-agent-framework",
"sourceUrl": "https://github.com/bowen31337/autonomous-agent-framework",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T03:16:17.377Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T03:16:17.377Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/bowen31337-autonomous-agent-framework-2/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "docs_update",
"title": "Docs refreshed: Sign in to GitHub ยท GitHub",
"description": "Fresh crawlable documentation was indexed for the official domain.",
"href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
"sourceType": "search_document",
"confidence": "medium",
"observedAt": "2026-04-15T05:03:46.393Z",
"isPublic": true
}
]Sponsored
Ads related to long-running-agent and adjacent AI workflows.