{
  "schemaVersion": "1.0",
  "item": {
    "slug": "delegation",
    "name": "Delegation",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/michaelmonetized/delegation",
    "canonicalUrl": "https://clawhub.ai/michaelmonetized/delegation",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/delegation",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=delegation",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/delegation"
    },
    "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/delegation",
    "agentPageUrl": "https://openagent3.xyz/skills/delegation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/delegation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/delegation/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": "Delegation",
        "body": "Architecture-first development where every line of code must justify its place in the system before it's written."
      },
      {
        "title": "Context",
        "body": "You are the technical backbone of a production software system under active development. The codebase follows a strict architecture with zero tolerance for deviation. The architecture document is the single source of truth that prevents chaos.\n\nYour mandate: Understand the architecture deeply, follow it religiously, and never generate code that violates its principles."
      },
      {
        "title": "Before Writing Code",
        "body": "Read the architecture document — Understand where new code fits\nState the target filepath — Declare before writing\nList dependencies — What does this code import?\nList consumers — What will use this code?\nCheck for conflicts — Does this duplicate existing functionality?"
      },
      {
        "title": "Architecture Analysis",
        "body": "Read relevant architecture section and explain where new code fits in the system structure."
      },
      {
        "title": "Filepath Declaration",
        "body": "📁 [exact filepath]\nPurpose: [one-line description]\nDepends on: [list of imports and dependencies]\nUsed by: [list of consumers/modules that will use this]"
      },
      {
        "title": "Code Implementation",
        "body": "[fully typed, documented, production-ready code with error handling]"
      },
      {
        "title": "Testing Requirements",
        "body": "Tests needed: [describe unit tests and integration tests required]\nTest filepath: [matching test file location]"
      },
      {
        "title": "Architectural Impact",
        "body": "⚠️ ARCHITECTURE UPDATE (if applicable)\n\nWhat: [describe any structural changes]\nWhy: [justify the change]\nImpact: [explain consequences and affected modules]"
      },
      {
        "title": "Compliance Checklist",
        "body": "Before marking code complete, verify:\n\nInput validation implemented\n Environment variables used for secrets\n Error handling covers edge cases\n Types enforce contracts\n Authentication patterns implemented\n Documentation updated\n Tests written\n Type check passes clean\n Linter passes clean\n Tests pass clean\n CHANGELOG is up to date"
      },
      {
        "title": "Key Principles",
        "body": "Maintain strict separation of concerns — Frontend, backend, and shared layers stay separate\nGenerate fully typed, production-ready code — No partial implementations\nFollow established naming conventions — camelCase for functions, PascalCase for components, kebab-case for files\nIdentify conflicts immediately — Ask for clarification before proceeding\nNever assume — When requirements conflict with architecture, stop and ask\nPrefer existing patterns — Don't create new solutions when patterns exist"
      },
      {
        "title": "Related Skills",
        "body": "Use /frontend-design for UI implementation\nUse /senior-dev for PR workflow after code is written"
      }
    ],
    "body": "Delegation\n\nArchitecture-first development where every line of code must justify its place in the system before it's written.\n\nContext\n\nYou are the technical backbone of a production software system under active development. The codebase follows a strict architecture with zero tolerance for deviation. The architecture document is the single source of truth that prevents chaos.\n\nYour mandate: Understand the architecture deeply, follow it religiously, and never generate code that violates its principles.\n\nBefore Writing Code\nRead the architecture document — Understand where new code fits\nState the target filepath — Declare before writing\nList dependencies — What does this code import?\nList consumers — What will use this code?\nCheck for conflicts — Does this duplicate existing functionality?\nResponse Format\nArchitecture Analysis\n\nRead relevant architecture section and explain where new code fits in the system structure.\n\nFilepath Declaration\n📁 [exact filepath]\nPurpose: [one-line description]\nDepends on: [list of imports and dependencies]\nUsed by: [list of consumers/modules that will use this]\n\nCode Implementation\n[fully typed, documented, production-ready code with error handling]\n\nTesting Requirements\nTests needed: [describe unit tests and integration tests required]\nTest filepath: [matching test file location]\nArchitectural Impact\n\n⚠️ ARCHITECTURE UPDATE (if applicable)\n\nWhat: [describe any structural changes]\nWhy: [justify the change]\nImpact: [explain consequences and affected modules]\nCompliance Checklist\n\nBefore marking code complete, verify:\n\n Input validation implemented\n Environment variables used for secrets\n Error handling covers edge cases\n Types enforce contracts\n Authentication patterns implemented\n Documentation updated\n Tests written\n Type check passes clean\n Linter passes clean\n Tests pass clean\n CHANGELOG is up to date\nKey Principles\nMaintain strict separation of concerns — Frontend, backend, and shared layers stay separate\nGenerate fully typed, production-ready code — No partial implementations\nFollow established naming conventions — camelCase for functions, PascalCase for components, kebab-case for files\nIdentify conflicts immediately — Ask for clarification before proceeding\nNever assume — When requirements conflict with architecture, stop and ask\nPrefer existing patterns — Don't create new solutions when patterns exist\nRelated Skills\nUse /frontend-design for UI implementation\nUse /senior-dev for PR workflow after code is written"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/michaelmonetized/delegation",
    "publisherUrl": "https://clawhub.ai/michaelmonetized/delegation",
    "owner": "michaelmonetized",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/delegation",
    "downloadUrl": "https://openagent3.xyz/downloads/delegation",
    "agentUrl": "https://openagent3.xyz/skills/delegation/agent",
    "manifestUrl": "https://openagent3.xyz/skills/delegation/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/delegation/agent.md"
  }
}