Cc Agents Kit
Description
Claude Code plugin marketplace. guard-hooks: five defensive hooks that block dangerous shell commands and secrets access, catch the two zsh quoting mistakes that fail silently, and warn on lockfile drift and shellcheck findings.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
cc-agents-kit
[](https://github.com/AndrewDongminYoo/cc-agents-kit/actions/workflows/ci.yml)
A Claude Code plugin marketplace. Each plugin is scoped to one pain, so you install the part you want and nothing else.

/plugin marketplace add AndrewDongminYoo/cc-agents-kit
/plugin install guard-hooks@cc-agents-kit
Upgrading needs `claude plugin update guard-hooks@cc-agents-kit` — the marketplace suffix is required, and installing again is a no-op that reports success. Refreshing the marketplace alone is not enough: the cache keeps one directory per version, and the runtime loads the version recorded at install time, so `claude plugin details` can report the new version while the old one is still what fires. Hooks are read when a session starts, so restart any session that is already open.
| Plugin | What it does |
|---|---|
| `guard-hooks` | Seven defensive hooks — five block, two warn. |
| `context-handoff` | Carry work across sessions, and keep the context that carries it lean. |
| `repo-gate` | What runs between "the code works" and "it is pushed". |
guard-hooks
Why the zsh quoting guard exists
Two shell mistakes recur across agent sessions, and both fail *silently* rather than with an error you would notice.
**A backtick inside a double-quoted commit or PR message.** zsh runs it as command substitution, so the backticked word is deleted from the message before git ever sees it — and the `command not found` scrolls past in the commit output.
git commit -m "fix: cancel `players` subscription"
# committed message: "fix: cancel subscription" ← the word is gone
**An unquoted glob in an option value.** zsh expands it against the current directory before the tool is eve
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11