{
  "schemaVersion": "1.0",
  "item": {
    "slug": "task-development-workflow",
    "name": "Task Development Workflow",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/anikgnr/task-development-workflow",
    "canonicalUrl": "https://clawhub.ai/anikgnr/task-development-workflow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/task-development-workflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-development-workflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/workflow-details.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/task-development-workflow"
    },
    "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/task-development-workflow",
    "agentPageUrl": "https://openagent3.xyz/skills/task-development-workflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-development-workflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-development-workflow/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": "Task Workflow",
        "body": "A structured development workflow enforcing quality through planning, TDD, and code review."
      },
      {
        "title": "Workflow Overview",
        "body": "Clarify → Plan → Approve → Implement (TDD) → PR → Review → Merge → Next Task"
      },
      {
        "title": "Phase 1: Clarification",
        "body": "Before any implementation, ask questions to clarify:\n\nBusiness requirements and goals\nUI/UX flow expectations\nArchitecture decisions\nTechnical constraints\nAmbiguous requirements\n\nDo not proceed until requirements are clear."
      },
      {
        "title": "Phase 2: Planning & Approval",
        "body": "Present a detailed plan with task breakdown\nKeep tasks small and focused\nWait for explicit approval before starting\nNo implementation without approval"
      },
      {
        "title": "Phase 3: Task Tracking Setup",
        "body": "Set up Trello board (or similar) with columns:\n\n📝 Backlog\n📋 To Do\n🔨 In Progress\n🔍 Review\n✅ Done\n\nAll tasks must be tracked on the board."
      },
      {
        "title": "Phase 4: Implementation (Per Task)",
        "body": "For each task:\n\nMove card to \"In Progress\"\nWrite tests first (TDD):\n\nDefine expected behavior in tests\nRun tests (should fail)\nImplement the feature\nRun tests (should pass)\n\n\nCommit after task completion\nTests may be skipped only with explicit approval"
      },
      {
        "title": "Phase 5: Branching & PR Policy",
        "body": "Rules:\n\nNever push directly to main\nNever change the default branch — main must always remain default\nCreate feature branches for each task\n\nAfter task completion:\n\nOpen PR from task branch → main\nInclude Trello task link in PR description\nMove card to \"Review\"\nNotify Reviewer with both Trello link and PR link"
      },
      {
        "title": "Phase 6: PR Feedback Loop",
        "body": "When CR comments arrive:\n\nMove task back to \"In Progress\"\nAddress all review comments\nPush fixes\nNotify Reviewer to re-review (include both links)\n\nRepeat until approved."
      },
      {
        "title": "Phase 7: Merge Gate",
        "body": "Only pick the next task after current PR is merged\nMove completed card to \"Done\"\nThen proceed to next task from \"To Do\""
      },
      {
        "title": "Flow Diagram",
        "body": "Backlog → To Do → In Progress → Review → Done\n                      ↑            │\n                      └─── CR ─────┘"
      },
      {
        "title": "New Project Bootstrap",
        "body": "For new projects:\n\nCreate repository with initial README\nPush to remote\nThen begin implementation tasks"
      },
      {
        "title": "Key Principles",
        "body": "Quality over speed — TDD catches bugs early\nSmall tasks — easier to review and merge\nClear communication — always notify reviewers\nNo shortcuts — follow the process every time"
      }
    ],
    "body": "Task Workflow\n\nA structured development workflow enforcing quality through planning, TDD, and code review.\n\nWorkflow Overview\nClarify → Plan → Approve → Implement (TDD) → PR → Review → Merge → Next Task\n\nPhase 1: Clarification\n\nBefore any implementation, ask questions to clarify:\n\nBusiness requirements and goals\nUI/UX flow expectations\nArchitecture decisions\nTechnical constraints\nAmbiguous requirements\n\nDo not proceed until requirements are clear.\n\nPhase 2: Planning & Approval\nPresent a detailed plan with task breakdown\nKeep tasks small and focused\nWait for explicit approval before starting\nNo implementation without approval\nPhase 3: Task Tracking Setup\n\nSet up Trello board (or similar) with columns:\n\n📝 Backlog\n📋 To Do\n🔨 In Progress\n🔍 Review\n✅ Done\n\nAll tasks must be tracked on the board.\n\nPhase 4: Implementation (Per Task)\n\nFor each task:\n\nMove card to \"In Progress\"\nWrite tests first (TDD):\nDefine expected behavior in tests\nRun tests (should fail)\nImplement the feature\nRun tests (should pass)\nCommit after task completion\nTests may be skipped only with explicit approval\nPhase 5: Branching & PR Policy\n\nRules:\n\nNever push directly to main\nNever change the default branch — main must always remain default\nCreate feature branches for each task\n\nAfter task completion:\n\nOpen PR from task branch → main\nInclude Trello task link in PR description\nMove card to \"Review\"\nNotify Reviewer with both Trello link and PR link\nPhase 6: PR Feedback Loop\n\nWhen CR comments arrive:\n\nMove task back to \"In Progress\"\nAddress all review comments\nPush fixes\nNotify Reviewer to re-review (include both links)\n\nRepeat until approved.\n\nPhase 7: Merge Gate\nOnly pick the next task after current PR is merged\nMove completed card to \"Done\"\nThen proceed to next task from \"To Do\"\nFlow Diagram\nBacklog → To Do → In Progress → Review → Done\n                      ↑            │\n                      └─── CR ─────┘\n\nNew Project Bootstrap\n\nFor new projects:\n\nCreate repository with initial README\nPush to remote\nThen begin implementation tasks\nKey Principles\nQuality over speed — TDD catches bugs early\nSmall tasks — easier to review and merge\nClear communication — always notify reviewers\nNo shortcuts — follow the process every time"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/anikgnr/task-development-workflow",
    "publisherUrl": "https://clawhub.ai/anikgnr/task-development-workflow",
    "owner": "anikgnr",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/task-development-workflow",
    "downloadUrl": "https://openagent3.xyz/downloads/task-development-workflow",
    "agentUrl": "https://openagent3.xyz/skills/task-development-workflow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/task-development-workflow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/task-development-workflow/agent.md"
  }
}