boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
Create git commits aligned with task completion, maintaining clean version control synchronized with task progress.
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/commitContext preview
What this command does when you run it.
Create git commits aligned with task completion, maintaining clean version control synchronized with task progress.
Create git commits aligned with task completion, maintaining clean version control synchronized with task progress.
/orchestration/commit [TASK-ID] [options]
Automatically creates well-structured commits when tasks move to QA or completion, using task metadata to generate meaningful commit messages following Conventional Commits specification.
/orchestration/commit
Commits changes for the task currently in progress.
/orchestration/commit TASK-003
Commits changes related to a specific task.
/orchestration/commit --batch
Groups related completed tasks into logical commits.
Based on task type and content:
feat(auth): implement JWT token validation - Add token verification middleware - Implement refresh token logic - Add expiration handling Task: TASK-003 Status: todos -> in_progress -> qa Time: 4.5 hours
Task Type -> Commit Type ━━━━━━━━━━━━━━━━━━━━━━━━━━━ feature -> feat: bugfix -> fix: refactor -> refactor: test -> test: docs -> docs: performance -> perf: security -> fix: (with security note)
/orchestration/move TASK-003 qa --auto-commit
Automatically commits when moving to QA status.
/orchestration/commit --validate
Checks:
/orchestration/commit TASK-003 --message "Custom commit message"
Override automatic message generation.
/orchestration/commit --detect-scope
Automatically detects scope from changed files:
/orchestration/commit --breaking
Adds breaking change indicator:
feat(api)!: restructure authentication endpoints BREAKING CHANGE: Auth endpoints moved from /auth to /api/v2/auth
/orchestration/commit --feature authentication
Groups all completed auth tasks into one commit.
/orchestration/commit --status qa
Commits all tasks currently in QA.
/orchestration/commit --smart-group
Intelligently groups related tasks:
Feature Group: Authentication (3 tasks) - TASK-001: Database schema - TASK-003: JWT implementation - TASK-005: Login endpoint Suggested commit: feat(auth): implement complete authentication system
/orchestration/commit --worktree
Detects current worktree and commits only relevant tasks.
/orchestration/commit --all-worktrees
Shows commit status across all worktrees:
Worktree Status: - feature/auth: 2 tasks ready to commit - feature/payments: 1 task ready to commit - feature/ui: No uncommitted changes
## Pre-commit Validation ✓ All tests passing ✓ No linting errors ✓ Task requirements met ✗ Uncommitted files outside task scope: src/unrelated.js Proceed with commit? [y/n]
## Task Alignment Check Changed files: - src/auth/jwt.ts ✓ (matches TASK-003) - src/auth/validate.ts ✓ (matches TASK-003) - src/payments/stripe.ts ✗ (not in TASK-003 scope) Warning: Changes outside task scope detected
/orchestration/commit --link-task
Adds task URL/reference to commit:
feat(auth): implement JWT validation Task: TASK-003 Link: http://orchestration/03_15_2024/auth_system/tasks/TASK-003
/orchestration/commit --update-tracker
Updates TASK-STATUS-TRACKER.yaml with commit info:
git_tracking:
TASK-003:
commits: ["abc123def"]
commit_message: "feat(auth): implement JWT validation"
committed_at: "2024-03-15T14:30:00Z"/orchestration/commit TASK-003 Generated commit: feat(auth): implement JWT token validation - Add verification middleware - Handle token expiration - Implement refresh logic Task: TASK-003 (4.5 hours)
/orchestration/commit --feature authentication --batch Grouping 3 related tasks: feat(auth): complete authentication system implementation - Set up database schema (TASK-001) - Implement JWT validation (TASK-003) - Create login endpoints (TASK-005) Tasks: TASK-001, TASK-003, TASK-005 (12 hours total)
/orchestration/commit TASK-007 Generated commit: fix(auth): resolve token expiration race condition - Fix async validation timing issue - Add comprehensive test coverage - Prevent edge case in refresh flow Fixes: #123 Task: TASK-007 (2 hours)
feat(<scope>): <task-title> - <implementation-detail-1> - <implementation-detail-2> - <implementation-detail-3> Task: <task-id> (<duration>) Status: <status-transition>
fix(<scope>): <issue-description> - <root-cause> - <solution> - <test-coverage> Fixes: #<issue-number> Task: <task-id>
1. **Commit at Natural Breakpoints**: When moving tasks to QA 2. **Keep Commits Atomic**: One logical change per commit 3. **Use Batch Wisely**: Only group truly related tasks 4. **Validate First**: Always run validation before committing 5. **Update Status**: Ensure task status is current
Set in orchestration config:
auto_commit: on_qa: true on_complete: false require_tests: true require_validation: true
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:…