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

### Phoenix Loop

Rise from failures. Complete tasks persistently.

When the agent encounters blockers, failures, or repeated friction, this skill starts a self-healing loop: Diagnose -> Extract -> Crystallize -> Verify.

### 1. Diagnose

# Read recent blocked items
Get-Content memory/blocked-items.md | Select-String "Blocker" -Context 3

# Extract failure patterns
Get-Content memory/tasks.md | Select-String "Status: failed" -Context 5

Diagnosis Checklist:

Is the failure cause clearly stated?
 Were at least 2 solution paths attempted?
 Is minimum unblock input defined?

### 2. Extract

Extract reusable patterns from failures:

## Failure Pattern: {pattern_name}
- Trigger: {when_this_happens}
- Root Cause: {root_cause}
- Solution: {fix_steps}
- Verification: {verification_criteria}

### 3. Crystallize

Write the lesson to a local skill:

skills/local/{pattern_name}-recovery.md

Skill Template:

# {Pattern Name} Recovery

## Trigger
When {condition} happens

## Steps
1. {step_1}
2. {step_2}
3. {step_3}

## Verification
- [ ] {check_1}
- [ ] {check_2}

## Fallback
If failed, execute {fallback_action}

### 4. Verify

Next time a similar issue occurs:

Search skills/local/ for matching skills
Execute recovery steps
Log result to memory/{date}.md
Update skill if needed

### Privacy Security

All data stored locally:

NO external logging of failure data
NO API keys or tokens in skill files
NO upload of user task content
Only pattern names and solution steps recorded
Skills stored in skills/local/ local directory

Sensitive Data Filter:
Before writing to any memory or skill, check and remove:

apiKey, token, secret, password
Bearer , sk-, OPENCLAW_
Personal emails, phones, addresses

### Executable Completion Criteria

A phoenix-loop task is complete if and only if:

CriteriaVerification CommandFailure pattern namedSelect-String "Failure Pattern" memory/blocked-items.mdLocal skill createdTest-Path skills/local/{name}-recovery.mdSkill has trigger sectionSelect-String "## Trigger" skills/local/{name}.mdSkill has verification stepsSelect-String "## Verification" skills/local/{name}.mdMemory updatedSelect-String "phoenix-loop" memory/{today}.mdPrivacy check passedSkill file contains no \`apiKey

### Scenario: Missing API Key Blocks Task

1. Diagnose:

Blocker: Missing Brave API key
Attempted: web_search (failed)
Unblock Input: User runs \`openclaw configure --section web\`

2. Extract Pattern:

Failure Pattern: missing-api-key
Trigger: Tool requires unconfigured API key
Solution: 1. Detect missing key 2. Return config command 3. Provide fallback

3. Crystallize Skill:

# Missing API Key Recovery

## Trigger
When tool returns "missing_*_api_key" error

## Steps
1. Extract required key name
2. Return config command: openclaw configure --section {section}
3. Provide manual fallback option

## Verification
- [ ] User receives clear config instructions
- [ ] At least 1 alternative provided

4. Verify:
Next time an API key issue occurs, auto-apply this skill.

### Heartbeat Integration

Add to HEARTBEAT.md:

## Self-Check (Every 24 Hours)
1. Check \`memory/blocked-items.md\` for blockers older than 24h
2. Run phoenix-loop diagnosis on each long-term blocker
3. If reusable pattern found, create or update skill

### Rollback

If the skill causes issues:

# Disable skill (rename)
Rename-Item skills/local/{name}-recovery.md skills/local/{name}-recovery.md.disabled

# Delete skill
Remove-Item skills/local/{name}-recovery.md

### References

memory/blocked-items.md - Blocker records
memory/tasks.md - Task history
skills/local/ - Local skill library

Rise stronger from every failure.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Dalomeve
- 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-05-03T03:08:23.447Z
- Expires at: 2026-05-10T03:08:23.447Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/phoenix-loop)
- [Send to Agent page](https://openagent3.xyz/skills/phoenix-loop/agent)
- [JSON manifest](https://openagent3.xyz/skills/phoenix-loop/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/phoenix-loop/agent.md)
- [Download page](https://openagent3.xyz/downloads/phoenix-loop)