Skip to content

Releases: charlesjones-dev/claude-code-plugins-dev

v2.0.1

17 Feb 17:10

Choose a tag to compare

Fixed

AI-Statusline Plugin (v1.2.1)

  • Fixed PowerShell script template bugs
    • Fixed stdin reading using reserved $input automatic variable; replaced with [System.Console]::In.ReadToEnd() so the script actually receives JSON data when invoked via -File
    • Fixed progress bar using ASCII +/- instead of Unicode block characters to match bash template and documentation
    • Fixed segment separator using " | " instead of " · " to match bash template and README examples
    • Fixed unquoted paths in Split-Path and git -C that would break on directories with spaces
    • Fixed confusing cost format string '${0:F2}' that resembles a variable reference; clarified with string concatenation
    • Fixed Unicode character encoding by setting [Console]::OutputEncoding to UTF-8 and using [char] codes instead of literal Unicode in source file

v2.0.0

17 Feb 05:10
3804f10

Choose a tag to compare

Breaking Changes

  • Migrate all plugins from commands/ to skills/ directory structure - All plugins now use skills/{skill-name}/SKILL.md format instead of commands/{command-name}.md. This aligns with Claude Code's native skill system for better discoverability and execution.

New

  • ai-writing plugin (v1.0.0) - Writing humanizer skill with interactive workflow

    • /writing-humanize: Detect and remove AI writing patterns from text
    • Interactive AskUserQuestion flow for input source, content type, and intensity
    • 6 grouped pattern categories (inflated language, fake depth, unnatural grammar, formatting tells, chatbot artifacts, weak endings)
    • Content-type rules (technical docs, README, blog post, PR/commit)
    • Developer-specific patterns for README inflation, doc over-explanation, PR padding
  • workflow-ship skill - End-to-end shipping workflow (/workflow-ship)

    • Runs preflight checks, auto-fixes issues, commits, pushes, and creates a PR
  • git-commit-push-pr skill - Interactive branch selection and PR creation (/git-commit-push-pr)

Improved

  • security-audit: Structured report template with severity scoring, OWASP compliance matrix, and remediation roadmap
  • accessibility-audit: Interactive WCAG version/level selection, Playwright MCP visual testing support, URL scanning
  • performance-audit: Structured report template with Core Web Vitals analysis
  • security-init: Rewritten with interactive AskUserQuestion flow
  • statusline-wizard: Migrated to skills format

Removed

  • ai-plugins plugin - Scaffolding tools removed (superseded by skills structure)
  • All commands/ directories replaced by skills/ directories

Other

  • Update copyright year to 2026 in all LICENSE files

v1.9.1 - Security Scanning for Preflight Checks

19 Jan 00:48

Choose a tag to compare

What's New

AI-Workflow Plugin v1.1.0

The /workflow-preflight command now auto-detects and runs security scanning tools alongside type checking, linting, formatting, and tests.

Dependency Vulnerability Scanning:

  • pnpm/npm/yarn audit for Node.js projects
  • pip-audit and safety for Python
  • cargo audit for Rust

Semgrep SAST Detection:

  • Config files: .semgreprc.yml, .semgrep.yml, .semgrep/
  • CI workflows: Extracts --config flags from GitHub Actions
  • README documentation: Finds documented security commands
  • Docker fallback when CLI not installed

Platform Support:

  • Windows Docker: Automatic MSYS_NO_PATHCONV=1 prefix to prevent Git Bash path
    conversion errors

ESLint Security:

  • Detects eslint-plugin-security in devDependencies and notes when security linting is
    active

Full Changelog

v1.9.0...v1.9.1

v1.9.0 - AI-Learn: Socratic Learning Mode

15 Jan 00:41

Choose a tag to compare

A new plugin that transforms Claude from a code generator into a patient coding mentor, guiding you through problem-solving without giving direct answers.

Commands:

  • /learn - Activates teaching mode with a 5-phase flow:
    • Assessment → Foundation → Guided Implementation → Error Discovery → Reinforcement
    • Uses Socratic questioning instead of direct answers
    • Provides hints and guidance rather than solutions
    • Includes escape hatch for users who explicitly need answers
  • /learn-review - Socratic code review that helps you discover issues yourself:
    • Reviews code through targeted questions
    • Guides you to find bugs by tracing through edge cases
    • Probes design decisions to deepen understanding
    • Question banks for logic, performance, readability, and security

Why use it?

