Releases: kastheco/claude-plugins
Releases · kastheco/claude-plugins
v2.0.0 - Remove beads integration
Breaking Changes
Beads task tracking has been removed from the kas workflow. The superpowers plugin (official Claude Code marketplace) now handles brainstorming, subagent spawning, and initial reviews.
Removed
agents/task-splitter.md- No longer neededcommands/next.md- Beads issue finderhooks/hooks.json- Beads daemon startuphooks/scripts/ensure-daemon.sh- Daemon script
Changed
- Simplified planning workflow:
plan-reviewer → ExitPlanMode(no task-splitter step) - Streamlined
/kas:setupto check only gh/git prerequisites - Updated all commands to remove beads references
- Added
superpowersplugin as a prerequisite
Migration Guide
- Install the
superpowersplugin from the official marketplace - Remove
.beads/directory from your projects if no longer needed - Update any scripts or workflows that reference
bdcommands
v1.9.1
v1.9.0 - Task Plugin
New Plugin: task v1.0.0
ClickUp task management with kas workflow integration.
Commands
/task:start <id>- Start work on ClickUp task/task:done- Complete work, create PR, update ClickUp/task:merge- Merge PR, close task/task:status [id]- Check task status/task:new- Create new task via interview
Features
clickup-task-agentfor MCP delegation (keeps main context clean)task-workflowskill with setup, prompts, and templates- ClickUp HTTP MCP server configuration
Installation
{
"plugins": ["kas-claude-plugins/task"]
}Fixes
- Removed redundant root
plugin.json - Corrected repository references to
kas-claude-plugins
See CHANGELOG.md for full details.
v1.8.0 - Structured Planning
Structured Planning Workflow
Added
/kas:start- Structured planning workflow with beads integration- Checks beads context before planning
- Enforces explore → design → review workflow
- Auto-runs plan-reviewer and task-splitter before ExitPlanMode
- Integration contract for 3rd party skills
Fixed
/kas:verifynow runs reality assessment on non-code changes- Tier 2 validates plan completion regardless of change type
- Docs-only and config-only changes are properly verified
v1.7.0 - Multi-Plugin Marketplace
Multi-Plugin Marketplace Structure
This release restructures the repository to support multiple plugins in a marketplace format.
Changes
- Restructured to multi-plugin format: kas plugin moved to
plugins/kas/ - Updated marketplace.json: Now points to subdirectory source path
- Renamed repository:
kas-claude-plugin→kas-claude-plugins
Added
- CONTRIBUTING.md with guidelines for plugin developers
- Plugin-specific README at
plugins/kas/README.md
Migration
Update your .claude/settings.json:
{
"enabledPlugins": {
"kas@kas-claude-plugins": true
}
}v1.5.0 - Git Worktree Integration
Features
- Auto-create worktree after plan approval - One worktree per plan, all issues worked in same isolated environment
- Worktree detection in
/kas:next- Skips worktree creation when already in one - Worktree cleanup in
/kas:merge- Automatically removes worktree after merging
Documentation
- Simplified CLAUDE.md (-109 lines)
- Updated Git Worktree Workflow section with conventions
- Added worktree handling to
commands/next.md
Conventions
- Path:
.worktrees/<prefix>-<slug>/ - Branch:
<prefix>/<slug> - Prefix:
feat/(default),fix/(for Fix:/Bug:),refactor/(for Refactor:)
v1.4.1: Smart agent selection & project rename
Features
- Smart agent selection -
/kas:verifyanalyzes diff and only runs relevant agents:- code-reviewer: any code changes
- silent-failure-hunter: error handling changes
- type-design-analyzer: type/interface changes
- comment-analyzer: comment/doc changes
- pr-test-analyzer: test file changes
Changes
- Project renamed to
kas-claude-plugin- Marketplace:
brkastner/kas-claude-plugin - Install:
kas@kas-claude-plugin
- Marketplace:
- Fixed agent references to use relative paths (portable)
- Expanded prerequisites with beads and gh CLI installation instructions
v1.4.0: Tiered /kas:verify flow
Features
- Tiered verification with early-exit - More efficient review flow
- Tier 1 (parallel): 5 static analysis agents with early-exit on critical/high/medium issues
- Tier 2 (if Tier 1 clean): project-reality-manager
- Tier 3 (if VERIFIED): code-simplifier for optional improvements
- project-reality-manager now runs only after static analysis passes
- code-simplifier runs only on VERIFIED code
Changes
commands/verify.md- Rewrote with tiered execution modelREADME.md- Updated /kas:verify documentation
v1.3.0 - pr-review-toolkit Integration
Added
/kas:verify now integrates pr-review-toolkit agents for comprehensive code verification:
Parallel Agents (6 total)
- kas: code-reviewer, project-reality-manager
- pr-review-toolkit: silent-failure-hunter, comment-analyzer, type-design-analyzer, pr-test-analyzer
Sequential (after VERIFIED)
- code-simplifier: Optional improvement suggestions
Workflow
/kas:verify
↓
[6 agents run in parallel]
↓
Combine findings (worst-wins logic)
↓
VERIFIED? → Run code-simplifier
↓
Present results + wait for approval
Verdict Logic
| Condition | Verdict |
|---|---|
| All pass, no critical/high issues | VERIFIED |
| Any medium issues only | NEEDS CHANGES |
| Any critical/high issues | BLOCKED |
v1.1.0 - Fixed automatic triggers
Fixed
- task-splitter auto-trigger: Now chains from plan-reviewer output, ensuring it runs before ExitPlanMode
- plan-reviewer → task-splitter flow: Added explicit "Next Step" in plan-reviewer output
- SessionStart hook error: Made ensure-daemon.sh silent and always exit 0
- Post-approval workflow: Stops after beads creation, provides next session prompt for context clearing
Changed
- task-splitter now runs BEFORE ExitPlanMode (alongside plan-reviewer) instead of after approval
- Implementation must start in fresh context after
/clear