boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Create a new ticket within an epic following the Product as Code specification
$ 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-create-ticketContext preview
What this command does when you run it.
Create a new ticket within an epic following the Product as Code specification
Create a new ticket within an epic following the Product as Code specification
1. **Validate PAC Environment**
2. **Epic Selection**
3. **Ticket Information Gathering**
4. **Generate Ticket ID**
5. **Define Acceptance Criteria**
acceptance_criteria:
- [ ] User can successfully authenticate
- [ ] Session persists across page refreshes
- [ ] Invalid credentials show error message6. **Define Implementation Tasks**
tasks:
- [ ] Create authentication service
- [ ] Implement login form component
- [ ] Add session management
- [ ] Write unit tests
- [ ] Update documentation7. **Create Ticket Structure**
apiVersion: productascode.org/v0.1.0
kind: Ticket
metadata:
id: "[generated-ticket-id]"
sequence: [number]
name: "[Ticket Name]"
epic: "[parent-epic-id]"
created: "[timestamp]"
updated: "[timestamp]"
assignee: "[assignee]"
labels:
component: "[relevant-component]"
effort: "[size-estimate]"
spec:
description: |
[Detailed description]
type: "[feature/bug/task/spike]"
status: "[backlog/in-progress/review/done]"
priority: "[low/medium/high/critical]"
acceptance_criteria:
- [ ] [Criterion 1]
- [ ] [Criterion 2]
tasks:
- [ ] [Task 1]
- [ ] [Task 2]
technical_notes: |
[Any technical considerations]
dependencies:
- [Other ticket IDs if any]8. **Estimate Effort**
9. **Link to Epic**
spec:
tickets:
- id: "[ticket-id]"
name: "[ticket-name]"
status: "backlog"
assignee: "[assignee]"10. **Save Ticket File**
`.pac/epics/[epic-id]/tickets/[ticket-id].yaml`
11. **Create Branch (Optional)**
12. **Generate Ticket Summary**
/project:pac-create-ticket --epic epic-authentication /project:pac-create-ticket --epic epic-payment --name "Implement Stripe integration" --type feature /project:pac-create-ticket --epic epic-ui --assignee jane@example.com --priority high --create-branch
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:…