Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问许可证需确认审计通过

blooming-blockery-cliblooming blockery CLI 搜索

Agent Skill

blooming-blockery-cli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

399

周安装

16

GitHub Stars

5

下载量

129
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/photonfoxlime/bb --skill blooming-blockery-cli

简介

用于查找、检索和筛选相关信息,适合在树状结构设计文档编辑与上下文优化场景中使用。

  • 将模糊想法转化为可实施方案,通过单块一主题原则组织信息形成逻辑清晰树结构。
  • 不仅提供命令语法参考,更是决定信息应放置何处的设计指导原则集合。
  • 安装前建议评估是否需频繁调用外部API,避免因速率限制影响正常使用体验。
  • blooming-blockery-cli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

blooming-blockery-cli

Use this skill when operating Blooming Blockery CLI (blooming-blockery) and when shaping content into tree structure for better LLM context quality.

Primary goal: treat Blooming Blockery as a tree-structure based design documentation editor. Organize information into a logically correct tree so each block carries one coherent idea, and unrelated material is split into separate branches.

This skill is not only command syntax reference. It is a structure-and-context guide for deciding where information should live in the tree.

Motivation: From Vague Ideas to Implementation

Use the tree to move from uncertainty to precision:

  1. Start with broad project ideas or high-level concepts.
  2. Break ideas into smaller design decisions and scope boundaries.
  3. Refine decisions into explicit specifications, such as requires, ensures, and invariants.
  4. Continue refining specification blocks into implementable units.
  5. Connect implementation steps back to the exact specification branch they satisfy.

Agents using this skill should preserve this top-down refinement flow whenever possible.

When to use

  • The user asks how to use Blooming Blockery CLI (blooming-blockery) from terminal scripts.
  • The user needs to restructure mixed or overloaded notes into a cleaner tree.
  • The user needs LLM-ready context around a specific block.
  • The user hits CLI parsing errors with block IDs, mount formats, or panel states.
  • The user needs copyable command patterns for repeated authoring workflows.

Mental Model: Context Envelope Per Block

From src/llm/context.rs, one block's LLM context is a BlockContext made of:

  • lineage: ordered chain from root to target, where the last item is the target block itself.
  • existing_children: direct child point texts only.
  • friend_blocks: cross-references with optional perspective, optional friend lineage telescope, and optional friend children telescope.

Implications for agents using this skill:

  • Keep each block focused. If one block mixes unrelated concerns, split it.
  • Prefer children for decomposition of one topic.
  • Prefer siblings or new roots for unrelated topics.
  • Prefer friends for cross-cutting links that are related but not hierarchical.
  • Add --perspective when a friend relation is ambiguous.
  • Use telescope flags intentionally to expand friend context only when needed.

Context-Hygiene Rules for Tree Editing

  1. One block, one intent.
  2. If two statements cannot share the same immediate design question, split them.
  3. Keep parent-child logic strict: each child should refine, justify, or execute the parent.
  4. Keep implementation detail under the relevant design/spec parent.
  5. Do not bury unrelated decisions deep in another topic's lineage.
  6. Preserve refinement order: concept -> spec (requires/ensures/invariants) -> implementation.
  7. Use blooming-blockery context <BLOCK_ID> to inspect context before LLM draft commands.
  8. Use blooming-blockery nav lineage <BLOCK_ID> when checking whether placement is right.
  9. Use blooming-blockery friend add instead of forced tree nesting for cross-topic links.

When Tree Structure Is Hard, Use Friend Blocks

Some content is inherently cross-cutting and does not fit cleanly under one single parent branch. In those cases:

  • Keep the main tree logically clean.
  • Use blooming-blockery friend add <TARGET_ID> <FRIEND_ID> for remote references.
  • Add --perspective to explain why the remote block matters to the target.
  • Enable telescope flags only when extra friend lineage/children are truly needed.

Friend blocks are the escape hatch for useful context that should not distort the core tree semantics.

CLI Invocation Convention

Blooming Blockery is a single binary: run without subcommands to launch the GUI, or with subcommands for CLI automation. All examples below use the full form:

blooming-blockery ...

Use blooming-blockery <subcommand>... in instructions and automation scripts.

Global Flags

All commands support these global flags:

  • --store <PATH>: Path to the block store file (defaults to app data path)
  • --verbose: Enable verbose output (currently reserved)
  • --output <FORMAT>: Output format - table (default) or json

