← 返回 Skills 市场
nefas11

Brainstorming

作者 Nefas11 · GitHub ↗ · v0.1.0
cross-platform ⚠ suspicious
872
总下载
1
收藏
1
当前安装
1
版本数
在 OpenClaw 中安装
/install brainstorming-2
功能描述
Socratic design refinement before coding. Use when user requests feature without clear spec.
使用说明 (SKILL.md)

Brainstorming Skill

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

Workflow

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.
安全使用建议
This skill appears coherent and low-risk: it asks questions, outlines approaches, creates a design doc, and suggests saving it in docs/design. Before installing, decide whether you are comfortable with the agent writing files into your workspace and automatically handing documents to another skill (writing-plans). If you prefer tighter control, run it only when invoked manually, inspect generated docs before committing, and verify the permissions/behavior of any downstream skill (writing-plans) that will receive the design doc.
功能分析
Type: OpenClaw Skill Name: brainstorming-2 Version: 0.1.0 The skill's primary function is benign, focused on design brainstorming and documentation. However, the instruction in `SKILL.md` to save a design document to `docs/design/YYYY-MM-DD-feature-name.md` introduces a potential path traversal vulnerability. If the `feature-name` is derived directly from unsanitized user input, an attacker could craft a malicious filename (e.g., `../../../../etc/malicious_file`) to write files to arbitrary locations on the agent's filesystem. This is a vulnerability, not explicit malicious intent, classifying it as suspicious.
能力评估
Purpose & Capability
Name/description (Socratic design refinement) match the SKILL.md workflow (clarifying questions, alternatives, design doc). The actions requested (produce design text, save a doc, hand off to a planning skill) are proportionate to that purpose.
Instruction Scope
Instructions are narrowly scoped to eliciting requirements, generating alternatives, creating a design doc, and saving it to docs/design/YYYY-MM-DD-feature-name.md. This is expected, but be aware it instructs the agent to write a file to the workspace and to pass the doc to another skill (writing-plans). If you don't want automatic file writes or cross-skill handoffs, note that behavior.
Install Mechanism
No install spec and no code files — instruction-only skill with no binaries or downloads. Low install risk.
Credentials
Requires no environment variables, credentials, or config paths. Declared requirements match the SKILL.md (which does not reference secrets or external services).
Persistence & Privilege
always is false and the skill is user-invocable; it does not request elevated or persistent privileges. Model invocation is enabled (normal default), which allows autonomous calls, but nothing in the skill justifies elevated persistence.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install brainstorming-2
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /brainstorming-2 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.0
- Initial release of the brainstorming skill with a Socratic, question-driven workflow. - Guides users through clarifying goals, exploring 2–3 solution approaches, and collaboratively selecting a design. - Provides a markdown design doc template covering problem, solution, components, testing, edge cases, and success criteria. - Saves finalized design docs for traceability and hands off to planning after design is agreed. - Outlines clear anti-patterns to avoid rushed or narrow design thinking.
元数据
Slug brainstorming-2
版本 0.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 1
常见问题

Brainstorming 是什么?

Socratic design refinement before coding. Use when user requests feature without clear spec. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 872 次。

如何安装 Brainstorming?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install brainstorming-2」即可一键安装,无需额外配置。

Brainstorming 是免费的吗?

是的,Brainstorming 完全免费(开源免费),可自由下载、安装和使用。

Brainstorming 支持哪些平台?

Brainstorming 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Brainstorming?

由 Nefas11(@nefas11)开发并维护,当前版本 v0.1.0。

💬 留言讨论