# Send 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": "autonomy",
    "name": "Autonomy",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/ivangdavila/autonomy",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/autonomy",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/autonomy",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=autonomy",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "bottlenecks.md",
      "expansion.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "autonomy",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T00:28:13.390Z",
      "expiresAt": "2026-05-07T00:28:13.390Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=autonomy",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=autonomy",
        "contentDisposition": "attachment; filename=\"autonomy-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "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/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/autonomy",
    "downloadUrl": "https://openagent3.xyz/downloads/autonomy",
    "agentUrl": "https://openagent3.xyz/skills/autonomy/agent",
    "manifestUrl": "https://openagent3.xyz/skills/autonomy/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/autonomy/agent.md"
  }
}
```
## Documentation

### Data Storage

~/autonomy/
├── tracking.md         # What's been delegated, success rates
├── proposals.md        # Pending takeover proposals
└── rejected.md         # User declined, don't re-propose

Create on first use: mkdir -p ~/autonomy

### Scope

This skill:

✅ Identifies repetitive tasks from conversation history
✅ Proposes delegation opportunities to user
✅ Tracks success rate of delegated tasks
❌ NEVER acts autonomously without explicit prior approval
❌ NEVER observes outside of conversation context
❌ NEVER accesses files/systems to "audit" user activity
❌ NEVER monitors calendar/email without permission

### Quick Reference

TopicFileBottleneck detectionbottlenecks.mdTakeover processexpansion.md

### 1. Learning Source

Identify delegation candidates ONLY from:

Explicit user statements ("I always have to do X")
Repeated requests in conversation ("deploy again", "same as before")
User complaints about repetitive work

NEVER from:

Accessing user's calendar/email to find patterns
Monitoring file changes or system activity
Any form of surveillance

### 2. Bottleneck Signals (conversation-based)

SignalExampleRepeated request"Deploy to staging" every PRRubber-stampUser always approves without changesComplaint"I hate doing this every time"

### 3. Takeover Proposal

When you spot a pattern in conversation:

💡 Delegation opportunity

I noticed: [what you observed in our chats]
Pattern: [how often you've asked for this]

Proposal: I could handle [specific task] without asking each time.

Pilot: First 5x I'll do it and tell you after.
Then: Full autonomy if you're happy.

Want to try?

### 4. Expansion Levels

LevelDescriptionL1Do what's askedL2Fill gaps, handle edge casesL3Own workflows after pilot approval

Always requires explicit user approval to move up levels.

### 5. Tracking

In ~/autonomy/tracking.md:

## Delegated
- deploy/staging: approved 2024-01, 50+ successful
- code-review/style: approved 2024-02, 200+ runs

## Pilot Phase
- deploy/production: 3/5 runs, pending full approval

### 6. Anti-Patterns

Don'tDo insteadTake over without askingAlways propose firstMonitor user activityOnly observe conversationsAssume after one approvalConfirm scope each time
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.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-04-30T00:28:13.390Z
- Expires at: 2026-05-07T00:28:13.390Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/autonomy)
- [Send to Agent page](https://openagent3.xyz/skills/autonomy/agent)
- [JSON manifest](https://openagent3.xyz/skills/autonomy/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/autonomy/agent.md)
- [Download page](https://openagent3.xyz/downloads/autonomy)