Research shows that productive struggle leads to better knowledge retention than passive consumption. This plugin helps you actually learn to code rather than just copy-paste solutions.

v1.8.0 - Section 508 / WCAG 2.0 AA Support

18 Dec 18:03

Choose a tag to compare

What's New

AI-Accessibility Plugin (v1.3.0)

  • Added Section 508 / WCAG 2.0 AA option to /accessibility-audit command
    • New "508 / WCAG 2.0 AA" option in WCAG version selection
    • Supports US federal accessibility requirements aligned with WCAG 2.0 Level AA

Installation

/plugin marketplace add charlesjones-dev/claude-code-plugins-dev
/plugin install ai-accessibility@claude-code-plugins-dev

v1.7.1 - AI-Statusline Plugin Windows Fix

17 Dec 18:41

Choose a tag to compare

Fixed

AI-Statusline Plugin (v1.1.1)

  • Fixed PowerShell progress bar using incompatible Unicode characters
    • Replaced and with ASCII-compatible # and - characters
    • Ensures progress bar displays correctly on Windows environments

v1.7.0 - AI-Statusline Plugin

17 Dec 02:09

Choose a tag to compare

What's New

AI-Statusline Plugin (v1.1.0)

Customize your Claude Code status line with visual progress bars and configurable display options.

Commands:

  • /statusline-wizard - Interactive setup wizard for first-time configuration
  • /statusline-edit - Edit existing statusline script configuration

Features:

  • Cross-platform support (bash for Mac/Linux, PowerShell for Windows)
  • Visual progress bar for context usage with color-coded thresholds (green → yellow → red)
  • 9 configurable display elements:
    • Model name (e.g., "Claude Opus 4.5")
    • Token count (e.g., "50k/100k")
    • Progress bar with percentage
    • Current directory
    • Git branch
    • Session cost (hidden by default)
    • Session duration
    • Current time
    • Claude Code version

Installation:

/plugin install ai-statusline@claude-code-plugins-dev

v1.6.3 - Fix sub-agent enforcement for workflow-implement-phases

14 Dec 03:54

Choose a tag to compare

Fixed

AI-Workflow Plugin (v1.0.3)

Fixed /workflow-implement-phases not using sub-agents for phase implementations

  • Added explicit "Critical Requirements" section mandating Task() sub-agent usage for every phase
  • Added "CRITICAL: Mandatory Sub-Agent Requirement" section to implement-phases skill
  • Clarified orchestrator role: read plans, analyze dependencies, spawn sub-agents only
  • Added correct/wrong pattern examples showing Task() usage vs direct implementation
  • Updated parallel and sequential execution patterns with explicit Task() call examples
  • Prevents main agent from implementing phases directly, ensuring context isolation

Full Changelog: v1.6.2...v1.6.3

v1.6.2 - AI-Workflow Bug Fixes

13 Dec 04:13

Choose a tag to compare

Fixed

AI-Workflow Plugin (v1.0.2)

  • /workflow-plan-phases no longer auto-implements after planning

    • Added explicit Instructions and Important sections enforcing planning-only scope
    • Command now stops after presenting the plan and directs users to /workflow-implement-phases for execution
  • /workflow-implement-phases now properly reads plan file arguments

    • Added automatic plan discovery when no file is provided (searches docs/plans/)
    • Plan file argument is now optional with interactive selection from available plans

Documentation

  • Updated all command references in ai-workflow README to use workflow- prefix format

v1.6.1 - Command Metadata Standardization

10 Dec 22:39

Choose a tag to compare

What's Changed

Command Metadata Standardization

Added YAML frontmatter with name and description attributes to all 17 commands across 7 plugins. This standardizes command metadata for better discovery and documentation.

AI-Workflow Command Renaming

Renamed ai-workflow commands to use the workflow- prefix for consistency with other plugins:

Old Command New Command
/plan-phases /workflow-plan-phases
/implement-phases /workflow-implement-phases
/preflight /workflow-preflight

Version Updates

All plugins received patch version bumps:

  • ai-ado: 1.2.2 → 1.2.3
  • ai-accessibility: 1.2.0 → 1.2.1
  • ai-git: 1.1.1 → 1.1.2
  • ai-performance: 1.1.2 → 1.1.3
  • ai-plugins: 1.2.2 → 1.2.3
  • ai-security: 1.3.2 → 1.3.3
  • ai-workflow: 1.0.0 → 1.0.1

Full Changelog: v1.6.0...v1.6.1