freshcrate
Skin:/
Home > MCP Servers > cc-skills

cc-skills

Claude Code Skills Marketplace: plugins, skills for ADR-driven development, DevOps automation, ClickHouse management, semantic versioning, and productivity workflows

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

Claude Code Skills Marketplace: plugins, skills for ADR-driven development, DevOps automation, ClickHouse management, semantic versioning, and productivity workflows

README

cc-skills

Claude Code Skills Marketplace: Meta-skills and foundational tools for Claude Code.

Plugins License

Plugins

Plugin Description Category
plugin-dev Plugin development: skill architecture, validation, silent failure auditing, TodoWrite templates development
itp Implement-The-Plan workflow: ADR-driven 4-phase development with preflight, implementation, and release productivity
gh-tools GitHub workflow automation with intelligent GFM link validation for PRs development
link-tools Link validation: portability checks, broken link detection, path policy linting quality
devops-tools Doppler credentials, Firecrawl self-hosted, ML pipelines, Telegram bot, MLflow, session recovery devops
dotfiles-tools Chezmoi dotfile management via natural language workflows utilities
doc-tools Comprehensive documentation: ASCII diagrams, markdown standards, LaTeX build, Pandoc PDF documents
quality-tools Code clone detection, multi-agent E2E validation, performance profiling, schema testing quality
productivity-tools Slash command generation for Claude Code productivity
mql5 MQL5 development: indicator patterns, mql5.com article extraction, Python workspace trading
itp-hooks ITP workflow enforcement: ASCII art blocking, graph-easy reminders, Ruff linting enforcement
alpha-forge-worktree Git worktree management for alpha-forge with ADR-style naming and dynamic iTerm2 tab detection development
ru Autonomous AI orchestration with Ralph Wiggum technique - keeps AI in loop until task complete automation
iterm2-layout-config iTerm2 workspace layout configuration with TOML-based separation of private paths from publishable code development
statusline-tools Custom status line with git status, link validation (L), and path linting (P) indicators utilities
notion-api Notion API integration using notion-client Python SDK with preflight credential prompting productivity
asciinema-tools Terminal recording automation: asciinema capture, launchd daemon, Keychain PAT storage utilities
git-town-workflow Prescriptive git-town workflow enforcement for fork-based development devops
quant-research Quantitative research: SOTA range bar metrics, Sharpe ratios, ML prediction quality, WFO epochs trading

Installation

Prerequisites

Requirement Check Install
Claude Code claude --version Getting Started Guide

Quick Start (Recommended)

Run these commands in your terminal (not inside Claude Code):

# 1. Add the cc-skills marketplace
claude plugin marketplace add terrylica/cc-skills

# 2. Install all plugins (one-liner)
for p in itp plugin-dev gh-tools link-tools devops-tools dotfiles-tools doc-tools quality-tools productivity-tools mql5 itp-hooks alpha-forge-worktree ru iterm2-layout-config statusline-tools notion-api asciinema-tools git-town-workflow quant-research gmail-commander; do claude plugin install "$p@cc-skills"; done

# 3. Sync hooks to settings.json (requires cloning the repo)
git clone https://github.com/terrylica/cc-skills.git /tmp/cc-skills
/tmp/cc-skills/scripts/sync-hooks-to-settings.sh

# 4. Restart Claude Code to activate hooks
claude

Step-by-Step Installation

Step 1: Add the Marketplace

claude plugin marketplace add terrylica/cc-skills

This clones the marketplace to ~/.claude/plugins/marketplaces/cc-skills/.

Verify installation:

claude plugin marketplace list
# Should show: cc-skills - Source: GitHub (terrylica/cc-skills)

Step 2: Install Individual Plugins

# Install core plugins
claude plugin install itp@cc-skills
claude plugin install plugin-dev@cc-skills
claude plugin install gh-tools@cc-skills

# Install all remaining plugins
claude plugin install link-tools@cc-skills
claude plugin install devops-tools@cc-skills
claude plugin install dotfiles-tools@cc-skills
claude plugin install doc-tools@cc-skills
claude plugin install quality-tools@cc-skills
claude plugin install productivity-tools@cc-skills
claude plugin install mql5@cc-skills
claude plugin install itp-hooks@cc-skills
claude plugin install alpha-forge-worktree@cc-skills
claude plugin install ru@cc-skills
claude plugin install iterm2-layout-config@cc-skills
claude plugin install statusline-tools@cc-skills
claude plugin install notion-api@cc-skills
claude plugin install asciinema-tools@cc-skills
claude plugin install git-town-workflow@cc-skills
claude plugin install quant-research@cc-skills

Step 3: Sync Hooks

Hooks provide pre/post tool use enforcement and session events. They must be explicitly synced to ~/.claude/settings.json:

# Clone the repository (if not already cloned)
git clone https://github.com/terrylica/cc-skills.git ~/cc-skills-temp

# Run the hook sync script
~/cc-skills-temp/scripts/sync-hooks-to-settings.sh
# Output: ✓ Hooks synced: PreToolUse=7, PostToolUse=3, Stop=5

Step 4: Restart Claude Code

Hooks require a restart to take effect:

# Exit any running Claude Code sessions, then:
claude

Verify Installation

# Check marketplace is registered
claude plugin marketplace list

# Inside Claude Code, verify commands are available
# Type "/" and look for itp:go, plugin-dev:create, etc.

Updating the Marketplace

When new versions are released:

# Update the marketplace repository
cd ~/.claude/plugins/marketplaces/cc-skills
git pull

# Reinstall updated plugins (or specific ones)
claude plugin install itp@cc-skills

# Re-sync hooks
./scripts/sync-hooks-to-settings.sh  # From the repo directory

Troubleshooting

"Source path does not exist" Error

Cause: Marketplace repository is out of sync or has stale data.

Fix:

# Update the marketplace
cd ~/.claude/plugins/marketplaces/cc-skills
git pull

# Retry installation
claude plugin install plugin-name@cc-skills

Slash Commands Not Appearing

Cause: Plugins installed but commands not discovered.

Fix:

  1. Verify plugin is installed:

    # Check installed_plugins.json
    cat ~/.claude/plugins/installed_plugins.json | grep "cc-skills"
  2. Restart Claude Code (fresh session required)

  3. If still not working, clear cache and reinstall:

    rm -rf ~/.claude/plugins/cache/cc-skills
    claude plugin install plugin-name@cc-skills

Hooks Not Working

Cause: Hooks not synced to settings.json.

Fix:

# Sync hooks
cd /path/to/cc-skills
./scripts/sync-hooks-to-settings.sh

# Restart Claude Code

Verify hooks are registered:

cat ~/.claude/settings.json | jq '.hooks | keys'
# Should show: ["PreToolUse", "PostToolUse", "Stop"]

"Plugin not found" After Adding Marketplace

Cause: Known Claude Code issue with SSH clone failures.

Fix:

