# Send Brainstorming 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": "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": {
    "downloadUrl": "/downloads/brainstorming-2",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brainstorming-2",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "brainstorming-2",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:49:18.096Z",
      "expiresAt": "2026-05-07T04:49:18.096Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brainstorming-2",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=brainstorming-2",
        "contentDisposition": "attachment; filename=\"brainstorming-2-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "brainstorming-2"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### When to Use

Trigger BEFORE writing code when:

User request is vague ("make it better", "add feature X")
Complex feature with multiple approaches
Design decisions impact multiple components

### Step 1: Understand Intent

Ask clarifying questions:

What problem are we solving?
Who is the user?
What's the success criteria?
What constraints exist? (time, compatibility, dependencies)

### Step 2: Explore Alternatives

Present 2-3 approaches:

Approach A (simple): [description]
Approach B (robust): [description]
Approach C (future-proof): [description]

For each: Pros, Cons, Complexity (1-5)

### Step 3: Design Document

After user picks approach, create design doc:

# Feature: [Name]

## Problem
[1-2 sentences]

## Solution
[Chosen approach, 3-5 sentences]

## Components Affected
- [Component 1]: [Change description]
- [Component 2]: [Change description]

## Testing Strategy
- Unit tests: [What to test]
- Integration tests: [What to test]

## Edge Cases
- [Case 1]
- [Case 2]

## Success Criteria
- [ ] [Criterion 1]
- [ ] [Criterion 2]

Save to: docs/design/YYYY-MM-DD-feature-name.md

### Step 4: Transition to Planning

Pass design doc to writing-plans skill.

### Anti-Patterns

❌ Jump straight to implementation
❌ Present only one approach
❌ Skip edge case discussion
❌ Forget to save design doc

### Example

User: "Add caching"

Bad:

I'll add Redis caching to the API.

Good:

Let me understand the requirements first:

1. What should be cached? (API responses, DB queries, computed results?)
2. What's the invalidation strategy? (TTL, event-based, manual?)
3. What's the acceptable staleness? (seconds, minutes, hours?)

Based on your answers, I'll present 3 approaches with trade-offs.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Nefas11
- Version: 0.1.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-04-30T04:49:18.096Z
- Expires at: 2026-05-07T04:49:18.096Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/brainstorming-2)
- [Send to Agent page](https://openagent3.xyz/skills/brainstorming-2/agent)
- [JSON manifest](https://openagent3.xyz/skills/brainstorming-2/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/brainstorming-2/agent.md)
- [Download page](https://openagent3.xyz/downloads/brainstorming-2)