Block ID Format

Block IDs use a clean format like 1v1, 2v3 where:

  • First number = slot index in the store
  • v = separator
  • Second number = generation counter (increments on reuse)

Batch-capable commands also accept comma-separated IDs in a single ID argument:

blooming-blockery show 1v1,2v1,3v1
blooming-blockery tree add-child 1v1,2v1 "Shared child text"

Batch execution is continue-on-error: all targets are attempted and errors are reported after processing completes.

Context-First Workflow Patterns

1) Split unrelated information into separate branches

# Add a sibling when topic shifts at same hierarchy level
blooming-blockery tree add-sibling <BLOCK_ID> "New topic"

# Wrap current block when introducing a new organizing parent
blooming-blockery tree wrap <BLOCK_ID> "Parent concept"

# Move misplaced content under the correct parent
blooming-blockery tree move <SOURCE_ID> <TARGET_ID> --under

2) Inspect context before asking LLM features

blooming-blockery nav lineage <BLOCK_ID>
blooming-blockery context <BLOCK_ID> --output json
blooming-blockery friend list <BLOCK_ID> --output json

3) Keep cross-cutting references explicit

blooming-blockery friend add <TARGET_ID> <FRIEND_ID> \
  --perspective "reference architecture constraint" \
  --telescope-lineage

Use --telescope-lineage and --telescope-children only when the added friend scope is needed for the specific LLM task.

Command Reference

Query Commands

# List all root block IDs
blooming-blockery roots
blooming-blockery roots --output json

# Show block details
blooming-blockery show <BLOCK_ID>
blooming-blockery show 1v1 --output json

# Search blocks by text (case-insensitive substring)
blooming-blockery find "search query"
blooming-blockery find "TODO" --limit 10

# Edit the text content of a block
blooming-blockery point <BLOCK_ID> "New text content"
blooming-blockery point 1v1 "Updated text"

Tree Structure Commands

# Add child block under parent (parent must not be a mount)
blooming-blockery tree add-child <PARENT_ID> "Text content"
blooming-blockery tree add-child 1v1 "My new idea"

# Add sibling after a block
blooming-blockery tree add-sibling <BLOCK_ID> "Text content"
blooming-blockery tree add-sibling 1v1 "Next sibling"

# Wrap a block with a new parent
blooming-blockery tree wrap <BLOCK_ID> "Parent text"
blooming-blockery tree wrap 1v1 "New parent section"

# Duplicate a subtree
blooming-blockery tree duplicate <BLOCK_ID>
blooming-blockery tree duplicate 1v1

# Delete a subtree (removes block and all descendants)
blooming-blockery tree delete <BLOCK_ID>
blooming-blockery tree delete 1v1

# Move block relative to target
blooming-blockery tree move <SOURCE_ID> <TARGET_ID> --before
blooming-blockery tree move <SOURCE_ID> <TARGET_ID> --after
blooming-blockery tree move <SOURCE_ID> <TARGET_ID> --under

Navigation Commands

# Get next visible block in DFS order
blooming-blockery nav next <BLOCK_ID>
blooming-blockery nav next 1v1

# Get previous visible block
blooming-blockery nav prev <BLOCK_ID>
blooming-blockery nav prev 2v1

# Get lineage (ancestor chain)
blooming-blockery nav lineage <BLOCK_ID>
blooming-blockery nav lineage 1v1

# Search-aware navigation
blooming-blockery nav find-next <BLOCK_ID> "query"
blooming-blockery nav find-prev <BLOCK_ID> "query" --no-wrap

Draft Commands (LLM suggestions)

# Set amplification draft (rewrite + proposed children)
blooming-blockery draft amplify <BLOCK_ID> --rewrite "Refined text" --children "Child 1" "Child 2"
blooming-blockery draft amplify 1v1 --children "Just kids"

# Set distillation draft (condensed version)
blooming-blockery draft distill <BLOCK_ID> --reduction "Condensed text" --redundant-children 2v1 3v1

# Set instruction draft (user-authored LLM instructions)
blooming-blockery draft instruction <BLOCK_ID> --text "Make this more concise"

# Set probe draft (LLM response to ask query)
blooming-blockery draft probe <BLOCK_ID> --response "The key insight is..."

# List all drafts for a block
blooming-blockery draft list <BLOCK_ID>

