Releases: bluzername/claude-code-power-stack
v1.5.0 - Complete Workflow
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 cheatrestructured - 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 cheatwas 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 updatev1.4.0
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 doctorversion check - compares your local version against the latest GitHub release. Shows "v1.4.0 (latest)" or warns with upgrade command.ccs doctorcommand 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/*.mdglob.
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 updatev1.3.0 - Team Mode
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 stepNew: 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.jsonlin 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-stepgit add / commit / pushdance- 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 updatev1.2.0
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
ccscrash 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 -
ccsnow 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
ccssubcommand consistently - Cheatsheet PDF regenerated with complete command table
Upgrade
ccs updatev1.1.0
What's new since v1.0.0
New commands
ccs here <query>- search scoped to the current project directoryccs cheat- color-coded quick reference card right in your terminalccs --version- version reporting
Improved commands
ccs ls- now shows numbered results with first-message previews;ccs go 1works after both search and lsccs 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 userdirectly (more reliable thanghost mcp init) - Ollama added as required dependency with auto-setup in install.sh
update.shnow 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 doctoroutput, feature request) - CONTRIBUTING.md
- CI badge (GitHub Actions validates scripts and file structure)
Upgrade
cd ~/.claude-power-stack && ./update.shOr re-install:
curl -fsSL https://raw.githubusercontent.com/bluzername/claude-code-power-stack/main/setup.sh | bashv1.0.0 - Initial Release
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
ccsCLI 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 projectsccs go 1- resume result #1 (no UUID copying)ccs ls- list recent sessionsccs stats- usage dashboard with per-project breakdownccs doctor- health check for Ghost, Ollama, index, and moreccs 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 versionsverify.sh- post-install health check (12 checks)uninstall.sh- clean removal
Docs
- Printable cheatsheet PDF
- Workflow guide
- Mermaid flowchart in README
- Troubleshooting section with 6 common issues
Install
git clone https://github.com/bluzername/claude-code-power-stack.git
cd claude-code-power-stack
./install.sh