deep-review

claude-code-skills

OtherClaude Codeby abhattacherjee

Summary

Two-phase convergence harness for high-assurance review of a changeset (PR or working-tree diff). Phase 1 loops iterative multi-reviewer fix->re-review until a round finds zero actionable issues; Phase 2 runs a Gemini-primary adversarial cross-examination (Gemini finds -> Claude judges -> Gemini counters), fixing every confirmed finding. Soft-depends on pr-review-toolkit and adversarial-review plugins with documented fallbacks.

Install to Claude Code

/plugin install deep-review@claude-code-skills

Run in Claude Code. Add the marketplace first with /plugin marketplace add abhattacherjee/claude-code-skills if you haven't already.

README.md

Claude Code Skills

A curated collection of 7 reusable Agent Skills for Claude Code, Cursor, Codex CLI, and Gemini CLI.

Skills

| Skill | Version | Description | Individual Repo | |-------|---------|-------------|-----------------| | changelog-keeper | 1.1.1 | Keeps CHANGELOG.md up to date by generating categorized entries from git commit history. | repo | | claudeception | 3.2.0 | Extracts reusable knowledge from work sessions and codifies it into Claude Code skills. | repo | | context-shield | 1.3.0 | Prevents context window overflow when processing large content (Figma designs, web pages, GitHub wikis, large codebases). Delegates token-heavy reads to isolated sub-agents that return distilled summaries. Auto-detects when ralph-loop is needed based on batch count. | — | | conversation-search | 1.1.0 | Searches Claude Code conversation history in ~/.claude/projects/ by topic, date, branch, or project. Provides verbatim conversation content and AI-generated summaries. | repo | | figma-ui-designer | 3.2.0 | Interactive Figma UI design skill with UX-expert brainstorming, progress tracking, and design-to-code bridging. Spawns a specialized UX designer agent that researches real-world references before proposing design directions. Four workflows: (A) capture running app, (B) new project design, (C) enhancement mockup, (D) extract existing Figma designs as input for specs/plans/code. | — | | skill-authoring | 2.6.0 | Creates and optimizes Claude Code skills following Anthropic's official best practices with emphasis on agent parallelization and script-first determinism. | — | | worktree | 1.0.0 | Creates isolated git worktrees for parallel Claude Code sessions, each on its own branch. | repo |

Plugins

Plugins bundle skills, commands, agents, and hooks into a single installable package.

| Plugin | Version | Skills | Commands | Description | |--------|---------|--------|----------|-------------| | adversarial-review | 0.1.0 | 1 | 0 | Adversarial PR review — Claude and Gemini discover findings independently then cross-examine each other symmetrically, surfacing only issues both models confirm. Auto-detects PR vs local (working-tree) mode; degrades loudly to Claude-only if the Gemini adversary is unavailable. | | context-bar | 1.0.0 | 1 | 0 | Color-coded context window usage bar for Claude Code statusline and /context-bar command | | context-shield | 1.3.0 | 1 | 0 | Prevents context window overflow by delegating token-heavy reads to isolated sub-agents that return distilled summaries. Auto-detects when ralph-loop is needed. Covers: documentation sites, code audits, dependency research, large PR reviews, competitive analysis, security advisories. | | custom-statusline | 1.3.0 | 1 | 0 | 4-tier adaptive statusline with icons for folder, git branch, and context usage | | deep-review | 1.0.0 | 1 | 0 | Two-phase convergence harness for high-assurance review of a changeset (PR or working-tree diff). Phase 1 loops iterative multi-reviewer fix->re-review until a round finds zero actionable issues; Phase 2 runs a Gemini-primary adversarial cross-examination (Gemini finds -> Claude judges -> Gemini counters), fixing every confirmed finding. Soft-depends on pr-review-toolkit and adversarial-review plugins with documented fallbacks. | | figma-ui-designer | 3.1.0 | 1 | 0 | Interactive Figma UI design skill with brainstorming, progress tracking, and design-to-code bridging via Figma MCP | | obsidian-brain | 2.5.1 | 18 | 0 | Persistent brain for Claude Code sessions using Obsidian. Auto-logs sessions, captures curated insights, enables project-scoped context resume, and provides fast cross-project search via tags and metadata. | | product-video-creation | 2.0.0 | 1 | 0 | Creates polished, narrated product demo videos using Remotion with AI-crafted storytelling, real app screenshots, animated phone mockups, brand-aligned styling, TTS voiceover, and background music. | | skill-authoring | 2.3.0 | 1 | 0 | Creates and optimizes Claude Code skills following Anthropic's official best practices with emphasis on agent parallelization and script-first determinism | | skill-publishing | 4.0.0 | 1 | 0 | Plugin-first publishing for Claude Code skills. Auto-assembles and syncs plugins from plugin-manifest.json files. Also supports bare skills and individual repos | | smart-screen-recorder | 4.3.0 | 1 | 0 | AI-driven screen recording and demo production pipeline for macOS. Records screen + cursor, analyzes with AI vision, generates zoom scripts and voiceover narration, and produces polished demo videos. | | spec-creator | 2.3.0 | 1 | 0 | Creates detailed story specifications with TDD implementation steps, success metrics, Figma UX design gates, and vertical splitting from various inputs (plans, requirements, GitHub issues). | | spec-review | 2.1.0 | 1 | 0 | Reviews and enriches story specifications with codebase-verified sub-tasks, architecture alignment, design simplification, and API test plans. | | statusline-creator | 1.0.0 | 1 | 0 | Creates and customizes Claude Code statusline scripts from composable items |

