boundary-bbcr-fallback
Execute automatic BBCR (Collapse-Rebirth Correction) when knowledge boundaries are exceeded or reasoning fails.
You are tasked with generating a technical work log comment for a Linear issue based on recent git commits.
$ npx -y skills add qdhenry/Claude-Command-Suite --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/generate-linear-worklogContext preview
What this command does when you run it.
You are tasked with generating a technical work log comment for a Linear issue based on recent git commits.
You are tasked with generating a technical work log comment for a Linear issue based on recent git commits.
1. **Check Linear MCP Availability**
2. **Check for Existing Work Log**
2. **Extract Git Information**
3. **Generate Work Log Content**
4. **Handle Existing Work Log**
5. **Format Structure**
## Work Completed [TODAY'S DATE] ### Branch: [current-branch-name] **Commit [short-hash]: [Commit Title]** - [Technical detail 1] - [Technical detail 2] - [Line count] lines of code across [file count] files [Additional commits in chronological order] ### [Status Section] - [Current infrastructure/testing status] - [What is now available/ready]
6. **Post to Linear**
Linear MCP client is not installed. To install it:
1. Install the Linear MCP server:
npm install -g @modelcontextprotocol/server-linear
2. Add Linear MCP to your Claude configuration:
Add the following to your Claude MCP settings:
{
"mcpServers": {
"linear": {
"command": "npx",
"args": ["@modelcontextprotocol/server-linear"],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
}
}
}
3. Restart Claude Code
4. Get your Linear API key from: https://linear.app/settings/apiWhen invoked with `/generate-linear-worklog BLA2-2`, the command should: 1. Analyze git commits on the current branch 2. Generate a structured work log 3. Post the comment to Linear issue BLA2-2 4. Confirm successful posting
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:…