{
  "schemaVersion": "1.0",
  "item": {
    "slug": "brainstorming-2",
    "name": "Brainstorming",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Nefas11/brainstorming-2",
    "canonicalUrl": "https://clawhub.ai/Nefas11/brainstorming-2",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/brainstorming-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brainstorming-2",
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/brainstorming-2"
    },
    "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/brainstorming-2",
    "agentPageUrl": "https://openagent3.xyz/skills/brainstorming-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/brainstorming-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/brainstorming-2/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": "Trigger BEFORE writing code when:\n\nUser request is vague (\"make it better\", \"add feature X\")\nComplex feature with multiple approaches\nDesign decisions impact multiple components"
      },
      {
        "title": "Step 1: Understand Intent",
        "body": "Ask clarifying questions:\n\nWhat problem are we solving?\nWho is the user?\nWhat's the success criteria?\nWhat constraints exist? (time, compatibility, dependencies)"
      },
      {
        "title": "Step 2: Explore Alternatives",
        "body": "Present 2-3 approaches:\n\nApproach A (simple): [description]\nApproach B (robust): [description]\nApproach C (future-proof): [description]\n\nFor each: Pros, Cons, Complexity (1-5)"
      },
      {
        "title": "Step 3: Design Document",
        "body": "After user picks approach, create design doc:\n\n# Feature: [Name]\n\n## Problem\n[1-2 sentences]\n\n## Solution\n[Chosen approach, 3-5 sentences]\n\n## Components Affected\n- [Component 1]: [Change description]\n- [Component 2]: [Change description]\n\n## Testing Strategy\n- Unit tests: [What to test]\n- Integration tests: [What to test]\n\n## Edge Cases\n- [Case 1]\n- [Case 2]\n\n## Success Criteria\n- [ ] [Criterion 1]\n- [ ] [Criterion 2]\n\nSave to: docs/design/YYYY-MM-DD-feature-name.md"
      },
      {
        "title": "Step 4: Transition to Planning",
        "body": "Pass design doc to writing-plans skill."
      },
      {
        "title": "Anti-Patterns",
        "body": "❌ Jump straight to implementation\n❌ Present only one approach\n❌ Skip edge case discussion\n❌ Forget to save design doc"
      },
      {
        "title": "Example",
        "body": "User: \"Add caching\"\n\nBad:\n\nI'll add Redis caching to the API.\n\nGood:\n\nLet me understand the requirements first:\n\n1. What should be cached? (API responses, DB queries, computed results?)\n2. What's the invalidation strategy? (TTL, event-based, manual?)\n3. What's the acceptable staleness? (seconds, minutes, hours?)\n\nBased on your answers, I'll present 3 approaches with trade-offs."
      }
    ],
    "body": "Brainstorming Skill\nWhen to Use\n\nTrigger BEFORE writing code when:\n\nUser request is vague (\"make it better\", \"add feature X\")\nComplex feature with multiple approaches\nDesign decisions impact multiple components\nWorkflow\nStep 1: Understand Intent\n\nAsk clarifying questions:\n\nWhat problem are we solving?\nWho is the user?\nWhat's the success criteria?\nWhat constraints exist? (time, compatibility, dependencies)\nStep 2: Explore Alternatives\n\nPresent 2-3 approaches:\n\nApproach A (simple): [description]\nApproach B (robust): [description]\nApproach C (future-proof): [description]\n\nFor each: Pros, Cons, Complexity (1-5)\n\nStep 3: Design Document\n\nAfter user picks approach, create design doc:\n\n# Feature: [Name]\n\n## Problem\n[1-2 sentences]\n\n## Solution\n[Chosen approach, 3-5 sentences]\n\n## Components Affected\n- [Component 1]: [Change description]\n- [Component 2]: [Change description]\n\n## Testing Strategy\n- Unit tests: [What to test]\n- Integration tests: [What to test]\n\n## Edge Cases\n- [Case 1]\n- [Case 2]\n\n## Success Criteria\n- [ ] [Criterion 1]\n- [ ] [Criterion 2]\n\n\nSave to: docs/design/YYYY-MM-DD-feature-name.md\n\nStep 4: Transition to Planning\n\nPass design doc to writing-plans skill.\n\nAnti-Patterns\n\n❌ Jump straight to implementation ❌ Present only one approach ❌ Skip edge case discussion ❌ Forget to save design doc\n\nExample\n\nUser: \"Add caching\"\n\nBad:\n\nI'll add Redis caching to the API.\n\n\nGood:\n\nLet me understand the requirements first:\n\n1. What should be cached? (API responses, DB queries, computed results?)\n2. What's the invalidation strategy? (TTL, event-based, manual?)\n3. What's the acceptable staleness? (seconds, minutes, hours?)\n\nBased on your answers, I'll present 3 approaches with trade-offs."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Nefas11/brainstorming-2",
    "publisherUrl": "https://clawhub.ai/Nefas11/brainstorming-2",
    "owner": "Nefas11",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/brainstorming-2",
    "downloadUrl": "https://openagent3.xyz/downloads/brainstorming-2",
    "agentUrl": "https://openagent3.xyz/skills/brainstorming-2/agent",
    "manifestUrl": "https://openagent3.xyz/skills/brainstorming-2/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/brainstorming-2/agent.md"
  }
}