> Note: The git-flow plugin moved to its own repository — install via /plugin marketplace add abhattacherjee/git-flow.

Install via Claude Code (Recommended)

Add this repo as a plugin marketplace, then install individual plugins:

# Add the marketplace (one-time setup)
/plugin marketplace add abhattacherjee/claude-code-skills

# Install a plugin
/plugin install PLUGIN_NAME@claude-code-skills

To browse all available plugins interactively, run /plugin and go to the Discover tab.

Install via Script

git clone https://github.com/abhattacherjee/claude-code-skills.git /tmp/ccs
/tmp/ccs/scripts/install-plugin.sh /tmp/ccs/plugins/PLUGIN_NAME
rm -rf /tmp/ccs

Uninstall a Plugin

# Via Claude Code
/plugin uninstall PLUGIN_NAME@claude-code-skills

# Via script
git clone https://github.com/abhattacherjee/claude-code-skills.git /tmp/ccs
/tmp/ccs/scripts/install-plugin.sh --uninstall /tmp/ccs/plugins/PLUGIN_NAME
rm -rf /tmp/ccs

Installation

Install all skills

git clone https://github.com/abhattacherjee/claude-code-skills.git /tmp/claude-code-skills
cp -r /tmp/claude-code-skills/changelog-keeper ~/.claude/skills/changelog-keeper
cp -r /tmp/claude-code-skills/claudeception ~/.claude/skills/claudeception
cp -r /tmp/claude-code-skills/context-shield ~/.claude/skills/context-shield
cp -r /tmp/claude-code-skills/conversation-search ~/.claude/skills/conversation-search
cp -r /tmp/claude-code-skills/figma-ui-designer ~/.claude/skills/figma-ui-designer
cp -r /tmp/claude-code-skills/github-board-move ~/.claude/skills/github-board-move
cp -r /tmp/claude-code-skills/skill-authoring ~/.claude/skills/skill-authoring
cp -r /tmp/claude-code-skills/worktree ~/.claude/skills/worktree
rm -rf /tmp/claude-code-skills

Install a single skill from the monorepo

# Clone the monorepo
git clone https://github.com/abhattacherjee/claude-code-skills.git /tmp/claude-code-skills

# Copy the skill you want
cp -r /tmp/claude-code-skills/SKILL_NAME ~/.claude/skills/SKILL_NAME

# Clean up
rm -rf /tmp/claude-code-skills

Sparse checkout (single skill, minimal download)

git clone --filter=blob:none --sparse https://github.com/abhattacherjee/claude-code-skills.git /tmp/ccs
cd /tmp/ccs && git sparse-checkout set SKILL_NAME
cp -r SKILL_NAME ~/.claude/skills/SKILL_NAME
rm -rf /tmp/ccs

Install from individual repo

Each skill is also available as a standalone repository:

git clone https://github.com/abhattacherjee/SKILL_NAME.git ~/.claude/skills/SKILL_NAME

See the table above for links to individual repos.

Updating

cd /path/to/your/clone && git pull
# Then re-copy updated skills to ~/.claude/skills/

Compatibility

These skills follow the Agent Skills standard — a SKILL.md file with YAML frontmatter. This format is recognized by:

License

MIT

---

Last synced: 2026-06-06

Related plugins

Browse all →