Skip to content

Releases: kastheco/claude-plugins

v2.0.0 - Remove beads integration

25 Jan 19:10

Choose a tag to compare

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 needed
  • commands/next.md - Beads issue finder
  • hooks/hooks.json - Beads daemon startup
  • hooks/scripts/ensure-daemon.sh - Daemon script

Changed

  • Simplified planning workflow: plan-reviewer → ExitPlanMode (no task-splitter step)
  • Streamlined /kas:setup to check only gh/git prerequisites
  • Updated all commands to remove beads references
  • Added superpowers plugin as a prerequisite

Migration Guide

  1. Install the superpowers plugin from the official marketplace
  2. Remove .beads/ directory from your projects if no longer needed
  3. Update any scripts or workflows that reference bd commands

v1.9.1

22 Jan 20:46

Choose a tag to compare

Fixed

  • task plugin v1.0.2: clickup-task-agent now normalizes task IDs before API calls
    • Strips CU-/cu- prefix (e.g., CU-86dzburuf86dzburuf)
    • Strips # prefix
    • Extracts ID from ClickUp URLs
    • Fixes issue where first API call failed and fell back to search

v1.9.0 - Task Plugin

21 Jan 20:42

Choose a tag to compare

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-agent for MCP delegation (keeps main context clean)
  • task-workflow skill 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

21 Jan 20:42

Choose a tag to compare

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:verify now 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

21 Jan 20:42

Choose a tag to compare

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-pluginkas-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

10 Jan 06:00

Choose a tag to compare

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

10 Jan 04:49

Choose a tag to compare

Features

  • Smart agent selection - /kas:verify analyzes 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
  • Fixed agent references to use relative paths (portable)
  • Expanded prerequisites with beads and gh CLI installation instructions

v1.4.0: Tiered /kas:verify flow

10 Jan 04:02

Choose a tag to compare

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 model
  • README.md - Updated /kas:verify documentation

v1.3.0 - pr-review-toolkit Integration

10 Jan 03:49

Choose a tag to compare

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

10 Jan 02:45

Choose a tag to compare

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