{
  "schemaVersion": "1.0",
  "item": {
    "slug": "repo-kanban-pm",
    "name": "Repo Kanban PM",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Michailbul/repo-kanban-pm",
    "canonicalUrl": "https://clawhub.ai/Michailbul/repo-kanban-pm",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/repo-kanban-pm",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=repo-kanban-pm",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/add_daily_pm_cron.sh",
      "scripts/init_repo_pm.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/repo-kanban-pm"
    },
    "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/repo-kanban-pm",
    "agentPageUrl": "https://openagent3.xyz/skills/repo-kanban-pm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/repo-kanban-pm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/repo-kanban-pm/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": "What this skill does",
        "body": "Sets up a multi-agent-safe product workflow in a repo:\n\ndocs/roadmap/ROADMAP.md as the portfolio status\ndocs/features/<feature>/KANBAN.md as execution boards\ndocs/pm/bugs/ as the bug intake + triage inbox (linkable into KANBAN)\nUpdates AGENTS.md to enforce the workflow\n(Optional) creates a daily OpenClaw cron job to run a PM review (includes bug triage)"
      },
      {
        "title": "When to use this skill (decision rule)",
        "body": "Use repo-kanban-pm when you are tasked with either:\n\nCreating/spinning up a new project/repo and multiple agents will work on it (or you want to avoid chaos later).\n\nGoal: install ROADMAP + per-feature KANBAN boards immediately.\n\n\n\nEntering an existing repo to fix, refactor, or restructure it and it does not have a clear feature/backlog tracking system.\n\nGoal: introduce the kanban workflow so subsequent work is trackable and PRs stay aligned.\n\nDo not use this skill if the repo already has an equivalent system that the team actively uses (avoid duplicating governance)."
      },
      {
        "title": "1) Initialize the repo workflow",
        "body": "Run:\n\nbash scripts/init_repo_pm.sh /absolute/path/to/repo\n\nThis will:\n\ncreate docs/pm/ with the workflow doc + template\ncreate docs/pm/bugs/ with bug README + template\nadd KANBAN.md to any existing docs/features/*/ folders\npatch AGENTS.md to include the kanban rules (idempotent)"
      },
      {
        "title": "2) Add a daily PM cron (optional)",
        "body": "Run:\n\nbash scripts/add_daily_pm_cron.sh /absolute/path/to/repo --agent persey --tz Europe/Minsk --time 10:00"
      },
      {
        "title": "Operating rules (agents)",
        "body": "Pick a feature from docs/roadmap/ROADMAP.md\nCreate/update docs/features/<feature>/KANBAN.md and set status to in-progress\nCreate a branch: feat/<feature-slug>-<short>\nPR must link the feature’s KANBAN.md\nOn merge: mark KANBAN.md as done and tick the ROADMAP checkbox"
      },
      {
        "title": "Templates",
        "body": "Workflow spec: docs/pm/KANBAN-SYSTEM.md\nFeature template: docs/pm/FEATURE-KANBAN-TEMPLATE.md"
      },
      {
        "title": "Notes",
        "body": "Keep KANBAN boards short.\nROADMAP contains status only; do not duplicate per-task detail there."
      }
    ],
    "body": "Repo Kanban PM System\nWhat this skill does\n\nSets up a multi-agent-safe product workflow in a repo:\n\ndocs/roadmap/ROADMAP.md as the portfolio status\ndocs/features/<feature>/KANBAN.md as execution boards\ndocs/pm/bugs/ as the bug intake + triage inbox (linkable into KANBAN)\nUpdates AGENTS.md to enforce the workflow\n(Optional) creates a daily OpenClaw cron job to run a PM review (includes bug triage)\nWhen to use this skill (decision rule)\n\nUse repo-kanban-pm when you are tasked with either:\n\nCreating/spinning up a new project/repo and multiple agents will work on it (or you want to avoid chaos later).\n\nGoal: install ROADMAP + per-feature KANBAN boards immediately.\n\nEntering an existing repo to fix, refactor, or restructure it and it does not have a clear feature/backlog tracking system.\n\nGoal: introduce the kanban workflow so subsequent work is trackable and PRs stay aligned.\n\nDo not use this skill if the repo already has an equivalent system that the team actively uses (avoid duplicating governance).\n\nQuick start\n1) Initialize the repo workflow\n\nRun:\n\nbash scripts/init_repo_pm.sh /absolute/path/to/repo\n\n\nThis will:\n\ncreate docs/pm/ with the workflow doc + template\ncreate docs/pm/bugs/ with bug README + template\nadd KANBAN.md to any existing docs/features/*/ folders\npatch AGENTS.md to include the kanban rules (idempotent)\n2) Add a daily PM cron (optional)\n\nRun:\n\nbash scripts/add_daily_pm_cron.sh /absolute/path/to/repo --agent persey --tz Europe/Minsk --time 10:00\n\nOperating rules (agents)\nPick a feature from docs/roadmap/ROADMAP.md\nCreate/update docs/features/<feature>/KANBAN.md and set status to in-progress\nCreate a branch: feat/<feature-slug>-<short>\nPR must link the feature’s KANBAN.md\nOn merge: mark KANBAN.md as done and tick the ROADMAP checkbox\nTemplates\nWorkflow spec: docs/pm/KANBAN-SYSTEM.md\nFeature template: docs/pm/FEATURE-KANBAN-TEMPLATE.md\nNotes\nKeep KANBAN boards short.\nROADMAP contains status only; do not duplicate per-task detail there."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Michailbul/repo-kanban-pm",
    "publisherUrl": "https://clawhub.ai/Michailbul/repo-kanban-pm",
    "owner": "Michailbul",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/repo-kanban-pm",
    "downloadUrl": "https://openagent3.xyz/downloads/repo-kanban-pm",
    "agentUrl": "https://openagent3.xyz/skills/repo-kanban-pm/agent",
    "manifestUrl": "https://openagent3.xyz/skills/repo-kanban-pm/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/repo-kanban-pm/agent.md"
  }
}