{
  "schemaVersion": "1.0",
  "item": {
    "slug": "code-1-0-4",
    "name": "Code 1.0.4",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/Lion504/code-1-0-4",
    "canonicalUrl": "https://clawhub.ai/Lion504/code-1-0-4",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/code-1-0-4",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=code-1-0-4",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "criteria.md",
      "execution.md",
      "memory-template.md",
      "planning.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/code-1-0-4"
    },
    "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/code-1-0-4",
    "agentPageUrl": "https://openagent3.xyz/skills/code-1-0-4/agent",
    "manifestUrl": "https://openagent3.xyz/skills/code-1-0-4/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/code-1-0-4/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": "When to Use",
        "body": "User explicitly requests code implementation. Agent provides planning, execution guidance, and verification workflows."
      },
      {
        "title": "Architecture",
        "body": "User preferences stored in ~/code/ when user explicitly requests.\n\n~/code/\n  - memory.md    # User-provided preferences only\n\nCreate on first use: mkdir -p ~/code"
      },
      {
        "title": "Quick Reference",
        "body": "TopicFileMemory setupmemory-template.mdTask breakdownplanning.mdExecution flowexecution.mdVerificationverification.mdMulti-task statestate.mdUser criteriacriteria.md"
      },
      {
        "title": "Scope",
        "body": "This skill ONLY:\n\nProvides coding workflow guidance\nStores preferences user explicitly provides in ~/code/\nReads included reference files\n\nThis skill NEVER:\n\nExecutes code automatically\nMakes network requests\nAccesses files outside ~/code/ and the user's project\nModifies its own SKILL.md or auxiliary files\nTakes autonomous action without user awareness"
      },
      {
        "title": "1. Check Memory First",
        "body": "Read ~/code/memory.md for user's stated preferences if it exists."
      },
      {
        "title": "2. User Controls Execution",
        "body": "This skill provides GUIDANCE, not autonomous execution\nUser decides when to proceed to next step\nSub-agent delegation requires user's explicit request"
      },
      {
        "title": "3. Plan Before Code",
        "body": "Break requests into testable steps\nEach step independently verifiable\nSee planning.md for patterns"
      },
      {
        "title": "4. Verify Everything",
        "body": "AfterDoEach functionSuggest running testsUI changesSuggest taking screenshotBefore deliverySuggest full test suite"
      },
      {
        "title": "5. Store Preferences on Request",
        "body": "User saysAction\"Remember I prefer X\"Add to memory.md\"Never do Y again\"Add to memory.md Never section\n\nOnly store what user explicitly asks to save."
      },
      {
        "title": "Workflow",
        "body": "Request -> Plan -> Execute -> Verify -> Deliver"
      },
      {
        "title": "Common Traps",
        "body": "Delivering untested code -> always verify first\nHuge PRs -> break into testable chunks\nIgnoring preferences -> check memory.md first"
      },
      {
        "title": "Self-Modification",
        "body": "This skill NEVER modifies its own SKILL.md or auxiliary files.\nUser data stored only in ~/code/memory.md after explicit request."
      },
      {
        "title": "External Endpoints",
        "body": "This skill makes NO network requests.\n\nEndpointData SentPurposeNoneNoneN/A"
      },
      {
        "title": "Security & Privacy",
        "body": "Data that stays local:\n\nOnly preferences user explicitly asks to save\nStored in ~/code/memory.md\n\nData that leaves your machine:\n\nNone. This skill makes no network requests.\n\nThis skill does NOT:\n\nExecute code automatically\nAccess network or external services\nAccess files outside ~/code/ and user's project\nTake autonomous actions without user awareness\nDelegate to sub-agents without user's explicit request"
      }
    ],
    "body": "When to Use\n\nUser explicitly requests code implementation. Agent provides planning, execution guidance, and verification workflows.\n\nArchitecture\n\nUser preferences stored in ~/code/ when user explicitly requests.\n\n~/code/\n  - memory.md    # User-provided preferences only\n\n\nCreate on first use: mkdir -p ~/code\n\nQuick Reference\nTopic\tFile\nMemory setup\tmemory-template.md\nTask breakdown\tplanning.md\nExecution flow\texecution.md\nVerification\tverification.md\nMulti-task state\tstate.md\nUser criteria\tcriteria.md\nScope\n\nThis skill ONLY:\n\nProvides coding workflow guidance\nStores preferences user explicitly provides in ~/code/\nReads included reference files\n\nThis skill NEVER:\n\nExecutes code automatically\nMakes network requests\nAccesses files outside ~/code/ and the user's project\nModifies its own SKILL.md or auxiliary files\nTakes autonomous action without user awareness\nCore Rules\n1. Check Memory First\n\nRead ~/code/memory.md for user's stated preferences if it exists.\n\n2. User Controls Execution\nThis skill provides GUIDANCE, not autonomous execution\nUser decides when to proceed to next step\nSub-agent delegation requires user's explicit request\n3. Plan Before Code\nBreak requests into testable steps\nEach step independently verifiable\nSee planning.md for patterns\n4. Verify Everything\nAfter\tDo\nEach function\tSuggest running tests\nUI changes\tSuggest taking screenshot\nBefore delivery\tSuggest full test suite\n5. Store Preferences on Request\nUser says\tAction\n\"Remember I prefer X\"\tAdd to memory.md\n\"Never do Y again\"\tAdd to memory.md Never section\n\nOnly store what user explicitly asks to save.\n\nWorkflow\nRequest -> Plan -> Execute -> Verify -> Deliver\n\nCommon Traps\nDelivering untested code -> always verify first\nHuge PRs -> break into testable chunks\nIgnoring preferences -> check memory.md first\nSelf-Modification\n\nThis skill NEVER modifies its own SKILL.md or auxiliary files. User data stored only in ~/code/memory.md after explicit request.\n\nExternal Endpoints\n\nThis skill makes NO network requests.\n\nEndpoint\tData Sent\tPurpose\nNone\tNone\tN/A\nSecurity & Privacy\n\nData that stays local:\n\nOnly preferences user explicitly asks to save\nStored in ~/code/memory.md\n\nData that leaves your machine:\n\nNone. This skill makes no network requests.\n\nThis skill does NOT:\n\nExecute code automatically\nAccess network or external services\nAccess files outside ~/code/ and user's project\nTake autonomous actions without user awareness\nDelegate to sub-agents without user's explicit request"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Lion504/code-1-0-4",
    "publisherUrl": "https://clawhub.ai/Lion504/code-1-0-4",
    "owner": "Lion504",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/code-1-0-4",
    "downloadUrl": "https://openagent3.xyz/downloads/code-1-0-4",
    "agentUrl": "https://openagent3.xyz/skills/code-1-0-4/agent",
    "manifestUrl": "https://openagent3.xyz/skills/code-1-0-4/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/code-1-0-4/agent.md"
  }
}