{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/longrunning-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=longrunning-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "manifest.json"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/longrunning-agent",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "OpenClaw Long-Running Agent Skill",
        "body": "This skill enables AI agents to work on long-running projects across multiple sessions."
      },
      {
        "title": "Purpose",
        "body": "The longrunning-agent skill provides a structured workflow for:\n\nTracking progress across sessions\nManaging task lists with priorities and dependencies\nMaking incremental, atomic progress on complex projects\nEnsuring continuity when resuming work"
      },
      {
        "title": "Installation",
        "body": "Copy this skill directory to your OpenClaw skills folder\nEnsure Claude Code CLI is installed and configured\nCreate a project directory with the workflow files"
      },
      {
        "title": "Initialize a New Project",
        "body": "# Create project directory\nmkdir my-project && cd my-project\n\n# Initialize workflow files\nclaude -p \"Initialize this project using the longrunning-agent workflow\""
      },
      {
        "title": "Workflow Files",
        "body": "The skill expects these files in the project directory:\n\nCLAUDE.md - Project instructions and workflow guide\ntask.json - Task list with priorities and dependencies\nprogress.txt - Log of work completed\ninit.sh - Environment setup script (optional)"
      },
      {
        "title": "Task Format",
        "body": "{\n  \"tasks\": [\n    {\n      \"id\": \"task-1\",\n      \"description\": \"Set up project structure\",\n      \"priority\": 1,\n      \"dependencies\": [],\n      \"passes\": false\n    },\n    {\n      \"id\": \"task-2\",\n      \"description\": \"Implement core features\",\n      \"priority\": 2,\n      \"dependencies\": [\"task-1\"],\n      \"passes\": false\n    }\n  ]\n}"
      },
      {
        "title": "Progress Format",
        "body": "[2024-01-15 10:30:00] Started session\n[2024-01-15 10:35:00] Completed task: Set up project structure\n[2024-01-15 10:40:00] Milestone: Core features implemented"
      },
      {
        "title": "Workflow Steps",
        "body": "Read Progress - Check progress.txt for recent work\nSelect Task - Find next passes: false task with met dependencies\nInitialize - Run init.sh if needed\nImplement - Work on one task incrementally\nTest - Run lint, build, and tests\nDocument - Update progress.txt\nMark Complete - Set passes: true in task.json\nCommit - Make atomic git commit"
      },
      {
        "title": "Best Practices",
        "body": "Work on ONE task per session\nMake commits after each task completion\nKeep progress.txt concise but informative\nUse dependencies to manage task order\nTest thoroughly before marking passes: true"
      },
      {
        "title": "Integration with Web UI",
        "body": "This skill integrates with the Agent Workflow Web App:\n\nTasks sync with the web database\nProgress entries are captured\nSession output is logged\nGit commits are tracked"
      },
      {
        "title": "Templates",
        "body": "Templates for workflow files are in the templates/ directory:\n\nCLAUDE.md.tpl - Project template\ntask.json.tpl - Task list template"
      }
    ],
    "body": "OpenClaw Long-Running Agent Skill\n\nThis skill enables AI agents to work on long-running projects across multiple sessions.\n\nPurpose\n\nThe longrunning-agent skill provides a structured workflow for:\n\nTracking progress across sessions\nManaging task lists with priorities and dependencies\nMaking incremental, atomic progress on complex projects\nEnsuring continuity when resuming work\nInstallation\nCopy this skill directory to your OpenClaw skills folder\nEnsure Claude Code CLI is installed and configured\nCreate a project directory with the workflow files\nUsage\nInitialize a New Project\n# Create project directory\nmkdir my-project && cd my-project\n\n# Initialize workflow files\nclaude -p \"Initialize this project using the longrunning-agent workflow\"\n\nWorkflow Files\n\nThe skill expects these files in the project directory:\n\nCLAUDE.md - Project instructions and workflow guide\ntask.json - Task list with priorities and dependencies\nprogress.txt - Log of work completed\ninit.sh - Environment setup script (optional)\nTask Format\n{\n  \"tasks\": [\n    {\n      \"id\": \"task-1\",\n      \"description\": \"Set up project structure\",\n      \"priority\": 1,\n      \"dependencies\": [],\n      \"passes\": false\n    },\n    {\n      \"id\": \"task-2\",\n      \"description\": \"Implement core features\",\n      \"priority\": 2,\n      \"dependencies\": [\"task-1\"],\n      \"passes\": false\n    }\n  ]\n}\n\nProgress Format\n[2024-01-15 10:30:00] Started session\n[2024-01-15 10:35:00] Completed task: Set up project structure\n[2024-01-15 10:40:00] Milestone: Core features implemented\n\nWorkflow Steps\nRead Progress - Check progress.txt for recent work\nSelect Task - Find next passes: false task with met dependencies\nInitialize - Run init.sh if needed\nImplement - Work on one task incrementally\nTest - Run lint, build, and tests\nDocument - Update progress.txt\nMark Complete - Set passes: true in task.json\nCommit - Make atomic git commit\nBest Practices\nWork on ONE task per session\nMake commits after each task completion\nKeep progress.txt concise but informative\nUse dependencies to manage task order\nTest thoroughly before marking passes: true\nIntegration with Web UI\n\nThis skill integrates with the Agent Workflow Web App:\n\nTasks sync with the web database\nProgress entries are captured\nSession output is logged\nGit commits are tracked\nTemplates\n\nTemplates for workflow files are in the templates/ directory:\n\nCLAUDE.md.tpl - Project template\ntask.json.tpl - Task list template"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/YonghaoZhao722/longrunning-agent",
    "publisherUrl": "https://clawhub.ai/YonghaoZhao722/longrunning-agent",
    "owner": "YonghaoZhao722",
    "version": "1.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}