# Send Task Development Workflow 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": "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": {
    "downloadUrl": "/downloads/task-development-workflow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-development-workflow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/workflow-details.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "task-development-workflow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T17:47:17.400Z",
      "expiresAt": "2026-05-16T17:47:17.400Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-development-workflow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=task-development-workflow",
        "contentDisposition": "attachment; filename=\"task-development-workflow-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "task-development-workflow"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Task Workflow

A structured development workflow enforcing quality through planning, TDD, and code review.

### Workflow Overview

Clarify → Plan → Approve → Implement (TDD) → PR → Review → Merge → Next Task

### Phase 1: Clarification

Before any implementation, ask questions to clarify:

Business requirements and goals
UI/UX flow expectations
Architecture decisions
Technical constraints
Ambiguous requirements

Do not proceed until requirements are clear.

### Phase 2: Planning & Approval

Present a detailed plan with task breakdown
Keep tasks small and focused
Wait for explicit approval before starting
No implementation without approval

### Phase 3: Task Tracking Setup

Set up Trello board (or similar) with columns:

📝 Backlog
📋 To Do
🔨 In Progress
🔍 Review
✅ Done

All tasks must be tracked on the board.

### Phase 4: Implementation (Per Task)

For each task:

Move card to "In Progress"
Write tests first (TDD):

Define expected behavior in tests
Run tests (should fail)
Implement the feature
Run tests (should pass)


Commit after task completion
Tests may be skipped only with explicit approval

### Phase 5: Branching & PR Policy

Rules:

Never push directly to main
Never change the default branch — main must always remain default
Create feature branches for each task

After task completion:

Open PR from task branch → main
Include Trello task link in PR description
Move card to "Review"
Notify Reviewer with both Trello link and PR link

### Phase 6: PR Feedback Loop

When CR comments arrive:

Move task back to "In Progress"
Address all review comments
Push fixes
Notify Reviewer to re-review (include both links)

Repeat until approved.

### Phase 7: Merge Gate

Only pick the next task after current PR is merged
Move completed card to "Done"
Then proceed to next task from "To Do"

### Flow Diagram

Backlog → To Do → In Progress → Review → Done
                      ↑            │
                      └─── CR ─────┘

### New Project Bootstrap

For new projects:

Create repository with initial README
Push to remote
Then begin implementation tasks

### Key Principles

Quality over speed — TDD catches bugs early
Small tasks — easier to review and merge
Clear communication — always notify reviewers
No shortcuts — follow the process every time
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: anikgnr
- 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-09T17:47:17.400Z
- Expires at: 2026-05-16T17:47:17.400Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/task-development-workflow)
- [Send to Agent page](https://openagent3.xyz/skills/task-development-workflow/agent)
- [JSON manifest](https://openagent3.xyz/skills/task-development-workflow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/task-development-workflow/agent.md)
- [Download page](https://openagent3.xyz/downloads/task-development-workflow)