bbs — community claude-skill-registry, community, ide skills, Claude Code, Cursor, Windsurf

v1.0.0
GitHub

About this Skill

Ideal for Development Agents requiring robust issue tracking and management capabilities with content-addressed storage The most comprehensive Claude Code skills registry | Web Search: https://skills-registry-web.vercel.app

majiayu000 majiayu000
[0]
[0]
Updated: 2/20/2026

Agent Capability Analysis

The bbs skill by majiayu000 is an open-source community AI agent skill for Claude Code and other IDE workflows, helping agents execute tasks with better context, repeatability, and domain-specific guidance.

Ideal Agent Persona

Ideal for Development Agents requiring robust issue tracking and management capabilities with content-addressed storage

Core Value

Empowers agents to create, track, and manage issues using block primitives, preserving full history in the store, and enables review of issue history and status using commands like `bbs-list`

Capabilities Granted for bbs

Creating and tracking bugs, features, and tasks
Managing dependencies between issues
Reviewing issue history and status

! Prerequisites & Limits

  • Requires access to The Fold's CAS-native issue tracker
  • Built on block primitives, may require specific backend infrastructure
Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

bbs

Install bbs, an AI agent skill for AI agent workflows and automation. Works with Claude Code, Cursor, and Windsurf with one-command setup.

SKILL.md
Readonly

BBS (Bulletin Board System) Skill

Overview

BBS is The Fold's CAS-native issue tracker built on block primitives. All issues are content-addressed, with full history preserved in the store.

Use BBS for:

  • Creating and tracking issues (bugs, features, tasks, epics)
  • Finding available work (unblocked issues)
  • Managing dependencies between issues
  • Reviewing issue history and status

Quick Reference

