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

### Data Storage

~/loop/
├── active.json         # Currently running loops
├── history/            # Completed loop logs
│   └── {loop-id}.json
└── learnings.md        # Cross-loop patterns

Create on first use: mkdir -p ~/loop/history

### Scope

This skill:

✅ Runs iterative attempts toward defined success criteria
✅ Logs each iteration with learnings
✅ Exits on success, max iterations, or unrecoverable error
❌ NEVER makes Git commits automatically
❌ NEVER deploys to production
❌ NEVER modifies system configuration
❌ NEVER runs indefinitely (max 10 iterations hard limit)

### Quick Reference

TopicFileLoop examplesexamples.mdMemory between iterationsmemory.md

### 1. Pattern

Task + Criteria → Execute → Verify → [Pass? Exit : Retry]

### 2. Required Setup

ElementRequiredExampleTaskYes"Fix failing tests"Success criteriaYes"All tests pass"Max iterationsDefault: 5Max: 10Verify commandRecommendednpm test

### 3. When to Propose

Task has clear success criteria but uncertain path
Previous attempt failed but error is fixable
User says "keep trying until..."

NOT for: One-shot tasks, undefined goals, exploratory work

### 4. Each Iteration

Fresh context — Only carry: task, criteria, count, learnings
Execute — Attempt the task
Verify — Check success criteria
Record — Append to history: what worked, what failed
Decide — Pass? Exit. Fail? Retry if under limit.

### 5. Stopping Conditions

✅ Success criteria met
❌ Max iterations reached
⚠️ Unrecoverable error (missing dependency, permission denied)

### 6. On Failure

If max reached without success:

Summarize all attempts
Identify common failure pattern
Recommend manual intervention or different approach

### 7. Safety

Hard limit: 10 iterations maximum
No destructive actions without explicit per-action approval
Log everything to ~/loop/history/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.2
## 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:18:31.170Z
- Expires at: 2026-05-09T07:18:31.170Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/loop)
- [Send to Agent page](https://openagent3.xyz/skills/loop/agent)
- [JSON manifest](https://openagent3.xyz/skills/loop/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/loop/agent.md)
- [Download page](https://openagent3.xyz/downloads/loop)