{
  "schemaVersion": "1.0",
  "item": {
    "slug": "abby-autonomy",
    "name": "Abby Autonomy",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/earnabitmore365/abby-autonomy",
    "canonicalUrl": "https://clawhub.ai/earnabitmore365/abby-autonomy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/abby-autonomy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-autonomy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "memory/task_state.json",
      "scripts/__init__.py",
      "scripts/heartbeat.py",
      "scripts/queue.py",
      "scripts/status.py"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/abby-autonomy"
    },
    "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/abby-autonomy",
    "agentPageUrl": "https://openagent3.xyz/skills/abby-autonomy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/abby-autonomy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/abby-autonomy/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": "Abby Autonomy Skill",
        "body": "自主任务执行系统 - 让 从被动 Abby变主动"
      },
      {
        "title": "解决的问题",
        "body": "让 Abby 从\"被动等待\"变成\"主动工作\"！\n\n当前问题：\n\nHeartbeat 只检查\"有没有需要处理的\"\n空闲时说 \"HEARTBEAT_OK\"\n等待爸爸指令才能工作\n\n改进后：\n\n主动从任务队列拿任务做\n持续工作直到限制\n自主推进任务"
      },
      {
        "title": "1. 任务队列 (tasks/QUEUE.md)",
        "body": "# Task Queue\n\n## Ready (可取用)\n- [ ] 回测 RSI 策略\n- [ ] 下载 BTC 数据\n\n## In Progress (进行中)\n- [x] @abby: 回测 MA 策略 (执行中, 剩余 5分钟)\n\n## Done Today (今日完成)\n- [x] 完成 MA 策略回测\n\n## Blocked (阻塞)\n- [ ] 等待爸爸确认"
      },
      {
        "title": "2. 状态追踪",
        "body": "Abby 记忆中记录当前任务状态：\n\n{\n  \"current_task\": \"回测 MA 策略\",\n  \"task_status\": \"running\",\n  \"estimated_completion\": \"20:15\",\n  \"progress\": \"50%\",\n  \"started_at\": \"20:05\"\n}"
      },
      {
        "title": "1. 任务队列管理",
        "body": "功能说明读取队列从文件读取任务列表拿任务取最高优先级任务更新队列标记完成/进行中/阻塞记录进度写回记忆"
      },
      {
        "title": "2. 状态检查",
        "body": "检查说明任务状态有没有正在执行的任务？紧急事项人类消息？系统错误？资源限制Token 快用完？时间到？"
      },
      {
        "title": "3. 自主执行",
        "body": "步骤说明1. 检查有紧急事项？2. 检查有正在执行的任务？3. 读取从队列拿任务4. 执行开始工作5. 记录标记状态6. 等待直到限制或完成"
      },
      {
        "title": "自动任务",
        "body": "任务说明回测运行策略回测下载下载历史数据研究分析市场数据优化优化交易参数"
      },
      {
        "title": "阻塞任务",
        "body": "状态说明等待爸爸确认需要人工决策等待系统资源资源不足等待外部数据API 不可用"
      },
      {
        "title": "创建任务",
        "body": "# tasks/QUEUE.md\n\n## Ready (可取用)\n- [ ] 回测 RSI 策略 (优先级: 高)\n- [ ] 下载 BTC 1h 数据 (优先级: 中)"
      },
      {
        "title": "Abby 心跳时",
        "body": "每3分钟：\n1. 检查紧急事项\n2. 检查当前任务状态\n3. 如果空闲 → 拿任务做\n4. 完成后更新队列"
      },
      {
        "title": "目录结构",
        "body": "abby-autonomy/\n├── SKILL.md              # 技能文档\n├── tasks/\n│   └── QUEUE.md         # 任务队列模板\n├── scripts/\n│   ├── __init__.py\n│   ├── queue.py         # 队列管理\n│   ├── status.py        # 状态检查\n│   ├── heartbeat.py     # 主动心跳\n│   └── executor.py      # 任务执行\n└── memory/\n    └── task_state.json # 任务状态"
      },
      {
        "title": "状态流转",
        "body": "Ready → In Progress → Done Today\n                      ↘ Blocked\n\nIn Progress → Done Today (完成)\n            → Ready (暂停)\n            → Blocked (阻塞)"
      },
      {
        "title": "为什么需要这个？",
        "body": "❌ 被动 Heartbeat：说 \"HEARTBEAT_OK\" 浪费机会\n\n\n❌ 没有任务队列：不知道该做什么\n\n\n❌ 重复执行：同一个任务做多次\n\n\n✅ 主动 Heartbeat：从队列拿任务\n\n\n✅ 任务队列：永远有工作可做\n\n\n✅ 状态追踪：避免重复执行"
      },
      {
        "title": "依赖",
        "body": "long-term-memory skill (用于状态追踪)\ncron job (定时检查)"
      },
      {
        "title": "相关文档",
        "body": "agent-autonomy-kit skill\nlong-term-memory skill\nHEARTBEAT.md\n\n创建于 2026-02-15"
      }
    ],
    "body": "Abby Autonomy Skill\n\n自主任务执行系统 - 让 从被动 Abby变主动\n\n解决的问题\n\n让 Abby 从\"被动等待\"变成\"主动工作\"！\n\n当前问题：\n\nHeartbeat 只检查\"有没有需要处理的\"\n空闲时说 \"HEARTBEAT_OK\"\n等待爸爸指令才能工作\n\n改进后：\n\n主动从任务队列拿任务做\n持续工作直到限制\n自主推进任务\n核心概念\n1. 任务队列 (tasks/QUEUE.md)\n# Task Queue\n\n## Ready (可取用)\n- [ ] 回测 RSI 策略\n- [ ] 下载 BTC 数据\n\n## In Progress (进行中)\n- [x] @abby: 回测 MA 策略 (执行中, 剩余 5分钟)\n\n## Done Today (今日完成)\n- [x] 完成 MA 策略回测\n\n## Blocked (阻塞)\n- [ ] 等待爸爸确认\n\n2. 状态追踪\n\nAbby 记忆中记录当前任务状态：\n\n{\n  \"current_task\": \"回测 MA 策略\",\n  \"task_status\": \"running\",\n  \"estimated_completion\": \"20:15\",\n  \"progress\": \"50%\",\n  \"started_at\": \"20:05\"\n}\n\n核心功能\n1. 任务队列管理\n功能\t说明\n读取队列\t从文件读取任务列表\n拿任务\t取最高优先级任务\n更新队列\t标记完成/进行中/阻塞\n记录进度\t写回记忆\n2. 状态检查\n检查\t说明\n任务状态\t有没有正在执行的任务？\n紧急事项\t人类消息？系统错误？\n资源限制\tToken 快用完？时间到？\n3. 自主执行\n步骤\t说明\n1. 检查\t有紧急事项？\n2. 检查\t有正在执行的任务？\n3. 读取\t从队列拿任务\n4. 执行\t开始工作\n5. 记录\t标记状态\n6. 等待\t直到限制或完成\n任务类型\n自动任务\n任务\t说明\n回测\t运行策略回测\n下载\t下载历史数据\n研究\t分析市场数据\n优化\t优化交易参数\n阻塞任务\n状态\t说明\n等待爸爸确认\t需要人工决策\n等待系统资源\t资源不足\n等待外部数据\tAPI 不可用\n使用方法\n创建任务\n# tasks/QUEUE.md\n\n## Ready (可取用)\n- [ ] 回测 RSI 策略 (优先级: 高)\n- [ ] 下载 BTC 1h 数据 (优先级: 中)\n\nAbby 心跳时\n每3分钟：\n1. 检查紧急事项\n2. 检查当前任务状态\n3. 如果空闲 → 拿任务做\n4. 完成后更新队列\n\n目录结构\nabby-autonomy/\n├── SKILL.md              # 技能文档\n├── tasks/\n│   └── QUEUE.md         # 任务队列模板\n├── scripts/\n│   ├── __init__.py\n│   ├── queue.py         # 队列管理\n│   ├── status.py        # 状态检查\n│   ├── heartbeat.py     # 主动心跳\n│   └── executor.py      # 任务执行\n└── memory/\n    └── task_state.json # 任务状态\n\n状态流转\nReady → In Progress → Done Today\n                      ↘ Blocked\n\nIn Progress → Done Today (完成)\n            → Ready (暂停)\n            → Blocked (阻塞)\n\n重要概念\n为什么需要这个？\n\n❌ 被动 Heartbeat：说 \"HEARTBEAT_OK\" 浪费机会\n\n❌ 没有任务队列：不知道该做什么\n\n❌ 重复执行：同一个任务做多次\n\n✅ 主动 Heartbeat：从队列拿任务\n\n✅ 任务队列：永远有工作可做\n\n✅ 状态追踪：避免重复执行\n\n依赖\nlong-term-memory skill (用于状态追踪)\ncron job (定时检查)\n相关文档\nagent-autonomy-kit skill\nlong-term-memory skill\nHEARTBEAT.md\n\n创建于 2026-02-15"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/earnabitmore365/abby-autonomy",
    "publisherUrl": "https://clawhub.ai/earnabitmore365/abby-autonomy",
    "owner": "earnabitmore365",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/abby-autonomy",
    "downloadUrl": "https://openagent3.xyz/downloads/abby-autonomy",
    "agentUrl": "https://openagent3.xyz/skills/abby-autonomy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/abby-autonomy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/abby-autonomy/agent.md"
  }
}