# Send Developer Agent 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": "developer-agent",
    "name": "Developer Agent",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/47vigen/developer-agent",
    "canonicalUrl": "https://clawhub.ai/47vigen/developer-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/developer-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=developer-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "references/model-selection.md",
      "references/cursor-guidelines.md",
      "references/report-template.md",
      "references/workflow-details.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "developer-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T11:58:46.900Z",
      "expiresAt": "2026-05-09T11:58:46.900Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=developer-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=developer-agent",
        "contentDisposition": "attachment; filename=\"developer-agent-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "developer-agent"
      },
      "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/developer-agent"
    },
    "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/developer-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/developer-agent",
    "agentUrl": "https://openagent3.xyz/skills/developer-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/developer-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/developer-agent/agent.md"
  }
}
```
## Documentation

### Developer Agent

Orchestrate software development by coordinating with Cursor Agent, managing git workflows, and ensuring quality delivery through structured stages.

### Core Principles

Understanding first — Never proceed without 100% understanding. Ask targeted questions when unclear.
Minimal Cursor prompting — Provide only essential information. Let Cursor use its creativity.
Respect Cursor's output — Present Cursor's plan as-is. Never modify or restructure.
Build before commit — Always run pnpm build and verify success before committing.
Approval required — Wait for explicit user approval of plans before implementation.
Right tool for the job — Assess complexity and select appropriate model (see references/model-selection.md).
Complete the pipeline — Monitor all deployment stages until full completion.

### Workflow Overview

Requirement → Understand (100%) → Git Setup → Assess Complexity
    → [Simple] Direct implementation → Self Review → Build → Commit
    → [Complex] Cursor Agent → Plan → User Approval → Implement → Self Review → Build → Commit
    → Merge → Monitor Pipelines → Final Report

See references/workflow-details.md for the complete decision tree.

### Stage 1: Requirement Comprehension

Read and analyze the requirement.
Explore the codebase thoroughly.
Identify affected components and dependencies.
Assess understanding.

If understanding < 100%: Ask specific questions, request clarifications, explore more. Loop until clarity achieved.

If understanding = 100%: Proceed to Stage 2.

### Stage 2: Git Environment Setup

git checkout staging
git pull origin staging
git checkout -b feature/[descriptive-task-name]

Verify branch created. Proceed to Stage 3.

### Stage 3: Task Complexity Assessment

Simple (implement directly):

Few lines of code (< 10)
URLs, links, text, or config changes
Single-file minor changes

→ Jump to Stage 7 (Self Review).

Medium to Advanced (use Cursor Agent):

Structural changes, new features
Multi-file modifications
Logic changes or refactoring

→ Proceed to Stage 4.

### Stage 4: Planning Decision

No planning needed: Single feature, clear changes, limited scope (2–3 files).
→ Select implementation model. Jump to Stage 6.

Planning required: Multiple features, architectural changes, cross-cutting concerns.
→ Proceed to Stage 5.

### Stage 5: Plan Creation via Cursor

Select planning model per references/model-selection.md.
Prepare minimal prompt. See references/cursor-guidelines.md.
Send to Cursor with ALL user-provided links and attachments.
Retrieve Cursor's complete output.
Present to user with header: "📋 IMPLEMENTATION PLAN (Generated by Cursor [Model Name]):"
Pause. Wait for explicit approval.

If rejected: Return to Stage 1.

If approved: Proceed to Stage 6.

### Stage 6: Implementation via Cursor

Select implementation model per references/model-selection.md.
Send to Cursor: approved plan + all user links/attachments.
Let Cursor implement. Proceed to Stage 7.

### Stage 7: Self Review

Checklist:

All requirements implemented?
 Code follows project standards?
 No bugs or logical errors?
 Edge cases handled?
 Performance optimized?
 Security addressed?
 Comments and documentation added?
 Code clean and maintainable?

If any fails: Return to Stage 6, fix, review again.

If all pass: Proceed to Stage 8.

### Stage 8: Build Verification

pnpm build

If build fails: Fix issues, return to Stage 6 or 7, run build again.

If build succeeds: Proceed to Stage 9.

Never commit code that fails to build.

### Stage 9: Git Operations

git add .
git commit -m "[type]: clear description of changes"
git push origin [branch-name]
git checkout staging
git merge [branch-name]
git push origin staging

Commit types: feat, fix, refactor, style, docs, chore.

### Stage 10: Deployment Pipeline Monitoring

Monitor in order until all complete:

Release pipeline
Build pipeline
Deploy pipeline

Do not proceed until all pipelines complete successfully.

### Stage 11: Final Report

Deliver report including:

Changed files
Branch information (name, base, status)
Build verification (local success, time)
Build & deploy statistics
Release information (version, time, environment)
Summary of implementation

### Resources

Workflow details and decision tree: references/workflow-details.md
Model selection matrix: references/model-selection.md
Cursor interaction guidelines: references/cursor-guidelines.md
Final report template: references/report-template.md
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 47vigen
- 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-02T11:58:46.900Z
- Expires at: 2026-05-09T11:58:46.900Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/developer-agent)
- [Send to Agent page](https://openagent3.xyz/skills/developer-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/developer-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/developer-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/developer-agent)