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

### ✅ Vikunja Fast Skill

Use Vikunja as the source of truth for tasks and completions, and interact with it from Clawdbot.

### Setup

You can provide credentials either via environment variables or via Clawdbot’s skills config.

### Option A: Environment variables

Set these environment variables in the same environment where the gateway runs:

export VIKUNJA_URL="https://vikunja.xyz"

# Recommended: use a JWT (starts with "eyJ")
export VIKUNJA_TOKEN="<jwt>"

# Alternative: login with username/password (the helper CLI will request a JWT)
export VIKUNJA_USERNAME="<username>"
export VIKUNJA_PASSWORD="<password>"

### Option B: Clawdbot skills config (recommended for the agent)

Edit ~/.clawdbot/clawdbot.json:

{
  skills: {
    entries: {
      "vikunja-fast": {
        enabled: true,
        env: {
          VIKUNJA_URL: "https://vikunja.xyz",
          VIKUNJA_TOKEN: "<jwt>"
        }
      }
    }
  }
}

Notes:

VIKUNJA_URL can be the base URL; the helper normalizes to /api/v1.
Vikunja auth expects a JWT bearer token for most API calls (Authorization: Bearer <jwt>).
If you only have a non-JWT token (often starts with tk_...), use /login to obtain a JWT.

### Login (get a JWT)

curl -fsS -X POST "$VIKUNJA_URL/login" \\
  -H "Content-Type: application/json" \\
  -d '{"username":"YOUR_USERNAME","password":"YOUR_PASSWORD","long_token":true}' | jq

### Who am I? (requires JWT)

curl -fsS "$VIKUNJA_URL/user" \\
  -H "Authorization: Bearer $VIKUNJA_TOKEN" | jq

### List projects

curl -fsS "$VIKUNJA_URL/projects" \\
  -H "Authorization: Bearer $VIKUNJA_TOKEN" | jq '.[] | {id, title}'

### Commands

This skill ships with a tiny helper CLI:

{baseDir}/vikunja.sh

Examples:

# Overdue across all projects
{baseDir}/vikunja.sh overdue

# Due today
{baseDir}/vikunja.sh due-today

# Arbitrary filter (Vikunja filter syntax)
{baseDir}/vikunja.sh list --filter 'done = false && due_date < now'

# Show / complete a task
{baseDir}/vikunja.sh show 123
{baseDir}/vikunja.sh done 123

Notes:

Output formatting:

Each task should be formated as: <EMOJI> <DUE_DATE> - #<ID> <TASK>
Emoji comes from the project title when it starts with one; otherwise uses 🔨
Due dates are rendered as Mon/D (time + year removed)


This skill uses GET /tasks/all to fetch tasks across all projects

### Mark task done

TASK_ID=123

curl -fsS -X POST "$VIKUNJA_URL/tasks/$TASK_ID" \\
  -H "Authorization: Bearer $VIKUNJA_TOKEN" \\
  -H "Content-Type: application/json" \\
  -d '{"done": true}' | jq
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tmigone
- 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-10T16:31:14.784Z
- Expires at: 2026-05-17T16:31:14.784Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vikunja-fast)
- [Send to Agent page](https://openagent3.xyz/skills/vikunja-fast/agent)
- [JSON manifest](https://openagent3.xyz/skills/vikunja-fast/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vikunja-fast/agent.md)
- [Download page](https://openagent3.xyz/downloads/vikunja-fast)