# Clear drafts (use --all or specific flags)
blooming-blockery draft clear <BLOCK_ID> --all
blooming-blockery draft clear <BLOCK_ID> --amplify
blooming-blockery draft clear <BLOCK_ID> --distill --instruction

Fold (Collapse) Commands

# Toggle fold state
blooming-blockery fold toggle <BLOCK_ID>

# Get fold status
blooming-blockery fold status <BLOCK_ID>

Friend (Cross-reference) Commands

# Add friend block with optional perspective
blooming-blockery friend add <TARGET_ID> <FRIEND_ID> --perspective "Related design"
blooming-blockery friend add <TARGET_ID> <FRIEND_ID> --telescope-lineage --telescope-children

# Remove friend
blooming-blockery friend remove <TARGET_ID> <FRIEND_ID>

# List friends
blooming-blockery friend list <TARGET_ID>

Mount (External File) Commands

# Set mount path (block must be leaf, no children)
blooming-blockery mount set <BLOCK_ID> <PATH> [--format json|markdown]
blooming-blockery mount set 1v1 /data/external.json
blooming-blockery mount set 1v1 /notes/notes.md --format markdown

# Expand mount (load external file)
blooming-blockery mount expand <BLOCK_ID>

# Collapse mount (remove loaded blocks, restore mount node)
blooming-blockery mount collapse <BLOCK_ID>

# Move mount backing file and update metadata
blooming-blockery mount move <BLOCK_ID> <PATH>

# Inline mounted content into current store
blooming-blockery mount inline <BLOCK_ID>

# Inline all mounts recursively under a subtree
blooming-blockery mount inline-recursive <BLOCK_ID>

# Extract subtree to external file
blooming-blockery mount extract <BLOCK_ID> --output <PATH> [--format json|markdown]
blooming-blockery mount extract 1v1 --output /backup/notes.json

# Persist all expanded mounts to their source files
blooming-blockery mount save

# Show mount info
blooming-blockery mount info <BLOCK_ID>

Panel Commands

# Set block panel state
blooming-blockery panel set <BLOCK_ID> friends
blooming-blockery panel set <BLOCK_ID> instruction

# Get block panel state
blooming-blockery panel get <BLOCK_ID>

# Clear block panel state
blooming-blockery panel clear <BLOCK_ID>

Context Command

# Get LLM context for a block (lineage, children, friends)
blooming-blockery context <BLOCK_ID>
blooming-blockery context 1v1

Common Error Patterns

  • UnknownBlock: Block ID not found in store
  • InvalidOperation:

- Parent is a mount (cannot add children) - Source is ancestor of target (cycle in move) - Block has children (cannot set mount) - Attempting to add self as friend

  • IoError: Failed to read/write mount file

Agent Guidance: Choosing Structure Intentionally

When helping users author specs/docs, prefer these decisions:

  • If content answers different design questions, split into sibling branches.
  • If content elaborates one parent claim, place it as children.
  • Keep the logical chain visible: concept -> spec -> implementation.
  • Encourage explicit spec nodes with requires, ensures, and invariants before implementation-heavy branches.
  • If two branches should remain separate but mutually relevant, link via friends.
  • If friend meaning is unclear, add --perspective immediately.
  • Before generating drafts, inspect with blooming-blockery context and ensure lineage points to the intended scope.

Practical Tips

  1. Use --output json for scripting and parsing results
  2. Block IDs are case-insensitive
  3. Mount format defaults to json but supports markdown

- mount extract --format overrides path-extension inference

  1. Batch-capable commands support comma-separated IDs:

- show, point - tree add-child|add-sibling|wrap|duplicate|delete|move - nav next|prev|lineage - friend add|remove - fold toggle|status - draft instruction|probe|list|clear - mount set|expand|collapse|move|extract|inline|inline-recursive|info - context - For mount set|move|extract batch mode, pass a directory-like path (existing/dir or a path without extension), and each target will use <BLOCK_ID>.<ext> under that directory.

  1. Panel states are friends or instruction
  2. Run blooming-blockery without subcommands for GUI; with subcommands for CLI
  3. If users report low-quality LLM responses, first fix tree placement and friend/telescope scope before rewriting prompts

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.19%
按下载量换算43

Claude

27.98%
按下载量换算36

Cursor

20.63%
按下载量换算27

Gemini CLI

10.47%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/photonfoxlime/bb --skill blooming-blockery-cli 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills