Install
openclaw skills install longrunning-agentEnables AI agents to work on long-running projects across multiple sessions. Use when starting complex projects, resuming work on existing projects, managing task lists with priorities and dependencies, or tracking progress incrementally.
openclaw skills install longrunning-agentThis skill enables AI agents to work on long-running projects across multiple sessions.
The longrunning-agent skill provides a structured workflow for:
# Create project directory
mkdir my-project && cd my-project
# Initialize workflow files
claude -p "Initialize this project using the longrunning-agent workflow"
The skill expects these files in the project directory:
CLAUDE.md - Project instructions and workflow guidetask.json - Task list with priorities and dependenciesprogress.txt - Log of work completedinit.sh - Environment setup script (optional){
"tasks": [
{
"id": "task-1",
"description": "Set up project structure",
"priority": 1,
"dependencies": [],
"passes": false
},
{
"id": "task-2",
"description": "Implement core features",
"priority": 2,
"dependencies": ["task-1"],
"passes": false
}
]
}
[2024-01-15 10:30:00] Started session
[2024-01-15 10:35:00] Completed task: Set up project structure
[2024-01-15 10:40:00] Milestone: Core features implemented
progress.txt for recent workpasses: false task with met dependenciesinit.sh if neededprogress.txtpasses: true in task.jsonThis skill integrates with the Agent Workflow Web App:
Templates for workflow files are in the templates/ directory:
CLAUDE.md.tpl - Project templatetask.json.tpl - Task list template