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

### duely

A CLI for tracking recurring maintenance tasks. Know what's due, mark it done, and keep a log.

### Why duely?

Simple recurring tasks — No calendar overhead for maintenance chores
Overdue alerts — See what you've been putting off
Execution log — Know when things last ran

### Installation

brew tap halbotley/tap
brew install duely

### Add a recurring task

duely add backups --name "Database backups" --every 1d
duely add vault-review --name "Vault review" --every 3d
duely add oil-change --name "Oil change" --every 90d --start 2025-06-01

Intervals: 12h, 1d, 3d, 1w, 30d, 90d, etc.

### List all tasks

duely list

### Show tasks that are due now

duely due

Shows overdue tasks with ⚠️ warnings.

### Mark a task as done

duely run backups
duely run backups --notes "Full backup completed"

### Skip a task (reschedule without running)

duely skip vault-review
duely skip vault-review --reason "On vacation"

### View execution log

duely log

### Remove a task

duely remove old-task

### Agent Integration

duely works well with agent heartbeats or cron-triggered checks:

# Check for due tasks and act on them
duely due
# After completing the task:
duely run <task-id> --notes "Completed by agent"

### Notes

Task IDs must be lowercase with no spaces
--start defaults to now if not specified
--every accepts hours (h), days (d), and weeks (w)
Data stored locally in ~/.duely/
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: halbotley
- 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-11T23:46:17.612Z
- Expires at: 2026-05-18T23:46:17.612Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/duely)
- [Send to Agent page](https://openagent3.xyz/skills/duely/agent)
- [JSON manifest](https://openagent3.xyz/skills/duely/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/duely/agent.md)
- [Download page](https://openagent3.xyz/downloads/duely)