# Send Typefully Skill 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "typefully-drafts",
    "name": "Typefully Skill",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/chapati23/typefully-drafts",
    "canonicalUrl": "https://clawhub.ai/chapati23/typefully-drafts",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/typefully-drafts",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=typefully-drafts",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/typefully.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "typefully-drafts",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T15:57:12.095Z",
      "expiresAt": "2026-05-08T15:57:12.095Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=typefully-drafts",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=typefully-drafts",
        "contentDisposition": "attachment; filename=\"typefully-drafts-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "typefully-drafts"
      },
      "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/typefully-drafts"
    },
    "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/typefully-drafts",
    "downloadUrl": "https://openagent3.xyz/downloads/typefully-drafts",
    "agentUrl": "https://openagent3.xyz/skills/typefully-drafts/agent",
    "manifestUrl": "https://openagent3.xyz/skills/typefully-drafts/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/typefully-drafts/agent.md"
  }
}
```
## Documentation

### Typefully Skill

Manage Typefully drafts via the v2 API.

### Setup

Set your API key via one of:

Environment variable: export TYPEFULLY_API_KEY=your-key
Password store: pass insert typefully/api-key


(Optional) Set your social set ID:

Environment variable: export TYPEFULLY_SOCIAL_SET_ID=123456
Password store: pass insert typefully/social-set-id
If not set, the script auto-detects (errors if multiple accounts exist — use list-social-sets to find yours)


Enable "Development mode" in Typefully Settings → API to see draft IDs in the UI.

### Script Usage

bash scripts/typefully.sh <command> [options]

### Commands

CommandDescriptionlist-drafts [status] [limit]List drafts. Status: draft, scheduled, published (default: all). Limit default: 10.create-draft <text> [--thread] [--platform x,linkedin,...] [--schedule <iso8601|next-free-slot>]Create a draft. For threads, separate posts with \\n---\\n. Use - or omit text to read from stdin. Default platform: x.get-draft <draft_id>Get a single draft with full details.edit-draft <draft_id> <text> [--thread] [--platform x,linkedin]Update draft content. Supports --thread for thread editing.schedule-draft <draft_id> <iso8601|next-free-slot|now>Schedule or publish a draft.delete-draft <draft_id>Delete a draft.list-social-setsList available social sets (accounts).

### Examples

Create a simple tweet draft:

bash scripts/typefully.sh create-draft "Just shipped a new feature 🚀"

Create a thread:

bash scripts/typefully.sh create-draft "First tweet of the thread\\n---\\nSecond tweet\\n---\\nThird tweet" --thread

Create a thread from stdin (for longer content):

cat <<'EOF' | bash scripts/typefully.sh create-draft - --thread
First tweet of the thread\\n---\\nSecond tweet\\n---\\nThird tweet with the punchline
EOF

Create cross-platform draft (X + LinkedIn):

bash scripts/typefully.sh create-draft "Exciting update!" --platform x,linkedin

Schedule a draft for a specific time:

bash scripts/typefully.sh create-draft "Morning thoughts ☀️" --schedule "2026-03-01T09:00:00Z"

Schedule to next free slot:

bash scripts/typefully.sh schedule-draft 8196074 next-free-slot

List recent drafts:

bash scripts/typefully.sh list-drafts draft 5

### Notes

publish_at: "now" publishes immediately — use with caution
publish_at: "next-free-slot" uses the user's Typefully queue schedule
Thread posts are separated by \\n---\\n in the text argument
The script outputs JSON; pipe through jq for formatting
All API errors surface meaningful messages (401, 404, 429, etc.)
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: chapati23
- 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-01T15:57:12.095Z
- Expires at: 2026-05-08T15:57:12.095Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/typefully-drafts)
- [Send to Agent page](https://openagent3.xyz/skills/typefully-drafts/agent)
- [JSON manifest](https://openagent3.xyz/skills/typefully-drafts/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/typefully-drafts/agent.md)
- [Download page](https://openagent3.xyz/downloads/typefully-drafts)