Skip to content

Releases: bluzername/claude-code-power-stack

v1.5.0 - Complete Workflow

26 Mar 16:07

Choose a tag to compare

v1.5.0 - The Complete Daily Workflow

The daily loop is now fully closed: /standup -> work -> /wrapup, with team mode woven in.

New

  • /wrapup - end-of-session command that summarizes work done, updates planning files, and offers to log key items for the team
  • Terminal demo SVG - the README now shows a rich terminal screenshot at the top: search, resume, and team mode in one image
  • ccs cheat restructured - all 28 commands organized into 5 clear sections separating slash commands (Claude) from CLI commands (terminal)

Fixed

  • Mermaid diagram updated - now shows the full workflow: standup, plan, work, Ghost, wrapup, team log, search, resume. Was 15 commits stale.
  • ccs cheat was missing /wrapup, /team-standup, /team-log - now complete

The Full Command Surface (v1.5.0)

6 slash commands (inside Claude Code):
/standup /wrapup /rename-session /plan /team-standup /team-log

15 ccs subcommands (terminal):
ccs <query> ccs here ccs go ccs ls ccs stats ccs doctor ccs cheat ccs update ccs ix ccs team ccs team standup ccs team log ccs team search ccs team sync ccs team init

5 scripts: setup.sh install.sh update.sh verify.sh uninstall.sh

Upgrade

ccs update

v1.4.0

26 Mar 11:08

Choose a tag to compare

What's new since v1.3.0

New

  • ccs team standup - morning team standup straight from the terminal (no Claude needed). Pulls git, shows team activity, highlights blockers, checks planning files, shows your recent sessions.
  • ccs doctor version check - compares your local version against the latest GitHub release. Shows "v1.4.0 (latest)" or warns with upgrade command.
  • ccs doctor command check - verifies all 4 slash commands are installed (was silently missing team commands).
  • Smart sync reminder - after ccs team log, shows "Tip: run ccs team sync" when there are unshared entries.

Fixed

  • install.sh command glob - was hardcoding 2 commands, silently skipping team-log.md and team-standup.md for new installs. Now uses commands/*.md glob.

Docs

  • Cheatsheet PDF completely updated - now has Individual Commands (14) and Team Commands (11) tables, updated decision tree with team workflow.
  • Doctor runs 9 checks (was 7).

Upgrade

ccs update

v1.3.0 - Team Mode

26 Mar 07:08

Choose a tag to compare

Team Mode

Small teams (2-8 people) can now share decisions, findings, and blockers through a git-tracked append-only log. No server needed.

New: ccs team commands

ccs team init                    # Initialize team mode in your project
ccs team log d "chose RS256"     # Log a decision (d/f/b/done/h shortcuts)
ccs team log b "CI fails on ARM" # Log a blocker
ccs team                         # Show recent team activity
ccs team search "auth"           # Search the team log
ccs team sync                    # Commit + push team log in one step

New: Slash commands

  • /team-standup - team standup from the shared log (pulls latest, shows activity, blockers, your status)
  • /team-log - log a decision/finding/blocker through Claude

How it works

  • .team/log.jsonl in your project directory, tracked by git
  • Append-only format = no merge conflicts
  • Auto-detects your name from git config user.name
  • Entry types: d(ecision), f(inding), b(locker), done, h(andoff)
  • Color-coded output grouped by team member

Also in this release

  • ccs team sync - replaces the 4-step git add / commit / push dance
  • Short aliases for log types (d, f, b, h)
  • Team Mode added to "What's in the Stack" table in README
  • Cleaned up development artifacts from repo
  • Bug fixes from v1.2.0

Upgrade

ccs update

v1.2.0

26 Mar 05:08

Choose a tag to compare

What's new since v1.1.0

New

  • ccs ls here - list sessions for the current project only (also: ccs ls here 30)
  • ccs update - update the entire Power Stack from anywhere (no more cd-ing to the repo)

Fixed

  • ccs crash on simple queries - ccs "auth" with no flags crashed with unbound variable error. Fixed.
  • Better zero-results handling - clean message instead of Python traceback
  • Auto-init missing index - ccs now auto-initializes if no search index exists
  • Cleaner previews - filters out skill trigger noise and plan boilerplate from session previews

Docs

  • All 4 doc surfaces (README, cheatsheet PDF, workflow guide, CLAUDE.md snippet) now list every ccs subcommand consistently
  • Cheatsheet PDF regenerated with complete command table

Upgrade

ccs update

v1.1.0

26 Mar 01:07

Choose a tag to compare

What's new since v1.0.0

New commands

  • ccs here <query> - search scoped to the current project directory
  • ccs cheat - color-coded quick reference card right in your terminal
  • ccs --version - version reporting

Improved commands

  • ccs ls - now shows numbered results with first-message previews; ccs go 1 works after both search and ls
  • ccs stats - conversation stats dashboard (sessions, messages, per-project breakdown)
  • ccs doctor - full health check (Ghost, Ollama, MCP, index, ccs)

New slash commands

  • /standup - morning standup summarizing yesterday's work, active plans, and suggested next steps

Installer

  • setup.sh - curl one-liner installer: curl -fsSL https://raw.githubusercontent.com/bluzername/claude-code-power-stack/main/setup.sh | bash

Fixes

  • Ghost MCP registration now uses claude mcp add -s user directly (more reliable than ghost mcp init)
  • Ollama added as required dependency with auto-setup in install.sh
  • update.sh now copies all commands, completions, and shows changelog of new commits
  • Shell completions (zsh + bash) include all new subcommands

Docs

  • Consolidated README (548 -> 503 lines, zero content lost)
  • Mermaid flowchart showing session lifecycle
  • Rewritten workflow guide covering all current features
  • GitHub issue templates (bug report with ccs doctor output, feature request)
  • CONTRIBUTING.md
  • CI badge (GitHub Actions validates scripts and file structure)

Upgrade

cd ~/.claude-power-stack && ./update.sh

Or re-install:

curl -fsSL https://raw.githubusercontent.com/bluzername/claude-code-power-stack/main/setup.sh | bash

v1.0.0 - Initial Release

25 Mar 17:07

Choose a tag to compare

Claude Code Power Stack v1.0.0

One-command install that gives Claude Code persistent memory, cross-project search, structured planning, and session management.

What's included

Tools

  • Ghost MCP server for persistent memory (auto-captures decisions, patterns, mistakes)
  • cc-conversation-search for cross-project session search
  • ccs CLI shortcut with numbered results, stats dashboard, and health checks
  • planning-with-files skill for Manus-style file-based planning

Commands

  • /standup - morning standup summarizing yesterday's work and active plans
  • /rename-session - structured session naming (project-type-descriptor)
  • /plan - create persistent planning files for complex tasks

CLI (ccs)

  • ccs <query> - numbered search results across all projects
  • ccs go 1 - resume result #1 (no UUID copying)
  • ccs ls - list recent sessions
  • ccs stats - usage dashboard with per-project breakdown
  • ccs doctor - health check for Ghost, Ollama, index, and more
  • ccs ix - re-index all conversations
  • Tab completion for zsh and bash

Scripts

  • install.sh - one-command setup (7 steps: Ghost, Ollama, MCP, cc-conversation-search, commands, ccs, CLAUDE.md)
  • update.sh - update all components to latest versions
  • verify.sh - post-install health check (12 checks)
  • uninstall.sh - clean removal

Docs

Install

git clone https://github.com/bluzername/claude-code-power-stack.git
cd claude-code-power-stack
./install.sh