# Remove and re-add with explicit clone
claude plugin marketplace remove cc-skills
rm -rf ~/.claude/plugins/marketplaces/cc-skills

# Clone manually via HTTPS
git clone https://github.com/terrylica/cc-skills.git ~/.claude/plugins/marketplaces/cc-skills

# Re-add to known_marketplaces.json
# Add this entry to ~/.claude/plugins/known_marketplaces.json:
# "cc-skills": {
#   "source": {"source": "github", "repo": "terrylica/cc-skills"},
#   "installLocation": "$HOME/.claude/plugins/marketplaces/cc-skills",
#   "lastUpdated": "2026-01-13T00:00:00.000Z"
# }

Version Mismatch

Cause: Cache has old plugin version.

Fix:

# Check current cached version
ls ~/.claude/plugins/cache/cc-skills/itp/

# Clear specific plugin cache
rm -rf ~/.claude/plugins/cache/cc-skills/itp

# Reinstall
claude plugin install itp@cc-skills

Architecture

Directory Structure

~/.claude/plugins/
├── known_marketplaces.json      # Registered marketplaces
├── installed_plugins.json       # Installed plugins with versions
├── marketplaces/
│   └── cc-skills/               # Cloned marketplace repository
│       ├── .claude-plugin/
│       │   └── marketplace.json # Plugin registry (SSoT)
│       └── plugins/
│           ├── itp/
│           ├── plugin-dev/
│           └── ...
└── cache/
    └── cc-skills/               # Cached plugin copies
        ├── itp/
        │   └── <version>/       # Version-specific cache
        └── ...

Key Files

File Purpose
~/.claude/plugins/known_marketplaces.json Marketplace registry with source and install locations
~/.claude/plugins/installed_plugins.json Installed plugins with versions and paths
~/.claude/settings.json User settings including hooks configuration
.claude-plugin/marketplace.json Plugin registry for this marketplace (SSoT)

Marketplace Configuration

The known_marketplaces.json entry for cc-skills:

{
  "cc-skills": {
    "source": {
      "source": "github",
      "repo": "terrylica/cc-skills"
    },
    "installLocation": "$HOME/.claude/plugins/marketplaces/cc-skills",
    "lastUpdated": "<timestamp>"
  }
}

For Plugin Developers

Critical Schema Requirements

Based on compatibility with Claude Code's plugin loader:

1. Source Paths (marketplace.json)

DO NOT use trailing slashes in source paths:

// CORRECT
"source": "./plugins/itp"

// WRONG - causes "Source path does not exist" error
"source": "./plugins/itp/"

2. Author Field (plugin.json)

The author field must be an object, not a string:

// CORRECT
"author": {
  "name": "Your Name",
  "url": "https://github.com/username"
}

// WRONG - causes validation error
"author": "Your Name"

3. No Custom Fields (plugin.json)

Only standard fields are allowed. These cause validation errors:

// WRONG - unrecognized keys
"commands_dir": "commands",
"references_dir": "references",
"scripts_dir": "scripts"

Valid plugin.json Example

{
  "name": "my-plugin",
  "version": "<version>",
  "description": "Plugin description (min 10 chars)",
  "keywords": ["keyword1", "keyword2"],
  "author": {
    "name": "Your Name",
    "url": "https://github.com/username"
  }
}

Valid marketplace.json Entry

{
  "name": "my-plugin",
  "description": "Plugin description",
  "version": "<version>",
  "source": "./plugins/my-plugin",
  "category": "development",
  "author": {
    "name": "Your Name",
    "url": "https://github.com/username"
  },
  "keywords": ["keyword1", "keyword2"],
  "strict": false
}

Testing Your Plugin

# Validate marketplace structure
bun scripts/validate-plugins.mjs

# Check for schema errors
bun scripts/validate-plugins.mjs --fix

Terminology

Understanding the architectural hierarchy:

Term Definition Location Example
Plugin Marketplace-installable container with metadata, commands, and optional bundled skills ~/.claude/plugins/ itp, gh-tools
Skill Executable agent with SKILL.md frontmatter; can be standalone or bundled within a plugin ~/.claude/skills/ graph-easy, pypi-doppler
Command Slash command (/plugin:command) defined in .md file within plugin's commands/ directory Plugin's commands/ /itp:setup
Reference Supporting documentation in references/ directory; not directly executable references/ error-handling.md

Hierarchy:

Plugin (Container)
├── commands/           → Slash commands (/plugin:command)
├── skills/             → Bundled skills (copied to ~/.claude/skills/ on install)
│   └── skill-name/
│       ├── SKILL.md    → Skill definition (frontmatter + instructions)
│       ├── scripts/    → Executable helpers
│       └── references/ → Supporting docs
├── hooks/              → Hook definitions (hooks.json)
├── scripts/            → Plugin-level utilities
└── references/         → Plugin-level documentation

Key distinctions:

  • install → Acquire packages/tools via package manager (brew install, npm install)
  • setup → Verify environment post-installation (/itp:setup checks dependencies)
  • init → Create initial directory structure (one-time scaffolding)
  • configure → Adjust settings in config files (iterative customization)

Plugin Dependencies

Some plugins use skills from other plugins. Install dependencies first for full functionality.

Plugin Depends On Skills Used
plugin-dev itp implement-plan-preflight, code-hardcode-audit
doc-tools itp graph-easy, adr-graph-easy-architect
itp doc-tools ascii-diagram-validator

Note: doc-tools and itp have a circular dependency (both provide diagram tools). Install both for full functionality.

Run bun scripts/validate-plugins.mjs --deps to see the full dependency graph.

Slash Command Naming Convention

Marketplace plugin commands display with the plugin:command format:

Display Format Meaning
/itp:go Plugin itp, command go
/itp:setup Plugin itp, command setup

Why the colon format?

  • Display: Claude Code always shows the full plugin:command namespace in autocomplete and command lists
  • Invocation: You may type /go, /setup, or /hooks directly if no naming conflicts exist with other installed plugins
  • Clarity: The namespace identifies which plugin provides each command

Important edge case: When the command name equals the plugin name (e.g., /foo:foo), you must use the full format. Typing /foo alone is interpreted as the plugin prefix, not the command.

Repository Structure

