{
  "schemaVersion": "1.0",
  "item": {
    "slug": "prompt-engineering",
    "name": "Prompt Engineering",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/okaris/prompt-engineering",
    "canonicalUrl": "https://clawhub.ai/okaris/prompt-engineering",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/prompt-engineering",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prompt-engineering",
    "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/prompt-engineering"
    },
    "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/prompt-engineering",
    "agentPageUrl": "https://openagent3.xyz/skills/prompt-engineering/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prompt-engineering/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prompt-engineering/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": "Prompt Engineering Guide",
        "body": "Master prompt engineering for AI models via inference.sh CLI."
      },
      {
        "title": "Quick Start",
        "body": "curl -fsSL https://cli.inference.sh | sh && infsh login\n\n# Well-structured LLM prompt\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"You are a senior software engineer. Review this code for security vulnerabilities:\\n\\n```python\\nuser_input = request.args.get(\\\"query\\\")\\nresult = db.execute(f\\\"SELECT * FROM users WHERE name = {user_input}\\\")\\n```\\n\\nProvide specific issues and fixes.\"\n}'\n\nInstall note: The install script only detects your OS/architecture, downloads the matching binary from dist.inference.sh, and verifies its SHA-256 checksum. No elevated permissions or background processes. Manual install & verification available."
      },
      {
        "title": "Basic Structure",
        "body": "[Role/Context] + [Task] + [Constraints] + [Output Format]"
      },
      {
        "title": "Role Prompting",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"You are an expert data scientist with 15 years of experience in machine learning. Explain gradient descent to a beginner, using simple analogies.\"\n}'"
      },
      {
        "title": "Task Clarity",
        "body": "# Bad: vague\n\"Help me with my code\"\n\n# Good: specific\n\"Debug this Python function that should return the sum of even numbers from a list, but returns 0 for all inputs:\n\ndef sum_evens(numbers):\n    total = 0\n    for n in numbers:\n        if n % 2 == 0:\n            total += n\n        return total\n\nIdentify the bug and provide the corrected code.\""
      },
      {
        "title": "Chain-of-Thought",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Solve this step by step:\\n\\nA store sells apples for $2 each and oranges for $3 each. If someone buys 5 fruits and spends $12, how many of each fruit did they buy?\\n\\nThink through this step by step before giving the final answer.\"\n}'"
      },
      {
        "title": "Few-Shot Examples",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Convert these sentences to formal business English:\\n\\nExample 1:\\nInput: gonna send u the report tmrw\\nOutput: I will send you the report tomorrow.\\n\\nExample 2:\\nInput: cant make the meeting, something came up\\nOutput: I apologize, but I will be unable to attend the meeting due to an unforeseen circumstance.\\n\\nNow convert:\\nInput: hey can we push the deadline back a bit?\"\n}'"
      },
      {
        "title": "Output Format Specification",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Analyze the sentiment of these customer reviews. Return a JSON array with objects containing \\\"text\\\", \\\"sentiment\\\" (positive/negative/neutral), and \\\"confidence\\\" (0-1).\\n\\nReviews:\\n1. \\\"Great product, fast shipping!\\\"\\n2. \\\"Meh, its okay I guess\\\"\\n3. \\\"Worst purchase ever, total waste of money\\\"\\n\\nReturn only valid JSON, no explanation.\"\n}'"
      },
      {
        "title": "Constraint Setting",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Summarize this article in exactly 3 bullet points. Each bullet must be under 20 words. Focus only on actionable insights, not background information.\\n\\n[article text]\"\n}'"
      },
      {
        "title": "Basic Structure",
        "body": "[Subject] + [Style] + [Composition] + [Lighting] + [Technical]"
      },
      {
        "title": "Subject Description",
        "body": "# Bad: vague\n\"a cat\"\n\n# Good: specific\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A fluffy orange tabby cat with green eyes, sitting on a vintage leather armchair\"\n}'"
      },
      {
        "title": "Style Keywords",
        "body": "infsh app run falai/flux-dev --input '{\n  \"prompt\": \"Portrait photograph of a woman, shot on Kodak Portra 400 film, soft natural lighting, shallow depth of field, nostalgic mood, analog photography aesthetic\"\n}'"
      },
      {
        "title": "Composition Control",
        "body": "infsh app run falai/flux-dev --input '{\n  \"prompt\": \"Wide establishing shot of a cyberpunk city skyline at night, rule of thirds composition, neon signs in foreground, towering skyscrapers in background, rain-slicked streets\"\n}'"
      },
      {
        "title": "Quality Keywords",
        "body": "photorealistic, 8K, ultra detailed, sharp focus, professional,\nmasterpiece, high quality, best quality, intricate details"
      },
      {
        "title": "Negative Prompts",
        "body": "infsh app run falai/flux-dev --input '{\n  \"prompt\": \"Professional headshot portrait, clean background\",\n  \"negative_prompt\": \"blurry, distorted, extra limbs, watermark, text, low quality, cartoon, anime\"\n}'"
      },
      {
        "title": "Basic Structure",
        "body": "[Shot Type] + [Subject] + [Action] + [Setting] + [Style]"
      },
      {
        "title": "Camera Movement",
        "body": "infsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Slow tracking shot following a woman walking through a sunlit forest, golden hour lighting, shallow depth of field, cinematic, 4K\"\n}'"
      },
      {
        "title": "Action Description",
        "body": "infsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Close-up of hands kneading bread dough on a wooden surface, flour dust floating in morning light, slow motion, cozy baking aesthetic\"\n}'"
      },
      {
        "title": "Temporal Keywords",
        "body": "slow motion, timelapse, real-time, smooth motion,\ncontinuous shot, quick cuts, frozen moment"
      },
      {
        "title": "System Prompts",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"system\": \"You are a helpful coding assistant. Always provide code with comments. If you are unsure about something, say so rather than guessing.\",\n  \"prompt\": \"Write a Python function to validate email addresses using regex.\"\n}'"
      },
      {
        "title": "Structured Output",
        "body": "infsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Extract information from this text and return as JSON:\\n\\n\\\"John Smith, CEO of TechCorp, announced yesterday that the company raised $50 million in Series B funding. The round was led by Venture Partners.\\\"\\n\\nSchema:\\n{\\n  \\\"person\\\": string,\\n  \\\"title\\\": string,\\n  \\\"company\\\": string,\\n  \\\"event\\\": string,\\n  \\\"amount\\\": string,\\n  \\\"investor\\\": string\\n}\"\n}'"
      },
      {
        "title": "Iterative Refinement",
        "body": "# Start broad\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A castle on a hill\"\n}'\n\n# Add specifics\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A medieval stone castle on a grassy hill\"\n}'\n\n# Add style\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A medieval stone castle on a grassy hill, dramatic sunset sky, fantasy art style, epic composition\"\n}'\n\n# Add technical\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A medieval stone castle on a grassy hill, dramatic sunset sky, fantasy art style by Greg Rutkowski, epic composition, 8K, highly detailed\"\n}'"
      },
      {
        "title": "Multi-Turn Reasoning",
        "body": "# First: analyze\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Analyze this business problem: Our e-commerce site has a 70% cart abandonment rate. List potential causes.\"\n}'\n\n# Second: prioritize\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Given these causes of cart abandonment: [previous output], rank them by likely impact and ease of fixing. Format as a priority matrix.\"\n}'\n\n# Third: action plan\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"For the top 3 causes identified, provide specific A/B tests we can run to validate and fix each issue.\"\n}'"
      },
      {
        "title": "Claude",
        "body": "Excels at nuanced instructions\nResponds well to role-playing\nGood at following complex constraints\nPrefers explicit output formats"
      },
      {
        "title": "GPT-4",
        "body": "Strong at code generation\nWorks well with examples\nGood structured output\nResponds to \"let's think step by step\""
      },
      {
        "title": "FLUX",
        "body": "Detailed subject descriptions\nStyle references work well\nLighting keywords important\nNegative prompts supported"
      },
      {
        "title": "Veo",
        "body": "Camera movement keywords\nCinematic language works well\nAction descriptions important\nInclude temporal context"
      },
      {
        "title": "Common Mistakes",
        "body": "MistakeProblemFixToo vagueUnpredictable outputAdd specificsToo longModel loses focusPrioritize key infoConflictingConfuses modelRemove contradictionsNo formatInconsistent outputSpecify formatNo examplesUnclear expectationsAdd few-shot"
      },
      {
        "title": "Code Review",
        "body": "Review this [language] code for:\n1. Bugs and logic errors\n2. Security vulnerabilities\n3. Performance issues\n4. Code style/best practices\n\nCode:\n[code]\n\nFor each issue found, provide:\n- Line number\n- Issue description\n- Severity (high/medium/low)\n- Suggested fix"
      },
      {
        "title": "Content Writing",
        "body": "Write a [content type] about [topic].\n\nAudience: [target audience]\nTone: [formal/casual/professional]\nLength: [word count]\nKey points to cover:\n1. [point 1]\n2. [point 2]\n3. [point 3]\n\nInclude: [specific elements]\nAvoid: [things to exclude]"
      },
      {
        "title": "Image Generation",
        "body": "[Subject with details], [setting/background], [lighting type],\n[art style or photography style], [composition], [quality keywords]"
      },
      {
        "title": "Related Skills",
        "body": "# Video prompting guide\nnpx skills add inference-sh/skills@video-prompting-guide\n\n# LLM models\nnpx skills add inference-sh/skills@llm-models\n\n# Image generation\nnpx skills add inference-sh/skills@ai-image-generation\n\n# Full platform skill\nnpx skills add inference-sh/skills@inference-sh\n\nBrowse all apps: infsh app list"
      }
    ],
    "body": "Prompt Engineering Guide\n\nMaster prompt engineering for AI models via inference.sh CLI.\n\nQuick Start\ncurl -fsSL https://cli.inference.sh | sh && infsh login\n\n# Well-structured LLM prompt\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"You are a senior software engineer. Review this code for security vulnerabilities:\\n\\n```python\\nuser_input = request.args.get(\\\"query\\\")\\nresult = db.execute(f\\\"SELECT * FROM users WHERE name = {user_input}\\\")\\n```\\n\\nProvide specific issues and fixes.\"\n}'\n\n\nInstall note: The install script only detects your OS/architecture, downloads the matching binary from dist.inference.sh, and verifies its SHA-256 checksum. No elevated permissions or background processes. Manual install & verification available.\n\nLLM Prompting\nBasic Structure\n[Role/Context] + [Task] + [Constraints] + [Output Format]\n\nRole Prompting\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"You are an expert data scientist with 15 years of experience in machine learning. Explain gradient descent to a beginner, using simple analogies.\"\n}'\n\nTask Clarity\n# Bad: vague\n\"Help me with my code\"\n\n# Good: specific\n\"Debug this Python function that should return the sum of even numbers from a list, but returns 0 for all inputs:\n\ndef sum_evens(numbers):\n    total = 0\n    for n in numbers:\n        if n % 2 == 0:\n            total += n\n        return total\n\nIdentify the bug and provide the corrected code.\"\n\nChain-of-Thought\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Solve this step by step:\\n\\nA store sells apples for $2 each and oranges for $3 each. If someone buys 5 fruits and spends $12, how many of each fruit did they buy?\\n\\nThink through this step by step before giving the final answer.\"\n}'\n\nFew-Shot Examples\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Convert these sentences to formal business English:\\n\\nExample 1:\\nInput: gonna send u the report tmrw\\nOutput: I will send you the report tomorrow.\\n\\nExample 2:\\nInput: cant make the meeting, something came up\\nOutput: I apologize, but I will be unable to attend the meeting due to an unforeseen circumstance.\\n\\nNow convert:\\nInput: hey can we push the deadline back a bit?\"\n}'\n\nOutput Format Specification\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Analyze the sentiment of these customer reviews. Return a JSON array with objects containing \\\"text\\\", \\\"sentiment\\\" (positive/negative/neutral), and \\\"confidence\\\" (0-1).\\n\\nReviews:\\n1. \\\"Great product, fast shipping!\\\"\\n2. \\\"Meh, its okay I guess\\\"\\n3. \\\"Worst purchase ever, total waste of money\\\"\\n\\nReturn only valid JSON, no explanation.\"\n}'\n\nConstraint Setting\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Summarize this article in exactly 3 bullet points. Each bullet must be under 20 words. Focus only on actionable insights, not background information.\\n\\n[article text]\"\n}'\n\nImage Generation Prompting\nBasic Structure\n[Subject] + [Style] + [Composition] + [Lighting] + [Technical]\n\nSubject Description\n# Bad: vague\n\"a cat\"\n\n# Good: specific\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A fluffy orange tabby cat with green eyes, sitting on a vintage leather armchair\"\n}'\n\nStyle Keywords\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"Portrait photograph of a woman, shot on Kodak Portra 400 film, soft natural lighting, shallow depth of field, nostalgic mood, analog photography aesthetic\"\n}'\n\nComposition Control\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"Wide establishing shot of a cyberpunk city skyline at night, rule of thirds composition, neon signs in foreground, towering skyscrapers in background, rain-slicked streets\"\n}'\n\nQuality Keywords\nphotorealistic, 8K, ultra detailed, sharp focus, professional,\nmasterpiece, high quality, best quality, intricate details\n\nNegative Prompts\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"Professional headshot portrait, clean background\",\n  \"negative_prompt\": \"blurry, distorted, extra limbs, watermark, text, low quality, cartoon, anime\"\n}'\n\nVideo Prompting\nBasic Structure\n[Shot Type] + [Subject] + [Action] + [Setting] + [Style]\n\nCamera Movement\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Slow tracking shot following a woman walking through a sunlit forest, golden hour lighting, shallow depth of field, cinematic, 4K\"\n}'\n\nAction Description\ninfsh app run google/veo-3-1-fast --input '{\n  \"prompt\": \"Close-up of hands kneading bread dough on a wooden surface, flour dust floating in morning light, slow motion, cozy baking aesthetic\"\n}'\n\nTemporal Keywords\nslow motion, timelapse, real-time, smooth motion,\ncontinuous shot, quick cuts, frozen moment\n\nAdvanced Techniques\nSystem Prompts\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"system\": \"You are a helpful coding assistant. Always provide code with comments. If you are unsure about something, say so rather than guessing.\",\n  \"prompt\": \"Write a Python function to validate email addresses using regex.\"\n}'\n\nStructured Output\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Extract information from this text and return as JSON:\\n\\n\\\"John Smith, CEO of TechCorp, announced yesterday that the company raised $50 million in Series B funding. The round was led by Venture Partners.\\\"\\n\\nSchema:\\n{\\n  \\\"person\\\": string,\\n  \\\"title\\\": string,\\n  \\\"company\\\": string,\\n  \\\"event\\\": string,\\n  \\\"amount\\\": string,\\n  \\\"investor\\\": string\\n}\"\n}'\n\nIterative Refinement\n# Start broad\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A castle on a hill\"\n}'\n\n# Add specifics\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A medieval stone castle on a grassy hill\"\n}'\n\n# Add style\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A medieval stone castle on a grassy hill, dramatic sunset sky, fantasy art style, epic composition\"\n}'\n\n# Add technical\ninfsh app run falai/flux-dev --input '{\n  \"prompt\": \"A medieval stone castle on a grassy hill, dramatic sunset sky, fantasy art style by Greg Rutkowski, epic composition, 8K, highly detailed\"\n}'\n\nMulti-Turn Reasoning\n# First: analyze\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Analyze this business problem: Our e-commerce site has a 70% cart abandonment rate. List potential causes.\"\n}'\n\n# Second: prioritize\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"Given these causes of cart abandonment: [previous output], rank them by likely impact and ease of fixing. Format as a priority matrix.\"\n}'\n\n# Third: action plan\ninfsh app run openrouter/claude-sonnet-45 --input '{\n  \"prompt\": \"For the top 3 causes identified, provide specific A/B tests we can run to validate and fix each issue.\"\n}'\n\nModel-Specific Tips\nClaude\nExcels at nuanced instructions\nResponds well to role-playing\nGood at following complex constraints\nPrefers explicit output formats\nGPT-4\nStrong at code generation\nWorks well with examples\nGood structured output\nResponds to \"let's think step by step\"\nFLUX\nDetailed subject descriptions\nStyle references work well\nLighting keywords important\nNegative prompts supported\nVeo\nCamera movement keywords\nCinematic language works well\nAction descriptions important\nInclude temporal context\nCommon Mistakes\nMistake\tProblem\tFix\nToo vague\tUnpredictable output\tAdd specifics\nToo long\tModel loses focus\tPrioritize key info\nConflicting\tConfuses model\tRemove contradictions\nNo format\tInconsistent output\tSpecify format\nNo examples\tUnclear expectations\tAdd few-shot\nPrompt Templates\nCode Review\nReview this [language] code for:\n1. Bugs and logic errors\n2. Security vulnerabilities\n3. Performance issues\n4. Code style/best practices\n\nCode:\n[code]\n\nFor each issue found, provide:\n- Line number\n- Issue description\n- Severity (high/medium/low)\n- Suggested fix\n\nContent Writing\nWrite a [content type] about [topic].\n\nAudience: [target audience]\nTone: [formal/casual/professional]\nLength: [word count]\nKey points to cover:\n1. [point 1]\n2. [point 2]\n3. [point 3]\n\nInclude: [specific elements]\nAvoid: [things to exclude]\n\nImage Generation\n[Subject with details], [setting/background], [lighting type],\n[art style or photography style], [composition], [quality keywords]\n\nRelated Skills\n# Video prompting guide\nnpx skills add inference-sh/skills@video-prompting-guide\n\n# LLM models\nnpx skills add inference-sh/skills@llm-models\n\n# Image generation\nnpx skills add inference-sh/skills@ai-image-generation\n\n# Full platform skill\nnpx skills add inference-sh/skills@inference-sh\n\n\nBrowse all apps: infsh app list"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/okaris/prompt-engineering",
    "publisherUrl": "https://clawhub.ai/okaris/prompt-engineering",
    "owner": "okaris",
    "version": "0.1.5",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/prompt-engineering",
    "downloadUrl": "https://openagent3.xyz/downloads/prompt-engineering",
    "agentUrl": "https://openagent3.xyz/skills/prompt-engineering/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prompt-engineering/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prompt-engineering/agent.md"
  }
}