Token导航 LogoToken导航TokenDH.com
开发只读github未标认证来源可访问许可证需确认审计提醒

bs废话

Agent Skill

bs 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

441

周安装

18

GitHub Stars

2

下载量

141
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:bs(废话)
来源仓库:https://github.com/fiberplane/bs
仓库路径:skills/bs
安装命令:
npx skills add https://github.com/fiberplane/bs --skill bs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/fiberplane/bs --skill bs

简介

bs 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 它主要用于开发场景,帮助生成结构化计划并输出 Markdown 格式内容。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装并使用该技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写操作。
  • bs 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

bs — brainstorm

Purpose

Generate structured plans in markdown with directives. The renderer handles all styling and theming — the skill only produces content.

Output Format

Brainstorms are written as markdown with directives. Do not produce HTML, CSS, or inline styles.

Directive Vocabulary

Callout blocks

:::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.
:::

Cards

:::card{title="Component Overview"}
Grouped content goes here — paragraphs, lists, tables, code blocks.
:::

Inline labels

:label[Active]{color="green"}
:label[Blocked]{color="red"}
:label[In Review]{color="orange"}
:label[Planned]{color="blue"}
:label[Deprecated]{color="purple"}

Mermaid diagrams

graph TD A --> B

Read references/mermaid-guide.md before writing any mermaid markup — it covers syntax pitfalls that cause parse failures.

File trees

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.

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).

Standard GFM

  • Tables, task lists, headings, code blocks, inline code — all supported.
  • Use tables for comparisons and structured data.
  • Use task lists for implementation checklists.

Content Guidelines

  • Be concise — focus on visual structure over large blocks of text.
  • Use Mermaid diagrams for architecture, flows, and sequences.
  • Use cards and tables for information density.
  • Use callouts sparingly to highlight decisions, risks, and open questions.
  • Use labels for status indicators inline with text.

Local brainstorm workflow (fp CLI)

When .fp/ exists and fp is installed, use the CLI to store brainstorms locally.

Create

  1. Write markdown to a temp file: /tmp/bs-output.md
  2. Save to project: fp brainstorm create /tmp/bs-output.md --title '<title>'

Revise

  1. Revise markdown and write to temp file
  2. Update: fp brainstorm update <id> /tmp/bs-revised.md

fp CLI commands

fp 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.

Reading & iterating on brainstorms

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:

  1. Read the brainstorm with comments (fp bs show <id> --with-comments)
  2. Address the feedback in your edits
  3. After updating, resolve addressed comments (fp bs comments resolve <id> <commentId>)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.09%
按下载量换算47

Claude

29.78%
按下载量换算42

Cursor

20.06%
按下载量换算28

Gemini CLI

9.33%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills