
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
@yeongjaeyou/claude-code-config
Advanced tools
A collection of custom slash commands, agents, and skills for Claude Code CLI.
.claude/
├── commands/ # Slash commands
│ ├── ask-codex.md # Request code review via Codex MCP
│ ├── ask-deepwiki.md # Deep query GitHub repos via DeepWiki
│ ├── ask-gemini.md # Request code review via Gemini CLI
│ ├── code-review.md # Process external code reviews (CodeRabbit, etc.)
│ ├── commit-and-push.md # Automate Git commit and push
│ ├── council.md # Consult multiple AI models (LLM Council)
│ ├── edit-notebook.md # Safely edit Jupyter Notebooks
│ ├── generate-llmstxt.md # Generate llms.txt from URL or directory
│ ├── gh/
│ │ ├── create-issue-label.md # Create GitHub issue labels
│ │ ├── decompose-issue.md # Decompose large work into issues
│ │ ├── init-project.md # Initialize GitHub Project board
│ │ ├── post-merge.md # Post-merge cleanup
│ │ └── resolve-issue.md # GitHub issue resolution workflow
│ └── tm/
│ ├── convert-prd.md # Convert PRD draft to TaskMaster format
│ ├── post-merge.md # TaskMaster-integrated post-merge cleanup
│ ├── resolve-issue.md # TaskMaster-based issue resolution
│ └── sync-to-github.md # Sync TaskMaster -> GitHub
├── guidelines/ # Shared guidelines
│ ├── work-guidelines.md # Common work guidelines
│ ├── id-reference.md # GitHub/TaskMaster ID reference
│ ├── cv-guidelines.md # Computer vision guidelines
│ └── prd-guide.md # PRD template for TaskMaster
├── agents/ # Custom agents
│ ├── web-researcher.md # Multi-platform web research
│ └── python-pro.md # Python expert
└── skills/ # Skills (reusable tool collections)
├── code-explorer/ # GitHub/HuggingFace code exploration
│ ├── SKILL.md
│ ├── scripts/
│ └── references/
├── feature-implementer/ # TDD-based feature planning
│ ├── SKILL.md
│ └── plan-template.md
├── notion-md-uploader/ # Upload Markdown to Notion
│ ├── SKILL.md
│ ├── scripts/
│ └── references/
└── skill-creator/ # Guide for creating skills
├── SKILL.md
└── scripts/
| Command | Description |
|---|---|
/commit-and-push | Analyze changes and commit with Conventional Commits format |
/code-review | Process external code review results and apply auto-fixes |
/edit-notebook | Safely edit Jupyter Notebook files with NotebookEdit tool |
/generate-llmstxt | Generate llms.txt from URL or local directory |
/ask-deepwiki | Deep query GitHub repositories via DeepWiki MCP |
/ask-codex | Request code review via Codex MCP (with Claude cross-check) |
/ask-gemini | Request code review via Gemini CLI (with Claude cross-check) |
/council | Consult multiple AI models with multi-round deliberation |
/gh/)| Command | Description |
|---|---|
/gh/create-issue-label | Analyze project and create appropriate GitHub issue labels |
/gh/decompose-issue | Decompose large work into manageable independent issues |
/gh/init-project | Initialize and configure GitHub Project board |
/gh/post-merge | Clean up branch and update config files (CLAUDE.md, AGENTS.md, GEMINI.md) after PR merge |
/gh/resolve-issue | Systematically analyze and resolve GitHub issues |
/tm/)| Command | Description |
|---|---|
/tm/convert-prd | Convert PRD draft to TaskMaster PRD format |
/tm/sync-to-github | Sync TaskMaster tasks.json to GitHub Issues/Milestones |
/tm/resolve-issue | Resolve GitHub Issues by TaskMaster subtask units |
/tm/post-merge | TaskMaster status update, config file updates, and branch cleanup after PR merge |
| Agent | Description |
|---|---|
web-researcher | Multi-platform tech research with opus model (Reddit, GitHub, HF, arXiv, etc.) |
python-pro | Python expert with opus model (decorators, generators, async/await, optimization) |
Search and analyze code/models/datasets on GitHub and Hugging Face.
# Search GitHub repositories
python scripts/search_github.py "object detection" --limit 10
# Search Hugging Face models/datasets/Spaces
python scripts/search_huggingface.py "qwen vl" --type models
TDD-based feature planning with quality gates.
Upload Markdown files to Notion pages with full formatting support.
Guide for creating effective Claude Code skills.
# Install to current project
npx @yeongjaeyou/claude-code-config
# Global install (available in all projects)
npx @yeongjaeyou/claude-code-config --global
# Method 1: Direct copy
git clone https://github.com/YoungjaeDev/claude-code-config.git
cp -r claude-code-config/.claude /path/to/your/project/
# Method 2: Symbolic link
ln -s /path/to/claude-code-config/.claude /path/to/your/project/.claude
npx @yeongjaeyou/claude-code-config [options]
Options:
-g, --global Global install (~/.claude/)
-h, --help Show help
-v, --version Show version
When existing folders are detected, you'll be prompted to choose:
| Mode | Behavior |
|---|---|
| update (default) | Overwrite existing files, add new files, keep custom files |
| merge | Add new files only, skip existing files |
The package includes .mcp.json that can be copied to your project root.
# macOS/Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
| Server | Description | API Key |
|---|---|---|
| mcpdocs | Claude Code, Cursor docs search (mcp-cache wrapper) | Not required |
| deepwiki | GitHub repository documentation query | Not required |
| serena | LSP-based code analysis tool | Not required |
# Copy .mcp.json
cp node_modules/@yeongjaeyou/claude-code-config/.mcp.json .
# Or merge contents if you have existing .mcp.json
Note: If you have your own
.mcp.json, manually merge themcpServersobject.
# Generate llms.txt from website
/generate-llmstxt https://docs.example.com
# Commit and push
/commit-and-push src/auth.ts src/utils.ts
# Resolve GitHub issue
/gh/resolve-issue 42
# Consult AI council
/council "Should we use REST or GraphQL for this API?"
/generate-llmstxt - LLM Documentation/commit-and-push - Git Automation/edit-notebook - Jupyter Notebook EditingNotebookEdit tool (protect JSON structure)/council - LLM Council--quick flag for faster single-round responsesweb-researcher Agentgh CLI), Hugging Face, Reddit, SO, arXivfeature-implementer Skillcode-explorer Skillgh CLIhuggingface_hub API/tmp/)Desktop notifications for Claude Code events using OSC escape sequences.
# 1. Install Terminal Notification extension in VSCode
# 2. Global install includes notify_osc.sh and auto-registers hooks
npx @yeongjaeyou/claude-code-config --global
| Event | Description |
|---|---|
| Stop | Task completion |
| Notification | Permission requests, idle prompts |
See docs/notification-setup.md for detailed setup guide.
MIT License
FAQs
Claude Code CLI custom commands, agents, and skills
We found that @yeongjaeyou/claude-code-config demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.