Conversation
… status - Strip model context suffix (e.g. "1M context") before incident name matching so "Opus 4.6 (1M context)" correctly matches "Increased errors on Opus 4.6" - Add STATUS_LBL to show which service is affected (model family or "CC") - Map 4-level severity scale: ✓ operational, ▲ minor, ⚠ major, ↯ critical - Apply same severity scale to CC component: degraded_performance=▲, partial_outage=⚠, major_outage=↯ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…plan - Add design spec for permission-gateway (standalone plugin) and fan-flames (workspace-jj skill) - Add implementation plan for permission-gateway Phase 1 - Rename workspace-jj scripts: jj-worktree-* → jj-workspace-* (jj terminology) - Update workspace-setup command to reference renamed scripts
…ay plugin - Tiered evaluation: Gate-the-Gate → Deny (immutable) → .local.md → Confirm → Approve → Tier 2 LLM - 124 tests covering safe/dangerous/confirm/edge cases/precedence/Tier 2 - One-way ratchet: hardcoded deny is immutable floor, .local.md cannot loosen - Gate-the-gate: Write/Edit hooks confirm modifications to gateway config files - Full-string scanning: dangerous patterns caught inside xargs, find -exec, redirects - Decision logging to .claude/permission-gateway.log for rule self-tuning - .local.md config: project > user global > plugin defaults, deny wins ties - Tier 2: systemMessage with LLM evaluation prompt for unknown commands - READMEs for permission-gateway plugin and updated root README - project-setup-jj: add jj working-copy-is-a-commit instruction to CLAUDE.md template
- Skill file: 5-phase lifecycle (plan → fan-out → collect → fan-in → verify) - Merge order: smallest diff first by files touched, with --merge-order override - Partial success: merge what succeeded, preserve failed workspaces - Change ID based fan-in: decouples squash from workspace lifecycle - Delegates dispatch to superpowers, handles jj-specific bookends only - CLAUDE.md override: routes subagent-driven-development through fan-flames - README: documents skill usage and integration
- /tune: scans decision log, normalizes commands into patterns, suggests .local.md promotions - gate-config-writes: widened pattern (permission-gate*, .claude/settings, .claude-plugin/) - gate-config-writes: fail-closed trap (malformed input defaults to ask, not pass-through) - gate-config-writes: anchored settings path (no false positives on app-level settings files) - READMEs updated with self-tuning docs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Three new capabilities for autonomous subagent workflows:
jj squash --from, reports plan coverage. Delegates dispatch to superpowers, handles jj-specific lifecycle only..local.mdrule promotions based on confirmation frequency.Changes
permission-gateway plugin (new)
permission-gate.sh— tiered evaluation: Gate-the-Gate → Deny (immutable) → .local.md → Confirm → Approve → Tier 2 LLMgate-config-writes.sh— fail-closed Write/Edit hook protecting gateway config + hook registration settingspermission-evaluate.md— Tier 2 LLM prompt templatecommands/tune.md— log-based rule self-tuning commandtests/test-permission-gate.sh— 124 tests covering safe/dangerous/confirm/edge cases/precedence.claude/permission-gateway.log(APPROVE/DENY/CONFIRM + command).local.mdconfig: project > global > defaults, deny wins tiesworkspace-jj (enhanced)
skills/fan-flames.md— 5-phase lifecycle (plan → fan-out → collect → fan-in → verify)--merge-orderoverridesubagent-driven-developmentthrough fan-flames in jj reposjj-worktree-*→jj-workspace-*(jj terminology)Docs
project-setup-jjtemplate: added jj working-copy-is-a-commit instructionSecurity model
.local.mdcannot loosenpermission-gate*,.claude/settings,.claude-plugin/require human confirmationask, not pass-throughxargs,find -exec, redirect clobbersTest plan
bash plugins/permission-gateway/tests/test-permission-gate.sh— 124 tests.local.mdrule override (project level)🤖 Generated with Claude Code