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

bb-implementBB 工具

Agent Skill

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

总安装

222

周安装

9

GitHub Stars

17

下载量

70
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/buildbetter-app/bb-skills --skill bb-implement

简介

该技能用于评估当前功能目录下各阶段文档的完成度与任务执行状态。

  • 适合在代码实现过程中持续跟踪 checklist 进度与任务分解情况。
  • 可自动扫描 checklists/ 目录下的所有清单文件并统计完成率。
  • 使用前需确保 FEATURE_DIR 路径有效且 agent 具有对应目录的访问权限。
  • 对于包含单引号的参数需采用转义语法传递,避免解析错误。

SKILL.md

User Input

$ARGUMENTS

You MUST consider the user input before proceeding (if not empty).

Outline

  1. Locate the current feature directory and verify available documents. Parse FEATURE_DIR and AVAILABLE_DOCS list. All paths must be absolute. For single quotes in args like "I'm Groot", use escape syntax: e.g 'I'''m Groot' (or double-quote if possible: "I'm Groot").
  2. Check checklists status (if FEATURE_DIR/checklists/ exists):

- Scan all checklist files in the checklists/ directory - For each checklist, count: - Total items: All lines matching - [] or - [X] or - [x] - Completed items: Lines matching - [X] or - [x] - Incomplete items: Lines matching - [] - Create a status table: | Checklist | Total | Completed | Incomplete | Status | |-----------|-------|-----------|------------|--------| | ux.md | 12 | 12 | 0 | PASS | | test.md | 8 | 5 | 3 | FAIL | | security.md | 6 | 6 | 0 | PASS | - Calculate overall status: - PASS: All checklists have 0 incomplete items - FAIL: One or more checklists have incomplete items - If any checklist is incomplete: - Display the table with incomplete item counts - STOP and ask: "Some checklists are incomplete. Do you want to proceed with implementation anyway? (yes/no)" - Wait for user response before continuing - If user says "no" or "wait" or "stop", halt execution - If user says "yes" or "proceed" or "continue", proceed to step 3 - If all checklists are complete: - Display the table showing all checklists passed - Automatically proceed to step 3

  1. Load and analyze the implementation context:

- REQUIRED: Read tasks.md for the complete task list and execution plan - REQUIRED: Read plan.md for tech stack, architecture, and file structure - IF EXISTS: Read data-model.md for entities and relationships - IF EXISTS: Read contracts/ for API specifications and test requirements - IF EXISTS: Read research.md for technical decisions and constraints - IF EXISTS: Read quickstart.md for integration scenarios

  1. Project Setup Verification: Detection & Creation Logic: If ignore file already exists: Verify it contains essential patterns, append missing critical patterns only If ignore file missing: Create with full pattern set for detected technology Common Patterns by Technology (from plan.md tech stack): Tool-Specific Patterns:

- REQUIRED: Create/verify ignore files based on actual project setup: - Check if the following command succeeds to determine if the repository is a git repo (create/verify.gitignore if so): git rev-parse --git-dir 2>/dev/null - Check if Dockerfile* exists or Docker in plan.md -> create/verify.dockerignore - Check if.eslintrc* exists -> create/verify.eslintignore - Check if eslint.config.* exists -> ensure the config's ignores entries cover required patterns - Check if.prettierrc* exists -> create/verify.prettierignore - Check if.npmrc or package.json exists -> create/verify.npmignore (if publishing) - Check if terraform files (*.tf) exist -> create/verify.terraformignore - Check if.helmignore needed (helm charts present) -> create/verify.helmignore - Node.js/JavaScript/TypeScript: node_modules/, dist/, build/, *.log, .env* - Python: __pycache__/, *.pyc, .venv/, venv/, dist/, *.egg-info/ - Java: target/, *.class, *.jar, .gradle/, build/ - C#/.NET: bin/, obj/, *.user, *.suo, packages/ - Go: *.exe, *.test, vendor/, *.out - Ruby: .bundle/, log/, tmp/, *.gem, vendor/bundle/ - PHP: vendor/, *.log, *.cache, *.env - Rust: target/, debug/, release/, *.rs.bk, *.rlib, *.prof*, .idea/, *.log, .env* - Kotlin: build/, out/, .gradle/, .idea/, *.class, *.jar, *.iml, *.log, .env* - C++: build/, bin/, obj/, out/, *.o, *.so, *.a, *.exe, *.dll, .idea/, *.log, .env* - C: build/, bin/, obj/, out/, *.o, *.a, *.so, *.exe, Makefile, config.log, .idea/, *.log, .env* - Swift: .build/, DerivedData/, *.swiftpm/, Packages/ - R: .Rproj.user/, .Rhistory, .RData, .Ruserdata, *.Rproj, packrat/, renv/ - Universal: .DS_Store, Thumbs.db, *.tmp, *.swp, .vscode/, .idea/ - Docker: node_modules/, .git/, Dockerfile*, .dockerignore, *.log*, .env*, coverage/ - ESLint: node_modules/, dist/, build/, coverage/, *.min.js - Prettier: node_modules/, dist/, build/, coverage/, package-lock.json, yarn.lock, pnpm-lock.yaml - Terraform: .terraform/, *.tfstate*, *.tfvars, .terraform.lock.hcl - Kubernetes/k8s: *.secret.yaml, secrets/, .kube/, kubeconfig*, *.key, *.crt

  1. Parse tasks.md structure and extract:

- Task phases: Setup, Tests, Core, Integration, Polish - Task dependencies: Sequential vs parallel execution rules - Task details: ID, description, file paths, parallel markers [P] - Execution flow: Order and dependency requirements

  1. Execute implementation following the task plan:

- Phase-by-phase execution: Complete each phase before moving to the next - Respect dependencies: Run sequential tasks in order, parallel tasks [P] can run together - Follow TDD approach: Execute test tasks before their corresponding implementation tasks - File-based coordination: Tasks affecting the same files must run sequentially - Validation checkpoints: Verify each phase completion before proceeding

  1. Implementation execution rules:

- Setup first: Initialize project structure, dependencies, configuration - Tests before code: If you need to write tests for contracts, entities, and integration scenarios - Core development: Implement models, services, CLI commands, endpoints - Integration work: Database connections, middleware, logging, external services - Polish and validation: Unit tests, performance optimization, documentation

  1. Progress tracking and error handling:

- Report progress after each completed task - Halt execution if any non-parallel task fails - For parallel tasks [P], continue with successful tasks, report failed ones - Provide clear error messages with context for debugging - Suggest next steps if implementation cannot proceed - IMPORTANT For completed tasks, make sure to mark the task off as [X] in the tasks file.

  1. Completion validation:

- Verify all required tasks are completed - Check that implemented features match the original specification - Validate that tests pass and coverage meets requirements - Confirm the implementation follows the technical plan - Report final status with summary of completed work

Note: This skill assumes a complete task breakdown exists in tasks.md. If tasks are incomplete or missing, suggest running the bb-tasks skill first to regenerate the task list.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.89%
按下载量换算24

Claude

31.06%
按下载量换算22

Cursor

20.9%
按下载量换算15

Gemini CLI

9.95%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills