{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vikunja-fast",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vikunja-fast",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "vikunja.sh"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vikunja-fast",
    "agentPageUrl": "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"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "✅ Vikunja Fast Skill",
        "body": "Use Vikunja as the source of truth for tasks and completions, and interact with it from Clawdbot."
      },
      {
        "title": "Setup",
        "body": "You can provide credentials either via environment variables or via Clawdbot’s skills config."
      },
      {
        "title": "Option A: Environment variables",
        "body": "Set these environment variables in the same environment where the gateway runs:\n\nexport VIKUNJA_URL=\"https://vikunja.xyz\"\n\n# Recommended: use a JWT (starts with \"eyJ\")\nexport VIKUNJA_TOKEN=\"<jwt>\"\n\n# Alternative: login with username/password (the helper CLI will request a JWT)\nexport VIKUNJA_USERNAME=\"<username>\"\nexport VIKUNJA_PASSWORD=\"<password>\""
      },
      {
        "title": "Option B: Clawdbot skills config (recommended for the agent)",
        "body": "Edit ~/.clawdbot/clawdbot.json:\n\n{\n  skills: {\n    entries: {\n      \"vikunja-fast\": {\n        enabled: true,\n        env: {\n          VIKUNJA_URL: \"https://vikunja.xyz\",\n          VIKUNJA_TOKEN: \"<jwt>\"\n        }\n      }\n    }\n  }\n}\n\nNotes:\n\nVIKUNJA_URL can be the base URL; the helper normalizes to /api/v1.\nVikunja auth expects a JWT bearer token for most API calls (Authorization: Bearer <jwt>).\nIf you only have a non-JWT token (often starts with tk_...), use /login to obtain a JWT."
      },
      {
        "title": "Login (get a JWT)",
        "body": "curl -fsS -X POST \"$VIKUNJA_URL/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\":\"YOUR_USERNAME\",\"password\":\"YOUR_PASSWORD\",\"long_token\":true}' | jq"
      },
      {
        "title": "Who am I? (requires JWT)",
        "body": "curl -fsS \"$VIKUNJA_URL/user\" \\\n  -H \"Authorization: Bearer $VIKUNJA_TOKEN\" | jq"
      },
      {
        "title": "List projects",
        "body": "curl -fsS \"$VIKUNJA_URL/projects\" \\\n  -H \"Authorization: Bearer $VIKUNJA_TOKEN\" | jq '.[] | {id, title}'"
      },
      {
        "title": "Commands",
        "body": "This skill ships with a tiny helper CLI:\n\n{baseDir}/vikunja.sh\n\nExamples:\n\n# Overdue across all projects\n{baseDir}/vikunja.sh overdue\n\n# Due today\n{baseDir}/vikunja.sh due-today\n\n# Arbitrary filter (Vikunja filter syntax)\n{baseDir}/vikunja.sh list --filter 'done = false && due_date < now'\n\n# Show / complete a task\n{baseDir}/vikunja.sh show 123\n{baseDir}/vikunja.sh done 123\n\nNotes:\n\nOutput formatting:\n\nEach task should be formated as: <EMOJI> <DUE_DATE> - #<ID> <TASK>\nEmoji comes from the project title when it starts with one; otherwise uses 🔨\nDue dates are rendered as Mon/D (time + year removed)\n\n\nThis skill uses GET /tasks/all to fetch tasks across all projects"
      },
      {
        "title": "Mark task done",
        "body": "TASK_ID=123\n\ncurl -fsS -X POST \"$VIKUNJA_URL/tasks/$TASK_ID\" \\\n  -H \"Authorization: Bearer $VIKUNJA_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"done\": true}' | jq"
      }
    ],
    "body": "✅ Vikunja Fast Skill\n\nUse Vikunja as the source of truth for tasks and completions, and interact with it from Clawdbot.\n\nSetup\n\nYou can provide credentials either via environment variables or via Clawdbot’s skills config.\n\nOption A: Environment variables\n\nSet these environment variables in the same environment where the gateway runs:\n\nexport VIKUNJA_URL=\"https://vikunja.xyz\"\n\n# Recommended: use a JWT (starts with \"eyJ\")\nexport VIKUNJA_TOKEN=\"<jwt>\"\n\n# Alternative: login with username/password (the helper CLI will request a JWT)\nexport VIKUNJA_USERNAME=\"<username>\"\nexport VIKUNJA_PASSWORD=\"<password>\"\n\nOption B: Clawdbot skills config (recommended for the agent)\n\nEdit ~/.clawdbot/clawdbot.json:\n\n{\n  skills: {\n    entries: {\n      \"vikunja-fast\": {\n        enabled: true,\n        env: {\n          VIKUNJA_URL: \"https://vikunja.xyz\",\n          VIKUNJA_TOKEN: \"<jwt>\"\n        }\n      }\n    }\n  }\n}\n\n\nNotes:\n\nVIKUNJA_URL can be the base URL; the helper normalizes to /api/v1.\nVikunja auth expects a JWT bearer token for most API calls (Authorization: Bearer <jwt>).\nIf you only have a non-JWT token (often starts with tk_...), use /login to obtain a JWT.\nQuick checks\nLogin (get a JWT)\ncurl -fsS -X POST \"$VIKUNJA_URL/login\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"username\":\"YOUR_USERNAME\",\"password\":\"YOUR_PASSWORD\",\"long_token\":true}' | jq\n\nWho am I? (requires JWT)\ncurl -fsS \"$VIKUNJA_URL/user\" \\\n  -H \"Authorization: Bearer $VIKUNJA_TOKEN\" | jq\n\nList projects\ncurl -fsS \"$VIKUNJA_URL/projects\" \\\n  -H \"Authorization: Bearer $VIKUNJA_TOKEN\" | jq '.[] | {id, title}'\n\nCommands\n\nThis skill ships with a tiny helper CLI:\n\n{baseDir}/vikunja.sh\n\nExamples:\n\n# Overdue across all projects\n{baseDir}/vikunja.sh overdue\n\n# Due today\n{baseDir}/vikunja.sh due-today\n\n# Arbitrary filter (Vikunja filter syntax)\n{baseDir}/vikunja.sh list --filter 'done = false && due_date < now'\n\n# Show / complete a task\n{baseDir}/vikunja.sh show 123\n{baseDir}/vikunja.sh done 123\n\n\nNotes:\n\nOutput formatting:\nEach task should be formated as: <EMOJI> <DUE_DATE> - #<ID> <TASK>\nEmoji comes from the project title when it starts with one; otherwise uses 🔨\nDue dates are rendered as Mon/D (time + year removed)\nThis skill uses GET /tasks/all to fetch tasks across all projects\nMark task done\nTASK_ID=123\n\ncurl -fsS -X POST \"$VIKUNJA_URL/tasks/$TASK_ID\" \\\n  -H \"Authorization: Bearer $VIKUNJA_TOKEN\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"done\": true}' | jq"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/tmigone/vikunja-fast",
    "publisherUrl": "https://clawhub.ai/tmigone/vikunja-fast",
    "owner": "tmigone",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}