一键导入
bs
Generate rich visual plans with diagrams and structured layouts. Saves locally via fp CLI. Triggers on "brainstorm", "bs", or "create a plan".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Generate rich visual plans with diagrams and structured layouts. Saves locally via fp CLI. Triggers on "brainstorm", "bs", or "create a plan".
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | bs |
| description | Generate rich visual plans with diagrams and structured layouts. Saves locally via fp CLI. Triggers on "brainstorm", "bs", or "create a plan". |
Generate structured plans in markdown with directives. The renderer handles all styling and theming — the skill only produces content.
Brainstorms are written as markdown with directives. Do not produce HTML, CSS, or inline styles.
:::callout{type="info"}
Key context or background information.
:::
:::callout{type="warning"}
Risk or caveat to highlight.
:::
:::callout{type="decision"}
A decision that was made and its rationale.
:::
:::callout{type="question"}
An open question that needs resolution.
:::
:::card{title="Component Overview"}
Grouped content goes here — paragraphs, lists, tables, code blocks.
:::
:label[Active]{color="green"}
:label[Blocked]{color="red"}
:label[In Review]{color="orange"}
:label[Planned]{color="blue"}
:label[Deprecated]{color="purple"}
```mermaid
graph TD
A --> B
```
Read references/mermaid-guide.md before writing any mermaid markup — it covers syntax pitfalls that cause parse failures.
Use ASCII tree-drawing characters (├──, └──, │) for hierarchy — do NOT use space-based indentation. The filetree parser only recognizes tree-drawing characters for structure. Space-indented entries render flat with no visible hierarchy.
```filetree
src/
├── components/
│ ├── Button.tsx # Primary action component
│ └── Dialog.tsx # Modal overlay
└── utils/
└── format.ts # String formatting helpers
```
Annotations: # new (green), # modified (orange), # deprecated (muted + strikethrough).
When .fp/ exists and fp is installed, use the CLI to store brainstorms locally.
/tmp/bs-output.mdfp brainstorm create /tmp/bs-output.md --title '<title>'
fp brainstorm update <id> /tmp/bs-revised.mdfp brainstorm create <file.md> [--title "..."] # Create from markdown file
fp brainstorm show <id> # Dump markdown to stdout
fp brainstorm update <id> <file.md> # Update with new markdown
fp brainstorm delete <id> # Soft delete
fp brainstorm list # List brainstorms
fp brainstorm versions <id> # List version history
fp brainstorm comments add <id> "comment text" # Add a comment
fp brainstorm comments resolve <id> <commentId> # Resolve a comment
fp brainstorm comments delete <id> <commentId> # Delete a comment
All commands accept both fp brainstorm and fp bs.
When reviewing or iterating on an existing brainstorm, you need to read both the content and any comments left on it.
Preferred: single command with --with-comments
fp bs show <id> --with-comments
This prints the full markdown followed by all comments (with IDs, authors, and anchor blocks) below the fold.
Alternative: two commands
fp bs show <id>
fp bs comments <id>
Concatenate both outputs to get the complete picture. Use this if you only need comments separately.
Important for agents: Always read comments before editing a brainstorm. Comments contain review feedback, design decisions, and requested changes that must be addressed. When iterating:
fp bs show <id> --with-comments)fp bs comments resolve <id> <commentId>)