Skip to content

Releases: kastheco/claude-plugins

kascheck v1.0.0 - Initial Release

Choose a tag to compare

@brkastner brkastner released this 04 May 02:41

First release of kascheck — a production-readiness audit plugin in the kas-claude-plugins marketplace.

Renamed from project-auditor immediately after that earlier (now-deleted) release. Use this one.

What it does

Spawns parallel subagents to assess production readiness across:

  • Security — auth, input validation, secrets, OWASP Top 10
  • Code quality — type safety, error handling, vibe-code red flags
  • Infrastructure — CI/CD, containerization, observability, DB
  • Testing — coverage, framework, unit/integration presence

Produces a scored report (0-100) with verdict tiers: READY, READY WITH FOLLOWUPS, NEEDS WORK, NOT RECOMMENDED. Especially useful for vibe-coded / AI-generated codebases.

Scoring

Per-finding deductions are capped per severity class so a pile of polish nits cannot drag down an otherwise-clean project:

Severity Per finding Class cap
CRITICAL -20 -60
HIGH -8 -24
MEDIUM -3 -15
LOW -1 -5

Install

claude plugin marketplace add kastheco/claude-plugins
claude plugin install kascheck@kas-claude-plugins

Then use /kascheck:audit [path] [--detailed] or just say "kascheck this project".

v2.0.0 - Remove beads integration

Choose a tag to compare

@brkastner brkastner released this 25 Jan 19:10

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

Choose a tag to compare

@brkastner brkastner released this 22 Jan 20:46

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

Choose a tag to compare

@brkastner brkastner released this 21 Jan 20:42

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

Choose a tag to compare

@brkastner brkastner released this 21 Jan 20:42

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

Choose a tag to compare

@brkastner brkastner released this 21 Jan 20:42

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

Choose a tag to compare

@brkastner brkastner released this 10 Jan 06:00

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

Choose a tag to compare

@brkastner brkastner released this 10 Jan 04:49

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

Choose a tag to compare

@brkastner brkastner released this 10 Jan 04:02

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

Choose a tag to compare

@brkastner brkastner released this 10 Jan 03:49

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