cc-skills/
├── .claude-plugin/
│   ├── plugin.json          # Marketplace metadata
│   └── marketplace.json     # Plugin registry (23 plugins) - SSoT
├── plugins/
│   ├── itp/                       # ADR-driven development workflow (11 bundled skills)
│   ├── plugin-dev/                # Plugin development + skill architecture
│   ├── gh-tools/                  # GitHub workflow automation
│   ├── link-tools/                # Comprehensive link validation
│   ├── devops-tools/              # Doppler, secrets, MLflow, Telegram, recovery
│   ├── dotfiles-tools/            # Chezmoi dotfile management
│   ├── doc-tools/                 # ASCII diagrams, standards, LaTeX, Pandoc PDF
│   ├── quality-tools/             # Code clones, E2E validation, profiling, schema
│   ├── productivity-tools/        # Slash command generation
│   ├── mql5/                      # MQL5 development (indicators + mql5.com)
│   ├── itp-hooks/                 # ITP workflow enforcement hooks
│   ├── alpha-forge-worktree/      # Git worktree management
│   ├── ru/                        # Autonomous loop mode (Ralph Universe)
│   ├── iterm2-layout-config/      # iTerm2 workspace layout configuration
│   ├── statusline-tools/          # Custom status line with indicators
│   ├── notion-api/                # Notion API integration
│   ├── asciinema-tools/           # Terminal recording automation
│   ├── git-town-workflow/         # Prescriptive git-town workflow
│   └── quant-research/            # Quantitative research metrics
├── scripts/
│   ├── sync-hooks-to-settings.sh  # Hook synchronization
│   ├── validate-plugins.mjs       # Plugin validation
│   └── marketplace.schema.json    # JSON Schema for marketplace.json
├── .mise/tasks/                   # Release automation tasks
│   ├── release:full               # Complete 4-phase release
│   ├── release:sync               # Sync hooks and marketplace
│   └── ...
├── plugin.json                    # Root plugin config
├── package.json                   # Node.js + semantic-release
└── README.md

Release Workflow (for maintainers)

This marketplace uses semantic-release with mise task automation:

# Check release status
mise run release:status

# Full release workflow (preflight → version → sync → verify)
mise run release:full

# Dry run (no changes)
mise run release:dry

# Manual hook sync only
mise run release:hooks

# Sync marketplace to ~/.claude after release
mise run release:sync

Release Phases

Phase Task Description
1 release:preflight Validate prerequisites, check GitHub auth, verify plugins
2 release:version Run semantic-release (version bump + changelog)
3 release:sync Update marketplace repo, sync hooks to settings.json
4 release:verify Verify git tag, GitHub release, plugin cache

Available Plugins

itp

Implement-The-Plan workflow: ADR-driven 4-phase development.

Execute approved plans from Claude Code's Plan Mode through a structured workflow:

  • Preflight: ADR + Design Spec creation with graph-easy diagrams
  • Phase 1: Implementation with engineering standards
  • Phase 2: Format & Push to GitHub
  • Phase 3: Release via the repo's mise release pipeline, optionally Publish (PyPI)

Commands: /itp:go, /itp:setup, /itp:hooks (release runs via /mise:run-full-release)

Bundled Skills: adr-code-traceability, adr-graph-easy-architect, bootstrap-monorepo, code-hardcode-audit, graph-easy, impl-standards, implement-plan-preflight, mise-configuration, mise-tasks, pypi-doppler

plugin-dev

Plugin and skill development: structure validation, silent failure auditing, skill architecture meta-skill.

  • skill-architecture - Meta-skill for creating skills (YAML frontmatter, TodoWrite templates)
  • plugin-validator - Validate plugin structure, manifests, and detect silent script failures

Commands: /plugin-dev:create

ru (Ralph Universe)

Autonomous AI orchestration with Ralph Wiggum technique.

Features:

  • RSSI (Recursively Self-Improving Super Intelligence) loop mode
  • Multi-signal task completion detection
  • Validation exhaustion scoring
  • Plan archive preservation
  • Runtime limit configuration

Commands: /ru:start, /ru:stop, /ru:status, /ru:settings, /ru:hooks

Additional setup required: See plugins/ru/README.md

gh-tools

GitHub workflow automation with intelligent GFM link validation.

  • Detects broken repository-relative links
  • Auto-fixes common link patterns
  • Integrates with gh CLI workflows

link-tools

Link validation: portability checks, broken link detection, path policy linting.

  • link-validator - Validates relative path usage for cross-installation compatibility
  • link-validation - Broken link detection with path policy linting (on-demand)

devops-tools

Doppler credentials, Firecrawl self-hosted, ML pipelines, MLflow queries, notifications, and session recovery.

17 bundled skills: clickhouse-cloud-management, clickhouse-pydantic-config, claude-code-proxy-patterns, disk-hygiene, distributed-job-safety, doppler-workflows, doppler-secret-validation, dual-channel-watchexec, firecrawl-research-patterns, ml-data-pipeline-architecture, ml-failfast-validation, mlflow-python, project-directory-migration, pueue-job-orchestration, python-logging-best-practices, session-chronicle, session-recovery

doc-tools

Comprehensive documentation: ASCII diagrams, markdown standards, LaTeX build, Pandoc PDF generation.

Nine bundled skills: ascii-diagram-validator, documentation-standards, glossary-management, latex-build, latex-setup, latex-tables, pandoc-pdf-generation, plotext-financial-chart, terminal-print

quality-tools

Code quality and validation tools: clone detection, E2E validation, profiling, schema testing.

Six bundled skills: clickhouse-architect, code-clone-assistant, multi-agent-e2e-validation, multi-agent-performance-profiling, schema-e2e-validation, symmetric-dogfooding

itp-hooks

ITP workflow enforcement via PreToolUse and PostToolUse hooks.

  • Hard block on manual ASCII art
  • Ruff Python linting reminders
  • Graph-easy skill reminders
  • ADR/Design Spec sync reminders

statusline-tools

Custom Claude Code status line with git status indicators.

  • Git status indicators (modified, deleted, staged, untracked)
  • Remote tracking (ahead/behind commits)

Commands: /statusline-tools:setup

Other Plugins

See individual plugin READMEs for detailed documentation:

Known Issues

Claude Code Plugin Ecosystem Issues

Issue Description Workaround
#14929 Commands from directory-based local marketplaces not discovered Use GitHub-based marketplace source
SSH clone failures Silent failure when adding marketplace via SSH Use HTTPS clone manually

This Marketplace

Issue Status Notes
Circular dependency: doc-tools ↔ itp Known Install both for full functionality

Contributing

  1. Fork the repository
  2. Create a plugin in plugins/your-plugin/
  3. Add entry to .claude-plugin/marketplace.json
  4. Ensure plugin.json follows the schema (see For Plugin Developers)
  5. Run bun scripts/validate-plugins.mjs
  6. Submit a pull request

License

MIT

Release History