CommandPurposeExample
bbs-listList issues(bbs-list)
bbs-showView issue details(bbs-show 'fold-001)
bbs-createCreate new issue(bbs-create "Title")
bbs-updateUpdate issue fields(bbs-update 'fold-001 'status 'in_progress)
bbs-closeClose an issue(bbs-close 'fold-001)
bbs-findSearch issue titles(bbs-find "query")
bbs-searchSearch titles + descriptions(bbs-search "query")
bbs-readyShow unblocked work(bbs-ready)
bbs-blockedShow blocked issues(bbs-blocked)
bbs-depAdd dependency(bbs-dep 'blocker 'blocked)
bbs-add-blockerAdd dependency (alias)(bbs-add-blocker 'fold-001 'fold-002)
bbs-list-by-labelFilter by label(bbs-list-by-label 'topology)
bbs-list-by-typeFilter by type(bbs-list-by-type 'epic)
bbs-label-reportShow all labels(bbs-label-report)
bbs-statsDatabase statistics(bbs-stats)

Instructions

Listing Issues

bash
1# List open issues (default) 2./fold "(bbs-list)" 3 4# List closed issues 5./fold "(bbs-list 'status 'closed)" 6 7# List all issues regardless of status 8./fold "(bbs-list 'status 'all)"

Viewing Issues

bash
1# View issue details 2./fold "(bbs-show 'fold-001)" 3 4# Search issue titles 5./fold "(bbs-find \"auth\")" 6 7# Search titles AND descriptions (more comprehensive) 8./fold "(bbs-search \"authentication\")" 9 10# Show unblocked work (ready to start) 11./fold "(bbs-ready)" 12 13# Show blocked issues 14./fold "(bbs-blocked)"

Filtering Issues

bash
1# Filter by label 2./fold "(bbs-list-by-label 'topology)" 3 4# Filter by type (task, bug, feature, epic) 5./fold "(bbs-list-by-type 'epic)" 6 7# Get programmatic list of IDs with label (not displayed) 8./fold "(bbs-by-label 'refactor)" 9 10# Show all labels in use 11./fold "(bbs-label-report)"

Creating Issues

bash
1# Basic create (just title) 2./fold "(bbs-create \"Fix authentication bug\")" 3 4# With priority (0=critical, 2=medium, 4=backlog) 5./fold "(bbs-create \"Urgent fix\" 'priority 0)" 6 7# With type (task, bug, feature, epic) 8./fold "(bbs-create \"Add dark mode\" 'type 'feature)" 9 10# Full creation with all options 11./fold "(bbs-create \"Refactor auth\" 'description \"Detailed description here\" 'priority 1 'type 'task 'labels '(core security))"

Updating Issues

bash
1# Update status 2./fold "(bbs-update 'fold-001 'status 'in_progress)" 3 4# Change priority 5./fold "(bbs-update 'fold-001 'priority 0)" 6 7# Add labels 8./fold "(bbs-update 'fold-001 'labels '(urgent core))" 9 10# Update description 11./fold "(bbs-update 'fold-001 'description \"New description\")"

Closing Issues

bash
1# Simple close 2./fold "(bbs-close 'fold-001)" 3 4# Close with reason 5./fold "(bbs-close 'fold-001 'reason \"Fixed in commit abc123\")"

Managing Dependencies

bash
1# fold-001 blocks fold-002 (fold-002 depends on fold-001) 2./fold "(bbs-dep 'fold-001 'fold-002)" 3 4# What blocks this issue? 5./fold "(bbs-blockers 'fold-002)" 6 7# What does this issue block? 8./fold "(bbs-blocking 'fold-001)" 9 10# All unblocked open issues (ready for work) 11./fold "(bbs-ready)"

History & Statistics

bash
1# Show version history for an issue 2./fold "(bbs-history 'fold-001)" 3 4# Database statistics 5./fold "(bbs-stats)"

Field Reference

Priority Levels

PriorityMeaning
0Critical - drop everything
1High - do soon
2Medium (default)
3Low - when time permits
4Backlog - someday maybe

Issue Types

TypeUse For
taskGeneral work items
bugDefects to fix
featureNew functionality
epicLarge multi-issue efforts

Status Values

StatusMeaning
openNot yet started
in_progressCurrently being worked
closedCompleted or won't fix

Examples

Example 1: Typical Bug Fix Workflow

bash
1# Find the bug 2./fold "(bbs-find \"auth\")" 3 4# Check details 5./fold "(bbs-show 'fold-042)" 6 7# Start working on it 8./fold "(bbs-update 'fold-042 'status 'in_progress)" 9 10# ... fix the bug ... 11 12# Close it 13./fold "(bbs-close 'fold-042 'reason \"Fixed token refresh logic\")"

Example 2: Creating a Feature with Dependencies

bash
1# Create the main feature 2./fold "(bbs-create \"Add export functionality\" 'type 'feature 'priority 1)" 3# Returns: fold-100 4 5# Create sub-tasks 6./fold "(bbs-create \"Design export API\" 'type 'task)" 7# Returns: fold-101 8 9./fold "(bbs-create \"Implement CSV export\" 'type 'task)" 10# Returns: fold-102 11 12# Set up dependencies (design must complete before implementation) 13./fold "(bbs-dep 'fold-101 'fold-102)" 14 15# Main feature blocked by implementation 16./fold "(bbs-dep 'fold-102 'fold-100)"

Example 3: Finding Available Work

bash
1# What's ready to work on? 2./fold "(bbs-ready)" 3 4# Get stats overview 5./fold "(bbs-stats)" 6 7# See what's currently blocked 8./fold "(bbs-blocked)"

Example 4: Triaging Issues

bash
1# List all open issues 2./fold "(bbs-list)" 3 4# Bump priority on critical item 5./fold "(bbs-update 'fold-050 'priority 0)" 6 7# Add labels for categorization 8./fold "(bbs-update 'fold-050 'labels '(security urgent))"
bash
1# See what labels exist 2./fold "(bbs-label-report)" 3 4# Find all topology-related issues 5./fold "(bbs-list-by-label 'topology)" 6 7# Find all epics to see big-picture work 8./fold "(bbs-list-by-type 'epic)" 9 10# Deep search in descriptions 11./fold "(bbs-search \"homology\")"

Notes

  • Issue IDs: Can be symbols ('fold-001) or strings ("fold-001")
  • Auto-initialization: BBS initializes automatically when the REPL starts
  • CAS Storage: All issues are content-addressed in .store/
  • Head files: Current issue state tracked in .store/heads/bbs/
  • Counter: Issue counter in .bbs/counter

Pipeline Integration

BBS effects are available in agent pipelines (lattice/pipeline/effects.ss):

scheme
1(bbs-create "title") ; Create issue, return ID 2(bbs-create-full title desc type priority) 3(bbs-update id updates-alist) ; Update issue fields 4(bbs-close id) ; Close issue 5(bbs-ready) ; Get unblocked issues 6(bbs-show id) ; Get issue details

File Locations

PathPurpose
.store/heads/bbs/Issue head files (current hash per issue)
.bbs/counterNext issue number
.bbs/depsDependency relationships
boundary/bbs/bbs.ssCore BBS implementation
boundary/bbs/ops.ssBBS operations
boundary/bbs/index.ssBBS indexing

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is bbs?

Ideal for Development Agents requiring robust issue tracking and management capabilities with content-addressed storage The most comprehensive Claude Code skills registry | Web Search: https://skills-registry-web.vercel.app

How do I install bbs?

Run the command: npx killer-skills add majiayu000/claude-skill-registry/bbs. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for bbs?

Key use cases include: Creating and tracking bugs, features, and tasks, Managing dependencies between issues, Reviewing issue history and status.

Which IDEs are compatible with bbs?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for bbs?

Requires access to The Fold's CAS-native issue tracker. Built on block primitives, may require specific backend infrastructure.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add majiayu000/claude-skill-registry/bbs. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use bbs immediately in the current project.

Related Skills

Looking for an alternative to bbs or another community skill for your workflow? Explore these related open-source skills.

View All

widget-generator

Logo of f
f

f.k.a. Awesome ChatGPT Prompts. Share, discover, and collect prompts from the community. Free and open source — self-host for your organization with complete privacy.

149.6k
0
AI

flags

Logo of vercel
vercel

flags is a Next.js feature management skill that enables developers to efficiently add or modify framework feature flags, streamlining React application development.

138.4k
0
Browser

zustand

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI

data-fetching

Logo of lobehub
lobehub

The ultimate space for work and life — to find, build, and collaborate with agent teammates that grow with you. We are taking agent harness to the next level — enabling multi-agent collaboration, effortless agent team design, and introducing agents as the unit of work interaction.

72.8k
0
AI