# Send Longrunning Agent to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "longrunning-agent",
    "name": "Longrunning Agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/YonghaoZhao722/longrunning-agent",
    "canonicalUrl": "https://clawhub.ai/YonghaoZhao722/longrunning-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/longrunning-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=longrunning-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "manifest.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "longrunning-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T07:03:53.011Z",
      "expiresAt": "2026-05-09T07:03:53.011Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=longrunning-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=longrunning-agent",
        "contentDisposition": "attachment; filename=\"longrunning-agent-1.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "longrunning-agent"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/longrunning-agent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/longrunning-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/longrunning-agent",
    "agentUrl": "https://openagent3.xyz/skills/longrunning-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/longrunning-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/longrunning-agent/agent.md"
  }
}
```
## Documentation

### OpenClaw Long-Running Agent Skill

This skill enables AI agents to work on long-running projects across multiple sessions.

### Purpose

The longrunning-agent skill provides a structured workflow for:

Tracking progress across sessions
Managing task lists with priorities and dependencies
Making incremental, atomic progress on complex projects
Ensuring continuity when resuming work

### Installation

Copy this skill directory to your OpenClaw skills folder
Ensure Claude Code CLI is installed and configured
Create a project directory with the workflow files

### Initialize a New Project

# Create project directory
mkdir my-project && cd my-project

# Initialize workflow files
claude -p "Initialize this project using the longrunning-agent workflow"

### Workflow Files

The skill expects these files in the project directory:

CLAUDE.md - Project instructions and workflow guide
task.json - Task list with priorities and dependencies
progress.txt - Log of work completed
init.sh - Environment setup script (optional)

### Task Format

{
  "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
    }
  ]
}

### Progress Format

[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

### Workflow Steps

Read Progress - Check progress.txt for recent work
Select Task - Find next passes: false task with met dependencies
Initialize - Run init.sh if needed
Implement - Work on one task incrementally
Test - Run lint, build, and tests
Document - Update progress.txt
Mark Complete - Set passes: true in task.json
Commit - Make atomic git commit

### Best Practices

Work on ONE task per session
Make commits after each task completion
Keep progress.txt concise but informative
Use dependencies to manage task order
Test thoroughly before marking passes: true

### Integration with Web UI

This skill integrates with the Agent Workflow Web App:

Tasks sync with the web database
Progress entries are captured
Session output is logged
Git commits are tracked

### Templates

Templates for workflow files are in the templates/ directory:

CLAUDE.md.tpl - Project template
task.json.tpl - Task list template
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: YonghaoZhao722
- Version: 1.1.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-02T07:03:53.011Z
- Expires at: 2026-05-09T07:03:53.011Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/longrunning-agent)
- [Send to Agent page](https://openagent3.xyz/skills/longrunning-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/longrunning-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/longrunning-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/longrunning-agent)