VersionChangesUrgencyDate
v21.87.0# [21.87.0](https://github.com/terrylica/cc-skills/compare/v21.86.0...v21.87.0) (2026-06-05) ### Bug Fixes * **release:** parse YAML via uv python 3.14 in doctor + 2 self-tests ([5e67cdb](https://github.com/terrylica/cc-skills/commit/5e67cdbda9fc06ec5a7467ddc47cefd99fde98d1)) ### Features * **floating-clock:** add Antlion mic-mute banner overlay ([839d6fd](https://github.com/terrylica/cc-skills/commit/839d6fdb375130b58ecd717bc6a42e28637439a7)) * **gmail-commander:** retrieve attachments + High6/5/2026
v21.86.0# [21.86.0](https://github.com/terrylica/cc-skills/compare/v21.85.0...v21.86.0) (2026-05-30) ### Bug Fixes * **html-showcase:** restore section flow vertical rhythm ([3faa880](https://github.com/terrylica/cc-skills/commit/3faa880fa2ef457946f2b1c2a9b6050b566d7a28)) ### Features * **html-showcase:** within-section Prev/Next nav in the auto-nav rail ([d5a7eb2](https://github.com/terrylica/cc-skills/commit/d5a7eb2a25b0d32495cf721c926b32ec8a91af32)) High5/30/2026
v21.82.0# [21.82.0](https://github.com/terrylica/cc-skills/compare/v21.81.0...v21.82.0) (2026-05-24) ### Bug Fixes * **gmail-commander:** build full References chain for deep-thread replies ([666ff0a](https://github.com/terrylica/cc-skills/commit/666ff0a79eeec8bc92b3350d3104462e618be55a)) ### Features * **gmail-commander:** --attach / --body-file flags + proxy auto-bypass + better errors ([7cc01be](https://github.com/terrylica/cc-skills/commit/7cc01be53d2cbcbbf29f8ba1274b992cb22826b6)) * **html-shHigh5/24/2026
v21.6.0# [21.6.0](https://github.com/terrylica/cc-skills/compare/v21.5.1...v21.6.0) (2026-05-19) ### Bug Fixes * **devops-tools/pushover-verbatim-notify:** add self-evolution sandwich ([1a45a59](https://github.com/terrylica/cc-skills/commit/1a45a59b01ac920d3113851b1ae88dadb8272cb1)) * **rust-tools/hooks:** use additionalContext instead of decision:block for SOTA reminder ([e248aa5](https://github.com/terrylica/cc-skills/commit/e248aa5d72a6f9e7ed88a9f529644e903837818b)), closes [#24788](https://githuHigh5/19/2026
v21.5.1## [21.5.1](https://github.com/terrylica/cc-skills/compare/v21.5.0...v21.5.1) (2026-05-12) ### Bug Fixes * **statusline:** bypass parent HTTPS_PROXY for outbound probes (antifragile) ([6f5f0cf](https://github.com/terrylica/cc-skills/commit/6f5f0cf7446b1e8a1e890fab9643762926bde5fa)) High5/12/2026
v21.1.0# [21.1.0](https://github.com/terrylica/cc-skills/compare/v21.0.0...v21.1.0) (2026-05-08) ### Features * **release:** bundle sanitized session JSONLs as a private-repo release asset ([ae8ed09](https://github.com/terrylica/cc-skills/commit/ae8ed092907c28e61cc9f413f9c7965bb3e78097)) High5/8/2026
v17.6.1## [17.6.1](https://github.com/terrylica/cc-skills/compare/v17.6.0...v17.6.1) (2026-05-02) High5/2/2026
v16.5.0# [16.5.0](https://github.com/terrylica/cc-skills/compare/v16.4.1...v16.5.0) (2026-04-27) ### Bug Fixes * **autonomous-loop:** add Self-Evolving sandwich to setup skill ([bfe2891](https://github.com/terrylica/cc-skills/commit/bfe2891d28eb72fc2379b496a88e54504bcbd8a5)) * **autonomous-loop:** coalesce JSONL output + cursor strict-greater for idempotency ([0c24abb](https://github.com/terrylica/cc-skills/commit/0c24abb9d956ee5a9573df16ce350640bc6b7903)) * **autonomous-loop:** disable trap before High4/27/2026
v16.0.0# [16.0.0](https://github.com/terrylica/cc-skills/compare/v15.0.0...v16.0.0) (2026-04-22) * fix(autonomous-loop)!: waker-tier model — never use ScheduleWakeup as pacing ([1cf0915](https://github.com/terrylica/cc-skills/commit/1cf0915ffcb21420e89d346b836b9318d9dc7fa9)) ### Features * **macro-keyboard:** add plugin for 3-key USB-C/Bluetooth macro pad on macOS ([8ef6899](https://github.com/terrylica/cc-skills/commit/8ef6899e756ebc5ee80155b7809111e84433bb26)) ### BREAKING CHANGES * the `NothHigh4/22/2026
v14.0.0# [14.0.0](https://github.com/terrylica/cc-skills/compare/v13.0.0...v14.0.0) (2026-04-21) * feat(itp)!: remove release and semantic-release skills ([ccb91f5](https://github.com/terrylica/cc-skills/commit/ccb91f58d2a6b0dc219e16d181734d91811f04ec)) ### Bug Fixes * **release:** drop generateNotesCmd pointing at deleted script ([bac5421](https://github.com/terrylica/cc-skills/commit/bac54213f343b62e86e9a707437d1ce366d833be)) ### Features * **chronicle-share:** Phase 1 — bundle.sh + manifest High4/21/2026
v13.0.0# [13.0.0](https://github.com/terrylica/cc-skills/compare/v12.52.0...v13.0.0) (2026-04-20) * feat(autonomous-loop)!: remove ru plugin superseded by autonomous-loop ([f076802](https://github.com/terrylica/cc-skills/commit/f076802cd553c8ae7c92ee5b002480d76a970cdb)) ### BREAKING CHANGES * /ru:* commands removed. Migrate to /autonomous-loop:* per docs/adr/2026-04-20-remove-ru-plugin.md migration table. Advanced features (forbid/encourage/wizard) have no direct replacement and require manual conHigh4/20/2026
v12.52.0# [12.52.0](https://github.com/terrylica/cc-skills/compare/v12.51.0...v12.52.0) (2026-04-20) ### Features * **autonomous-loop:** add plugin for self-revising LOOP_CONTRACT.md pattern ([7194e28](https://github.com/terrylica/cc-skills/commit/7194e2831c108252aa0c9829577afd6e718da01c)) * **plugins:** add crucible - self-evolving research methodology plugin ([deb9aab](https://github.com/terrylica/cc-skills/commit/deb9aab38df17ae091ee137a51bcfce821b9cc53)) --- ## Documentation Changes ## ArcHigh4/20/2026
v12.51.0# [12.51.0](https://github.com/terrylica/cc-skills/compare/v12.50.1...v12.51.0) (2026-04-17) ### Features * **tlg:** auto-split long messages + --reply-to flag ([fe63231](https://github.com/terrylica/cc-skills/commit/fe6323161f5b67b5869fdd52452ebd88fb8ddb3e)) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>tlg</strong> (2 changes)</summary> - [draft-message](https://github.com/terrylica/cc-skills/blob/main/plugins/tlg/skills/draft-message/SHigh4/17/2026
v12.50.1## [12.50.1](https://github.com/terrylica/cc-skills/compare/v12.50.0...v12.50.1) (2026-04-17) --- ## Documentation Changes ## Plugin Documentation ### Plugin READMEs - [quant-research](https://github.com/terrylica/cc-skills/blob/main/plugins/quant-research/README.md) - updated (+14/-10) ## Repository Documentation ### Root Documentation - [[12.48.0](https://github.com/terrylica/cc-skills/compare/v12.47.1...v12.48.0) (2026-04-15)](https://github.com/terrylica/cc-skills/blob/main/CHANGHigh4/17/2026
v12.50.0# [12.50.0](https://github.com/terrylica/cc-skills/compare/v12.49.1...v12.50.0) (2026-04-17) ### Features * **itp-hooks:** allow maturin pyproject.toml co-located with Cargo.toml ([a052b6c](https://github.com/terrylica/cc-skills/commit/a052b6c57ab3082181f131efa5d59b80e39356fb)) * **tlg:** migrate Bruntwork to supergroup with topics ([945c009](https://github.com/terrylica/cc-skills/commit/945c009bdb63bb586d20b0e5acd1f01a62a3f8c1)) --- ## Documentation Changes ## Plugin Documentation ##High4/17/2026
v12.49.1## [12.49.1](https://github.com/terrylica/cc-skills/compare/v12.49.0...v12.49.1) (2026-04-16) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>tlg</strong> (1 change)</summary> - [send-message](https://github.com/terrylica/cc-skills/blob/main/plugins/tlg/skills/send-message/SKILL.md) - updated (+12/-4) </details> ## Repository Documentation ### Root Documentation - [[12.48.0](https://github.com/terrylica/cc-skills/compare/v12.47.1...v12.48High4/16/2026
v12.49.0# [12.49.0](https://github.com/terrylica/cc-skills/compare/v12.48.0...v12.49.0) (2026-04-15) ### Features * **tlg:** add draft command + draft-message skill (Saved Messages pattern) ([77a10a4](https://github.com/terrylica/cc-skills/commit/77a10a47a08cf786aec91f4bea778d2b0c057246)), closes [tdesktop#29111](https://github.com/tdesktop/issues/29111) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>tlg</strong> (2 changes)</summary> - [draft-mesHigh4/15/2026
v12.48.0# [12.48.0](https://github.com/terrylica/cc-skills/compare/v12.47.1...v12.48.0) (2026-04-15) ### Features * **session-chronicle:** add field-aware sanitizer + mandatory pre-S3 step ([d5c3d4d](https://github.com/terrylica/cc-skills/commit/d5c3d4d15c6e13751f8a0eb8233d99f0dd35dd61)) * **tlg:** add --html flag to edit command + document separator length rules ([04d174e](https://github.com/terrylica/cc-skills/commit/04d174ef18be70abcc14a574453222edbb01d232)) --- ## Documentation Changes ## High4/15/2026
v12.47.1## [12.47.1](https://github.com/terrylica/cc-skills/compare/v12.47.0...v12.47.1) (2026-04-15) --- ## Documentation Changes ## Architecture Decisions ### ADRs | Status | ADR | Change | |--------|-----|--------| | partially | [PreToolUse and PostToolUse Hooks for Implementation Standards](https://github.com/terrylica/cc-skills/blob/main/docs/adr/2025-12-06-pretooluse-posttooluse-hooks.md) | updated (+3/-1) | ### Design Specs - [PreToolUse and PostToolUse Hooks](https://github.com/terrylHigh4/15/2026
v12.47.0# [12.47.0](https://github.com/terrylica/cc-skills/compare/v12.46.0...v12.47.0) (2026-04-14) ### Features * **infra:** migrate to Tailscale-only, add VNC tunnel forward ([7689d53](https://github.com/terrylica/cc-skills/commit/7689d5387d05464b9427cce0e930da90d94bb43f)), closes [#tools](https://github.com/terrylica/cc-skills/issues/tools) * **tlg:** add --html flag to tg-cli send command ([6b5eff8](https://github.com/terrylica/cc-skills/commit/6b5eff8da438969e9e81578827e1c28bf6299175)) ---High4/14/2026
v12.46.0# [12.46.0](https://github.com/terrylica/cc-skills/compare/v12.45.1...v12.46.0) (2026-04-13) ### Features * **statusline-tools:** show both 7d and 5h quota windows with color demarcation ([8fee458](https://github.com/terrylica/cc-skills/commit/8fee45833cdcea175f96d4f0e42c7a5086606e36)) * **tlg:** add session preflight + check-auth and auth subcommands ([cb80661](https://github.com/terrylica/cc-skills/commit/cb80661ba0238fc82614e067d5856832eccd3c80)) --- ## Documentation Changes ## RepoHigh4/13/2026
v12.45.1## [12.45.1](https://github.com/terrylica/cc-skills/compare/v12.45.0...v12.45.1) (2026-04-11) ### Bug Fixes * **itp-hooks:** exclude flag arguments from pth contamination guard regex ([46144fe](https://github.com/terrylica/cc-skills/commit/46144fed2f24ad104b32d7357c7ea909859df57a)) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>tlg</strong> (3 changes)</summary> - [send-media](https://github.com/terrylica/cc-skills/blob/main/plugins/tlg/skMedium4/11/2026
v12.45.0# [12.45.0](https://github.com/terrylica/cc-skills/compare/v12.44.0...v12.45.0) (2026-04-11) ### Bug Fixes * **claude-tts-companion:** multi-monitor subtitle positioning ([2660d18](https://github.com/terrylica/cc-skills/commit/2660d180a08a32d6432ad69d44b2e655e7c9a123)), closes [terrylica/claude-config#76](https://github.com/terrylica/claude-config/issues/76) ### Features * **statusline-tools:** append raw statusline data to JSONL for analytics ([19dd068](https://github.com/terrylica/cc-skiHigh4/11/2026
v12.44.0# [12.44.0](https://github.com/terrylica/cc-skills/compare/v12.43.3...v12.44.0) (2026-04-09) ### Features * **itp-hooks:** register .pth contamination guard + remove memory reference ([01fc6d8](https://github.com/terrylica/cc-skills/commit/01fc6d88f9d4dd1f9d9efee297ad2f4f281f14c8)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.44.0](https://github.com/terrylica/cc-skills/compare/v12.43.3...v12.44.0) (2026-04-09)](https://github.com/terrylica/cMedium4/9/2026
v12.43.3## [12.43.3](https://github.com/terrylica/cc-skills/compare/v12.43.2...v12.43.3) (2026-04-09) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>statusline-tools</strong> (4 changes)</summary> - [hooks](https://github.com/terrylica/cc-skills/blob/main/plugins/statusline-tools/skills/hooks/SKILL.md) - updated (+12/-7) - [ignore](https://github.com/terrylica/cc-skills/blob/main/plugins/statusline-tools/skills/ignore/SKILL.md) - updated (+2/-1) - [sMedium4/9/2026
v12.43.2## [12.43.2](https://github.com/terrylica/cc-skills/compare/v12.43.1...v12.43.2) (2026-04-09) ### Bug Fixes * **itp-hooks:** UV enforcement guard false positive on chained git commit ([138aeda](https://github.com/terrylica/cc-skills/commit/138aedaad5f68fbcdbde09335c256913d11c090b)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.43.0](https://github.com/terrylica/cc-skills/compare/v12.42.4...v12.43.0) (2026-04-08)](https://github.com/terrylica/cMedium4/9/2026
v12.43.1## [12.43.1](https://github.com/terrylica/cc-skills/compare/v12.43.0...v12.43.1) (2026-04-08) ### Bug Fixes * **itp-hooks:** use plain stdout for PostToolUse memory efficiency hook ([4542a2a](https://github.com/terrylica/cc-skills/commit/4542a2a245725df1dd9f0999771d33028cb8c9a4)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.43.0](https://github.com/terrylica/cc-skills/compare/v12.42.4...v12.43.0) (2026-04-08)](https://github.com/terrylica/cc-High4/8/2026
v12.43.0# [12.43.0](https://github.com/terrylica/cc-skills/compare/v12.42.4...v12.43.0) (2026-04-08) ### Features * **itp-hooks:** memory efficiency reminder hook (once per session) ([139b413](https://github.com/terrylica/cc-skills/commit/139b4138948138b78de193d83bd9a1744cf033d5)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.43.0](https://github.com/terrylica/cc-skills/compare/v12.42.4...v12.43.0) (2026-04-08)](https://github.com/terrylica/cc-skills/Medium4/8/2026
v12.42.4## [12.42.4](https://github.com/terrylica/cc-skills/compare/v12.42.3...v12.42.4) (2026-04-08) ### Bug Fixes * **itp-hooks:** skip stdin-inlet guard for SSH remote commands ([cf67586](https://github.com/terrylica/cc-skills/commit/cf6758625bdb59633943bf46bb868dcbd14e800f)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.42.0](https://github.com/terrylica/cc-skills/compare/v12.41.0...v12.42.0) (2026-04-07)](https://github.com/terrylica/cc-skills/blMedium4/8/2026
v12.42.3## [12.42.3](https://github.com/terrylica/cc-skills/compare/v12.42.2...v12.42.3) (2026-04-08) ### Bug Fixes * **itp-hooks:** skip local guards for SSH remote commands ([66c6356](https://github.com/terrylica/cc-skills/commit/66c6356bd3d77c843eb91b16f54d842e6988ec66)) * **quick-260407-odg:** make fallback hide() calls cancellable via pendingLingerHide ([994ed8a](https://github.com/terrylica/cc-skills/commit/994ed8adfedea38c5c66c5d3b1231c80ab00ff6f)) * **quick-260407-odg:** re-assert panel frontMedium4/8/2026
v12.42.2## [12.42.2](https://github.com/terrylica/cc-skills/compare/v12.42.1...v12.42.2) (2026-04-07) ### Bug Fixes * **release:** preserve old plugin cache versions during sync ([e510889](https://github.com/terrylica/cc-skills/commit/e510889ce3fa25069c30bfef9adcc54879b4c682)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.41.0](https://github.com/terrylica/cc-skills/compare/v12.40.0...v12.41.0) (2026-04-06)](https://github.com/terrylica/cc-skills/blobMedium4/7/2026
v12.42.1## [12.42.1](https://github.com/terrylica/cc-skills/compare/v12.42.0...v12.42.1) (2026-04-07) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.41.0](https://github.com/terrylica/cc-skills/compare/v12.40.0...v12.41.0) (2026-04-06)](https://github.com/terrylica/cc-skills/blob/main/CHANGELOG.md) - updated (+16) ## Other Documentation ### Other - [Debug Session: iterm2-stop-notification](https://github.com/terrylica/cc-skills/blob/main/.planning/debuMedium4/7/2026
v12.42.0# [12.42.0](https://github.com/terrylica/cc-skills/compare/v12.41.0...v12.42.0) (2026-04-07) ### Bug Fixes * **claude-tts-companion:** self-healing WAV path fallback + collapsed telemetry ([285416a](https://github.com/terrylica/cc-skills/commit/285416ab96513dd9e4783f204d0f63597ed206ae)), closes [#if](https://github.com/terrylica/cc-skills/issues/if) ### Features * **claude-tts-companion:** expose afplay WAV telemetry on /health + log SettingsStore dir failures ([0489c04](https://github.comMedium4/7/2026
v12.41.0# [12.41.0](https://github.com/terrylica/cc-skills/compare/v12.40.0...v12.41.0) (2026-04-06) ### Bug Fixes * **statusline,ssh-tunnel:** restore ccmax-monitor account display ([6afbedc](https://github.com/terrylica/cc-skills/commit/6afbedccc912e7d099dd8341948b5c7c123be4fa)) ### Features * **quality-tools:** canonical anchoring + proposer prompt for term_similarity ([3ca953b](https://github.com/terrylica/cc-skills/commit/3ca953b8667b5aa553e40d3977fddde284f675bf)) --- ## Documentation CMedium4/6/2026
v12.40.0# [12.40.0](https://github.com/terrylica/cc-skills/compare/v12.39.1...v12.40.0) (2026-04-06) ### Bug Fixes * **quality-tools:** eliminate mega-clusters in term_similarity ([c0c686f](https://github.com/terrylica/cc-skills/commit/c0c686fb64ba5383e82d219dc0f74559e92a3a5b)) ### Features * **quality-tools:** v2 term_similarity — raw scores, WordNet, no thresholds ([a67cb28](https://github.com/terrylica/cc-skills/commit/a67cb2817a5619d928e5afe3cc8be78f145b97b5)) --- ## Documentation ChangeMedium4/6/2026
v12.39.1## [12.39.1](https://github.com/terrylica/cc-skills/compare/v12.39.0...v12.39.1) (2026-04-06) ### Bug Fixes * **quality-tools:** fix cross-repo invocation of term_similarity skill ([883e316](https://github.com/terrylica/cc-skills/commit/883e316090f0eefce7ed3ceeffbfaaa4a1392a8e)) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>quality-tools</strong> (1 change)</summary> - [telemetry-terminology-similarity](https://github.com/terrylica/cc-skiMedium4/6/2026
v12.39.0# [12.39.0](https://github.com/terrylica/cc-skills/compare/v12.38.2...v12.39.0) (2026-04-06) ### Features * **devops-tools:** add lightweight logging pattern as preferred default ([a3d53f8](https://github.com/terrylica/cc-skills/commit/a3d53f8e0eb21f48f2ea98aeac0f2bbfaf8aee64)) * **quality-tools:** add telemetry-terminology-similarity skill ([1d05ecb](https://github.com/terrylica/cc-skills/commit/1d05ecb03ffe1879a5134d81cc6bf37cb330d251)) --- ## Documentation Changes ## Plugin DocumentMedium4/6/2026
v12.38.2## [12.38.2](https://github.com/terrylica/cc-skills/compare/v12.38.1...v12.38.2) (2026-04-05) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>devops-tools</strong> (1 change)</summary> - [python-logging-best-practices](https://github.com/terrylica/cc-skills/blob/main/plugins/devops-tools/skills/python-logging-best-practices/SKILL.md) - updated (+155/-65) </details> ### Skill References <details> <summary><strong>devops-tools/python-loggingMedium4/5/2026
v12.38.1## [12.38.1](https://github.com/terrylica/cc-skills/compare/v12.38.0...v12.38.1) (2026-04-04) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.38.0](https://github.com/terrylica/cc-skills/compare/v12.37.0...v12.38.0) (2026-04-04)](https://github.com/terrylica/cc-skills/blob/main/CHANGELOG.md) - updated (+2)Medium4/4/2026
v12.38.0# [12.38.0](https://github.com/terrylica/cc-skills/compare/v12.37.0...v12.38.0) (2026-04-04) ### Bug Fixes * **claude-tts-companion:** audit fixes for pipelined playback state machine ([72884aa](https://github.com/terrylica/cc-skills/commit/72884aa33bf675b5923ce117eace72c2e9ca3257)) ### Features * **claude-tts-companion,statusline:** Telegram Q&A handler + ccmax monitor ([497d87a](https://github.com/terrylica/cc-skills/commit/497d87a2918a71f09a6e6e848887c25ffa5d955f)) --- ## DocumentMedium4/4/2026
v12.37.0# [12.37.0](https://github.com/terrylica/cc-skills/compare/v12.36.1...v12.37.0) (2026-04-03) ### Features * **claude-tts-companion:** pipelined paragraph playback with RTF-driven prefetch ([7d0964b](https://github.com/terrylica/cc-skills/commit/7d0964b2999c67aeeb547500c69d9833f91d7669)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.37.0](https://github.com/terrylica/cc-skills/compare/v12.36.1...v12.37.0) (2026-04-03)](https://github.com/terrylMedium4/3/2026
v12.36.1## [12.36.1](https://github.com/terrylica/cc-skills/compare/v12.36.0...v12.36.1) (2026-04-03) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>gh-tools</strong> (1 change)</summary> - [issue-create](https://github.com/terrylica/cc-skills/blob/main/plugins/gh-tools/skills/issue-create/SKILL.md) - updated (+31/-2) </details> ## Repository Documentation ### Root Documentation - [[12.35.0](https://github.com/terrylica/cc-skills/compare/v12.34.Medium4/3/2026
v12.36.0# [12.36.0](https://github.com/terrylica/cc-skills/compare/v12.35.1...v12.36.0) (2026-04-03) ### Features * add ssh-tunnel-companion plugin scaffold ([9946279](https://github.com/terrylica/cc-skills/commit/9946279e15c155b01c697bb65e43a740f880897f)) * **statusline,gh-tools:** wiki URL detection + org fast-path in identity guard ([17caf23](https://github.com/terrylica/cc-skills/commit/17caf23a20fb9dc12ec6a6d319df0ba4affb28ad)), closes [#tools](https://github.com/terrylica/cc-skills/issues/toolsMedium4/3/2026
v12.35.1## [12.35.1](https://github.com/terrylica/cc-skills/compare/v12.35.0...v12.35.1) (2026-04-02) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.35.0](https://github.com/terrylica/cc-skills/compare/v12.34.0...v12.35.0) (2026-04-02)](https://github.com/terrylica/cc-skills/blob/main/CHANGELOG.md) - updated (+2)Medium4/2/2026
v12.35.0# [12.35.0](https://github.com/terrylica/cc-skills/compare/v12.34.0...v12.35.0) (2026-04-02) ### Bug Fixes * **tts:** kill previous tts_kokoro.sh instance on rapid re-invocation ([d4950a4](https://github.com/terrylica/cc-skills/commit/d4950a48d5965c3fc4d334c8bcec7853f381edaa)) * **tts:** pass speed setting to Kokoro synthesis engine ([390faf0](https://github.com/terrylica/cc-skills/commit/390faf0aa8220655b73b816b7ca6f8fe1c537fc8)) * **tts:** queue consecutive invocations instead of preemptingMedium4/2/2026
v12.34.0# [12.34.0](https://github.com/terrylica/cc-skills/compare/v12.33.0...v12.34.0) (2026-04-01) ### Bug Fixes * **calendar-event-manager:** replace date strings with programmatic construction ([da189b4](https://github.com/terrylica/cc-skills/commit/da189b4efdce9b3da6356a92095c434522237826)) * **pueue:** exclude SSH from auto-wrap and add duration gate to reminder ([1636604](https://github.com/terrylica/cc-skills/commit/1636604dab31ee1f5d605a8ad71b6c544333b060)) * **skills:** restrict disable-modMedium4/1/2026
v12.33.0# [12.33.0](https://github.com/terrylica/cc-skills/compare/v12.32.0...v12.33.0) (2026-04-01) ### Bug Fixes * **validation:** fix sandwich check SIGPIPE and add reminder to skill-architecture ([3fcc5dd](https://github.com/terrylica/cc-skills/commit/3fcc5dd52d82bd1ae0faab080b305c2b4eff0c73)) ### Features * **validation:** enforce self-evolution sandwich in validator and release preflight ([c49a67f](https://github.com/terrylica/cc-skills/commit/c49a67f44b78387439e43cf549cb027a723aec5b)) Medium4/1/2026
v12.32.0# [12.32.0](https://github.com/terrylica/cc-skills/compare/v12.31.1...v12.32.0) (2026-04-01) ### Bug Fixes * **skills:** move Post-Execution Reflection to bottom of 20 misplaced skills ([46de475](https://github.com/terrylica/cc-skills/commit/46de47562bfbd48e33ceb452f738bac5b1a776a0)) ### Features * **skills:** add Post-Execution Reflection to all 154 remaining skills ([7494ff3](https://github.com/terrylica/cc-skills/commit/7494ff3544a11f14b49e4b73e18f02ee2f2e6db4)) * **skills:** add Self-EMedium4/1/2026
v12.31.1## [12.31.1](https://github.com/terrylica/cc-skills/compare/v12.31.0...v12.31.1) (2026-04-01) --- ## Documentation Changes ## Plugin Documentation ### Skills <details> <summary><strong>mise</strong> (1 change)</summary> - [run-full-release](https://github.com/terrylica/cc-skills/blob/main/plugins/mise/skills/run-full-release/SKILL.md) - updated (+95/-26) </details> ### Skill References <details> <summary><strong>mise/run-full-release</strong> (3 files)</summary> - [Evolution Log](Medium4/1/2026
v12.31.0# [12.31.0](https://github.com/terrylica/cc-skills/compare/v12.30.1...v12.31.0) (2026-04-01) ### Bug Fixes * **skills:** relocate self-evolution for attention primacy/recency and fix tlg skill standards ([1326a30](https://github.com/terrylica/cc-skills/commit/1326a308f97879ddbdc2349052bc205cb701de06)) * **tts:** add paragraph breaks to multi-chunk subtitle pages ([8ffe076](https://github.com/terrylica/cc-skills/commit/8ffe076fe20a646bd3d9dee8a7e415d5cb07bbe0)) * **tts:** append trailing wordsMedium4/1/2026
v12.30.1## [12.30.1](https://github.com/terrylica/cc-skills/compare/v12.30.0...v12.30.1) (2026-04-01) ### Bug Fixes * **tts:** use SIGKILL instead of SIGTERM to stop afplay ([7eb74ae](https://github.com/terrylica/cc-skills/commit/7eb74ae457676c55ba1448fc43e5ef62338002c6)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.30.0](https://github.com/terrylica/cc-skills/compare/v12.29.3...v12.30.0) (2026-04-01)](https://github.com/terrylica/cc-skills/blob/mainMedium4/1/2026
v12.30.0# [12.30.0](https://github.com/terrylica/cc-skills/compare/v12.29.3...v12.30.0) (2026-04-01) ### Bug Fixes * **tts:** preserve numbered list prefixes in speech and unwrap terminal soft-wraps ([21966de](https://github.com/terrylica/cc-skills/commit/21966de5d175251c4c815dcb7503c3d648061b4e)) ### Features * **claude-tts-companion:** add Makefile for atomic build-deploy-restart ([0e22605](https://github.com/terrylica/cc-skills/commit/0e226054c56e52534c64b367c13fc53c4e4cfa03)) --- ## DocuMedium4/1/2026
v12.29.3## [12.29.3](https://github.com/terrylica/cc-skills/compare/v12.29.2...v12.29.3) (2026-03-31) ### Bug Fixes * **tts:** add killall afplay safety net to stop() for race condition ([be32ab2](https://github.com/terrylica/cc-skills/commit/be32ab2b43d0448ec93fdfc4910f1ede0d8c6e15)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.29.0](https://github.com/terrylica/cc-skills/compare/v12.28.3...v12.29.0) (2026-03-31)](https://github.com/terrylica/cc-skiMedium3/31/2026
v12.29.2## [12.29.2](https://github.com/terrylica/cc-skills/compare/v12.29.1...v12.29.2) (2026-03-31) ### Bug Fixes * **tts:** hide subtitle panel on stop playback ([fd959ea](https://github.com/terrylica/cc-skills/commit/fd959eac2fe74a7a4e1175cb9d9837ada03591a1)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.29.0](https://github.com/terrylica/cc-skills/compare/v12.28.3...v12.29.0) (2026-03-31)](https://github.com/terrylica/cc-skills/blob/main/CHANGELOMedium3/31/2026
v12.29.1## [12.29.1](https://github.com/terrylica/cc-skills/compare/v12.29.0...v12.29.1) (2026-03-31) ### Bug Fixes * **tts:** fix audio jitter via launchd ProcessType=Interactive scheduling ([815844e](https://github.com/terrylica/cc-skills/commit/815844e2892fb3b940898c4473221140664aa120)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.29.0](https://github.com/terrylica/cc-skills/compare/v12.28.3...v12.29.0) (2026-03-31)](https://github.com/terrylica/cMedium3/31/2026
v12.29.0# [12.29.0](https://github.com/terrylica/cc-skills/compare/v12.28.3...v12.29.0) (2026-03-31) ### Features * **tts:** add audio routing audit to detect virtual device jitter at startup ([9bd033c](https://github.com/terrylica/cc-skills/commit/9bd033c5d56c5bc45cecdd6735dfac99f85ec8b5)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.29.0](https://github.com/terrylica/cc-skills/compare/v12.28.3...v12.29.0) (2026-03-31)](https://github.com/terrylica/Medium3/31/2026
v12.28.3## [12.28.3](https://github.com/terrylica/cc-skills/compare/v12.28.2...v12.28.3) (2026-03-31) ### Bug Fixes * **tts:** increase HTTP handler timeout and improve tts_kokoro.sh reliability ([9b57f53](https://github.com/terrylica/cc-skills/commit/9b57f5302dbf4c30deeb381945534a0ec013e9d9)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.28.0](https://github.com/terrylica/cc-skills/compare/v12.27.1...v12.28.0) (2026-03-31)](https://github.com/terryliMedium3/31/2026
v12.28.2## [12.28.2](https://github.com/terrylica/cc-skills/compare/v12.28.1...v12.28.2) (2026-03-31) ### Bug Fixes * **claude-tts-companion:** eliminate audio jitter via posix_spawn backend ([c3525c2](https://github.com/terrylica/cc-skills/commit/c3525c2e392fbae14710b5de65bdf6f2a09f0e6d)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.28.0](https://github.com/terrylica/cc-skills/compare/v12.27.1...v12.28.0) (2026-03-31)](https://github.com/terrylica/cMedium3/31/2026
v12.28.1## [12.28.1](https://github.com/terrylica/cc-skills/compare/v12.28.0...v12.28.1) (2026-03-31) ### Bug Fixes * **tts:** eliminate audio jitter via posix_spawn afplay backend ([2be6067](https://github.com/terrylica/cc-skills/commit/2be6067267c4295a3a390b7a0ae5ffd522dfaf37)) --- ## Documentation Changes ## Repository Documentation ### Root Documentation - [[12.28.0](https://github.com/terrylica/cc-skills/compare/v12.27.1...v12.28.0) (2026-03-31)](https://github.com/terrylica/cc-skills/bMedium3/31/2026

Dependencies & License Audit

Loading dependencies...

Similar Packages

discord-opsAgency-grade Discord MCP server — multi-guild project routing, AI-native notifications, and DevOps workflows for Claude Code and other AI agentsv0.23.3
structured-prompt-skillâœī¸ Write effective AI prompts with this structured prompt engineering library and Claude Code skill, featuring 300+ curated examples for high-quality results.main@2026-06-07
Perplexity-Comet-MCPNo descriptionmain@2026-06-07
google-workspace-mcp-with-scriptNo descriptionmain@2026-06-07
building-websites-with-AI-tools🌐 Transform your ideas into real websites and apps using AI tools, guiding each step for a smooth development process from concept to launch.main@2026-06-07

More in MCP Servers

PlanExeCreate a plan from a description in minutes
agentroveYour own Claude Code UI, sandbox, in-browser VS Code, terminal, multi-provider support (Anthropic, OpenAI, GitHub Copilot, OpenRouter), custom skills, and MCP servers.
ProxmoxMCP-PlusEnhanced Proxmox MCP server with advanced virtualization management and full OpenAPI integration.
node9-proxyThe Execution Security Layer for the Agentic Era. Providing deterministic "Sudo" governance and audit logs for autonomous AI agents.