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

### EchoDecks Skill (v1)

Integrates with EchoDecks for flashcard management, study sessions, and AI generation.

### Configuration

This skill requires the ECHODECKS_API_KEY environment variable to be set.

### echodecks_get_decks

List all available decks or details for a specific deck.

id (optional): The ID of a specific deck to retrieve.

### echodecks_get_due_cards

Retrieve cards that are currently due for review.

deck_id (optional): Filter due cards by a specific deck ID.

### echodecks_submit_review

Submit a spaced repetition review for a card.

card_id (required): The ID of the card being reviewed.
quality (required): Integer rating (0-3).

0: Again (Failure/Forgot)
1: Hard
2: Good
3: Easy

### echodecks_generate_cards

Generate new flashcards from a topic or text content using AI.

deck_id (required): The target deck ID for the new cards.
topic (optional): A short topic string to generate from.
text (optional): Raw text content to generate from.
Note: One of topic or text must be provided. Cost: 10 credits.

### echodecks_generate_podcast

Generate an audio podcast summary or conversation from a deck.

deck_id (required): The source deck ID.
voice (optional): Voice preference (default: "neutral").
type (optional): "summary" or "conversation" (default: "summary").
Note: Cost: 50 credits.

### echodecks_get_podcasts

Retrieve existing podcasts for a deck.

deck_id (optional): Filter by deck ID.
id (optional): specific podcast ID.

### echodecks_get_user_stats

Get current user profile and study statistics.

### Implementation Details

All tools are wrappers around skills/echodecks-v1/echodecks_client.py.

# Example
./skills/echodecks-v1/echodecks_client.py get-due --deck-id 123
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: drgeld
- 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-01T07:39:41.353Z
- Expires at: 2026-05-08T07:39:41.353Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/echodecks)
- [Send to Agent page](https://openagent3.xyz/skills/echodecks/agent)
- [JSON manifest](https://openagent3.xyz/skills/echodecks/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/echodecks/agent.md)
- [Download page](https://openagent3.xyz/downloads/echodecks)