boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Configure and initialize a project following the Product as Code specification for structured, version-controlled product management
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/pac-configureContext preview
What this command does when you run it.
Configure and initialize a project following the Product as Code specification for structured, version-controlled product management
Configure and initialize a project following the Product as Code specification for structured, version-controlled product management
1. **Analyze Project Context**
2. **Interactive Setup (if no existing PAC config)**
3. **Create PAC Directory Structure**
4. **Generate PAC Configuration Files**
apiVersion: productascode.org/v0.1.0
kind: Configuration
metadata:
project: "[project-name]"
owner: "[owner-name]"
created: "[timestamp]"
spec:
defaults:
assignee: "[default-assignee]"
epic_prefix: "epic-"
ticket_prefix: "ticket-"
validation:
enforce_unique_ids: true
require_acceptance_criteria: true5. **Create Initial Epic Template**
apiVersion: productascode.org/v0.1.0
kind: Epic
metadata:
id: "epic-[name]"
name: "[Epic Name]"
created: "[timestamp]"
owner: "[owner]"
spec:
description: |
[Epic description]
scope: |
[Scope definition]
success_criteria:
- [Criterion 1]
- [Criterion 2]
tickets: []6. **Create Initial Ticket Template**
apiVersion: productascode.org/v0.1.0
kind: Ticket
metadata:
id: "ticket-[name]"
name: "[Ticket Name]"
epic: "[parent-epic-id]"
created: "[timestamp]"
assignee: "[assignee]"
spec:
description: |
[Ticket description]
type: "feature"
status: "backlog"
priority: "medium"
acceptance_criteria:
- [ ] [Criterion 1]
- [ ] [Criterion 2]
tasks:
- [ ] [Task 1]
- [ ] [Task 2]7. **Create First Epic and Ticket**
8. **Set Up Validation Scripts**
9. **Configure Git Integration**
.pac/tmp/
.pac/cache/
*.pac.lock10. **Generate PAC Documentation**
11. **Create Helper Commands**
12. **Final Validation and Summary**
/project:pac-configure /project:pac-configure --epic-name "user-authentication" --owner "john.doe" /project:pac-configure --minimal
A comprehensive development toolkit designed following Anthropic's Claude Code Best Practices for AI-assisted software development.
Repo: qdhenry/Claude-Command-Suite
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Analyze semantic position relative to knowledge boundaries to prevent hallucination and identify uncertainty zones.
Generate a visual heatmap of knowledge boundaries showing safe zones, risk areas, and semantic coverage.
Evaluate the current risk level and provide detailed analysis of potential hallucination or reasoning failure.
Find and construct semantic bridges to safely navigate from current position to target concept without crossing dangerous boundaries.
Takes an input prompt and returns ONLY a token-optimized version that preserves meaning while minimizing token count. Based on LLM tokenization principles:…