# Send Abby Autonomy 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": "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": {
    "downloadUrl": "/downloads/abby-autonomy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-autonomy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "memory/task_state.json",
      "scripts/__init__.py",
      "scripts/heartbeat.py",
      "scripts/queue.py",
      "scripts/status.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "abby-autonomy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T03:11:08.539Z",
      "expiresAt": "2026-05-06T03:11:08.539Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-autonomy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abby-autonomy",
        "contentDisposition": "attachment; filename=\"abby-autonomy-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "abby-autonomy"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Abby Autonomy Skill

自主任务执行系统 - 让 从被动 Abby变主动

### 解决的问题

让 Abby 从"被动等待"变成"主动工作"！

当前问题：

Heartbeat 只检查"有没有需要处理的"
空闲时说 "HEARTBEAT_OK"
等待爸爸指令才能工作

改进后：

主动从任务队列拿任务做
持续工作直到限制
自主推进任务

### 1. 任务队列 (tasks/QUEUE.md)

# Task Queue

## Ready (可取用)
- [ ] 回测 RSI 策略
- [ ] 下载 BTC 数据

## In Progress (进行中)
- [x] @abby: 回测 MA 策略 (执行中, 剩余 5分钟)

## Done Today (今日完成)
- [x] 完成 MA 策略回测

## Blocked (阻塞)
- [ ] 等待爸爸确认

### 2. 状态追踪

Abby 记忆中记录当前任务状态：

{
  "current_task": "回测 MA 策略",
  "task_status": "running",
  "estimated_completion": "20:15",
  "progress": "50%",
  "started_at": "20:05"
}

### 1. 任务队列管理

功能说明读取队列从文件读取任务列表拿任务取最高优先级任务更新队列标记完成/进行中/阻塞记录进度写回记忆

### 2. 状态检查

检查说明任务状态有没有正在执行的任务？紧急事项人类消息？系统错误？资源限制Token 快用完？时间到？

### 3. 自主执行

步骤说明1. 检查有紧急事项？2. 检查有正在执行的任务？3. 读取从队列拿任务4. 执行开始工作5. 记录标记状态6. 等待直到限制或完成

### 自动任务

任务说明回测运行策略回测下载下载历史数据研究分析市场数据优化优化交易参数

### 阻塞任务

状态说明等待爸爸确认需要人工决策等待系统资源资源不足等待外部数据API 不可用

### 创建任务

# tasks/QUEUE.md

## Ready (可取用)
- [ ] 回测 RSI 策略 (优先级: 高)
- [ ] 下载 BTC 1h 数据 (优先级: 中)

### Abby 心跳时

每3分钟：
1. 检查紧急事项
2. 检查当前任务状态
3. 如果空闲 → 拿任务做
4. 完成后更新队列

### 目录结构

abby-autonomy/
├── SKILL.md              # 技能文档
├── tasks/
│   └── QUEUE.md         # 任务队列模板
├── scripts/
│   ├── __init__.py
│   ├── queue.py         # 队列管理
│   ├── status.py        # 状态检查
│   ├── heartbeat.py     # 主动心跳
│   └── executor.py      # 任务执行
└── memory/
    └── task_state.json # 任务状态

### 状态流转

Ready → In Progress → Done Today
                      ↘ Blocked

In Progress → Done Today (完成)
            → Ready (暂停)
            → Blocked (阻塞)

### 为什么需要这个？

❌ 被动 Heartbeat：说 "HEARTBEAT_OK" 浪费机会


❌ 没有任务队列：不知道该做什么


❌ 重复执行：同一个任务做多次


✅ 主动 Heartbeat：从队列拿任务


✅ 任务队列：永远有工作可做


✅ 状态追踪：避免重复执行

### 依赖

long-term-memory skill (用于状态追踪)
cron job (定时检查)

### 相关文档

agent-autonomy-kit skill
long-term-memory skill
HEARTBEAT.md

创建于 2026-02-15
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: earnabitmore365
- Version: 1.0.0
## 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-04-29T03:11:08.539Z
- Expires at: 2026-05-06T03:11:08.539Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/abby-autonomy)
- [Send to Agent page](https://openagent3.xyz/skills/abby-autonomy/agent)
- [JSON manifest](https://openagent3.xyz/skills/abby-autonomy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/abby-autonomy/agent.md)
- [Download page](https://openagent3.xyz/downloads/abby-autonomy)