# Send Vikunja Tasks 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": "vikunja-tasks",
    "name": "Vikunja Tasks",
    "source": "tencent",
    "type": "skill",
    "category": "效率提升",
    "sourceUrl": "https://clawhub.ai/nickian/vikunja-tasks",
    "canonicalUrl": "https://clawhub.ai/nickian/vikunja-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vikunja-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vikunja-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/vikunja.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vikunja-tasks",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T14:40:57.360Z",
      "expiresAt": "2026-05-08T14:40:57.360Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vikunja-tasks",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vikunja-tasks",
        "contentDisposition": "attachment; filename=\"vikunja-tasks-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vikunja-tasks"
      },
      "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/vikunja-tasks"
    },
    "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/vikunja-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/vikunja-tasks",
    "agentUrl": "https://openagent3.xyz/skills/vikunja-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vikunja-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vikunja-tasks/agent.md"
  }
}
```
## Documentation

### Vikunja Task Manager

Manage tasks and projects on a self-hosted Vikunja instance via REST API.

### Setup

Set these environment variables:

export VIKUNJA_URL="https://your-vikunja-instance.com"
export VIKUNJA_TOKEN="your-api-token"

Get your API token: Vikunja → Settings → API Tokens → Create token.

### List tasks

{baseDir}/scripts/vikunja.sh tasks --count 10
{baseDir}/scripts/vikunja.sh tasks --project "Shopping" --count 5
{baseDir}/scripts/vikunja.sh tasks --search "groceries"
{baseDir}/scripts/vikunja.sh tasks --sort priority --order desc

### Overdue tasks

{baseDir}/scripts/vikunja.sh overdue

### Tasks due soon (next N hours)

{baseDir}/scripts/vikunja.sh due --hours 24
{baseDir}/scripts/vikunja.sh due --hours 48

### Create a task

{baseDir}/scripts/vikunja.sh create-task --project "Tasks" --title "Buy milk" --due "2026-02-01" --priority 3

Priority: 1 (low) to 5 (urgent). Due date format: YYYY-MM-DD.

### Complete a task

{baseDir}/scripts/vikunja.sh complete --id 123

### Get task details

{baseDir}/scripts/vikunja.sh task --id 123

### List projects

{baseDir}/scripts/vikunja.sh projects

### Create a project

{baseDir}/scripts/vikunja.sh create-project --title "New Project" --description "Optional description"

### Get notifications

{baseDir}/scripts/vikunja.sh notifications

### Due Date Monitoring

To get proactive notifications about due/overdue tasks, set up a cron job:

clawdbot cron add \\
  --name "Task due check" \\
  --cron "0 9,14 * * *" \\
  --tz "America/Denver" \\
  --session isolated \\
  --message "Check Vikunja for overdue and upcoming tasks (next 24 hours). If any are found, notify me with the list." \\
  --deliver \\
  --channel telegram

### Notes

Project names in --project are case-insensitive
Filter expressions follow Vikunja filter syntax (see https://vikunja.io/docs/filters)
All times are handled in America/Denver timezone
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nickian
- 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-01T14:40:57.360Z
- Expires at: 2026-05-08T14:40:57.360Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vikunja-tasks)
- [Send to Agent page](https://openagent3.xyz/skills/vikunja-tasks/agent)
- [JSON manifest](https://openagent3.xyz/skills/vikunja-tasks/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vikunja-tasks/agent.md)
- [Download page](https://openagent3.xyz/downloads/vikunja-tasks)