{
  "schemaVersion": "1.0",
  "item": {
    "slug": "weeek-tasks",
    "name": "weeek-tasks",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/alex-indi/weeek-tasks",
    "canonicalUrl": "https://clawhub.ai/alex-indi/weeek-tasks",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/weeek-tasks",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weeek-tasks",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "SKILL.md",
      "scripts/weeek_api.py",
      "references/api.md"
    ],
    "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/weeek-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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/weeek-tasks",
    "agentPageUrl": "https://openagent3.xyz/skills/weeek-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weeek-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weeek-tasks/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": "Быстрый старт",
        "body": "Установить переменные окружения:\n\nWEEEK_TOKEN — токен авторизации\nWEEEK_USER_ID — ваш ID в WEEEK (опционально)\n\n\nИспользовать scripts/weeek_api.py для операций.\nДля справки по эндпоинтам читать references/api.md."
      },
      {
        "title": "Получить задачи",
        "body": "python scripts/weeek_api.py list-tasks --day DD.MM.YYYY --board-id ID_доски --board-column-id ID_колонки"
      },
      {
        "title": "Создать задачу",
        "body": "python scripts/weeek_api.py create-task --title \"Задача\" --day DD.MM.YYYY --no-locations\n\nЕсли нужна привязка к проекту/доске — передать project_id/board_id/board_column_id или JSON:\n\npython scripts/weeek_api.py create-task --title \"Задача\" --locations-json '[{\"boardId\":ID_доски,\"boardColumnId\":ID_колонки}]'"
      },
      {
        "title": "Обновить задачу",
        "body": "python scripts/weeek_api.py update-task ID_задачи --title \"Новый заголовок\" --priority 2"
      },
      {
        "title": "Завершить / вернуть",
        "body": "python scripts/weeek_api.py complete-task ID_задачи\npython scripts/weeek_api.py uncomplete-task ID_задачи"
      },
      {
        "title": "Переместить",
        "body": "python scripts/weeek_api.py move-board ID_задачи --board-id ID_доски\npython scripts/weeek_api.py move-board-column ID_задачи --board-column-id ID_колонки"
      },
      {
        "title": "Списки проектов/досок/колонок",
        "body": "python scripts/weeek_api.py list-projects\npython scripts/weeek_api.py list-boards --project-id ID_проекта\npython scripts/weeek_api.py list-board-columns --board-id ID_доски\n\nID можно получить через list-projects, list-boards, list-board-columns."
      },
      {
        "title": "Ограничения и вопросы",
        "body": "Формат day в docs указан как string; точный формат подтвердить у пользователя.\nПо умолчанию создаются «датные» задачи без привязки к проектам/доскам (--no-locations).\nЕсли задан WEEEK_USER_ID, он автоматически ставится в userId и assignees при создании."
      }
    ],
    "body": "WEEEK задачи\nБыстрый старт\nУстановить переменные окружения:\nWEEEK_TOKEN — токен авторизации\nWEEEK_USER_ID — ваш ID в WEEEK (опционально)\nИспользовать scripts/weeek_api.py для операций.\nДля справки по эндпоинтам читать references/api.md.\nСкрипт\nПолучить задачи\npython scripts/weeek_api.py list-tasks --day DD.MM.YYYY --board-id ID_доски --board-column-id ID_колонки\n\nСоздать задачу\npython scripts/weeek_api.py create-task --title \"Задача\" --day DD.MM.YYYY --no-locations\n\n\nЕсли нужна привязка к проекту/доске — передать project_id/board_id/board_column_id или JSON:\n\npython scripts/weeek_api.py create-task --title \"Задача\" --locations-json '[{\"boardId\":ID_доски,\"boardColumnId\":ID_колонки}]'\n\nОбновить задачу\npython scripts/weeek_api.py update-task ID_задачи --title \"Новый заголовок\" --priority 2\n\nЗавершить / вернуть\npython scripts/weeek_api.py complete-task ID_задачи\npython scripts/weeek_api.py uncomplete-task ID_задачи\n\nПереместить\npython scripts/weeek_api.py move-board ID_задачи --board-id ID_доски\npython scripts/weeek_api.py move-board-column ID_задачи --board-column-id ID_колонки\n\nСписки проектов/досок/колонок\npython scripts/weeek_api.py list-projects\npython scripts/weeek_api.py list-boards --project-id ID_проекта\npython scripts/weeek_api.py list-board-columns --board-id ID_доски\n\n\nID можно получить через list-projects, list-boards, list-board-columns.\n\nОграничения и вопросы\nФормат day в docs указан как string; точный формат подтвердить у пользователя.\nПо умолчанию создаются «датные» задачи без привязки к проектам/доскам (--no-locations).\nЕсли задан WEEEK_USER_ID, он автоматически ставится в userId и assignees при создании."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/alex-indi/weeek-tasks",
    "publisherUrl": "https://clawhub.ai/alex-indi/weeek-tasks",
    "owner": "alex-indi",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/weeek-tasks",
    "downloadUrl": "https://openagent3.xyz/downloads/weeek-tasks",
    "agentUrl": "https://openagent3.xyz/skills/weeek-tasks/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weeek-tasks/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weeek-tasks/agent.md"
  }
}