feiskyer/claude-code-settings
Claude Code settings, commands and agents for vibe coding
Deep Analysis
为Claude Code提供增强的设置、命令、技能和子代理,支持规范驱动开发和多模型集成
Core Features
多模型支持
集成Claude/Codex/DeepSeek等多个LLM模型
自定义命令
提供分析、GitHub集成、文档等预定义命令
模块化技能
包含Codex/图像生成/YouTube等可独立安装技能
规范驱动工作流
支持Kiro和Spec-Kit的完整需求到实现流程
Technical Implementation
通过插件市场或CLI安装
选择模型提供商
使用自定义命令或触发技能
自动处理专门工作流
任务结果存储在项目目录
- 支持10+种LLM提供商,包括官方Claude、DeepSeek、Qwen等
- 规范驱动开发工作流(Kiro/Spec-Kit),从需求到实现全覆盖
- 模块化设计,用户可按需安装所需技能
- 丰富的子代理生态,覆盖PR审查/问题解决/文档编写等场景
- 通过Codex/GPT-5进行大规模代码自动化和辅助开发
- 使用Spec-Kit进行需求规范化和宪法式开发管理
- 借助Kiro工作流进行交互式特性开发和迭代
- 与GitHub深度集成进行PR审查和问题自动修复
- WebSearch工具仅在官方Anthropic API下可用
- 手动设置配置复杂
Claude Code Settings/Commands/Skills for Vibe Coding
A curated collection of Claude Code settings, custom commands, skills and sub-agents designed for enhanced development workflows. This setup includes specialized commands, skills and subagents for feature development (spec-driven workflow), code analysis, GitHub integration, and knowledge management.
For OpenAI Codex settings, configurations and custom prompts, please refer feiskyer/codex-settings.
Setup
Using Claude Code Plugin
/plugin marketplace add feiskyer/claude-code-settings
# Install main plugin (commands, agents and skills)
/plugin install claude-code-settings
# Alternatively, install individual skills without commands/agents
/plugin install codex-skill # Codex automation
/plugin install autonomous-skill # Long-running task automation
/plugin install nanobanana-skill # Image generation
/plugin install kiro-skill # Kiro workflow
/plugin install spec-kit-skill # Spec-Kit workflow
/plugin install youtube-transcribe-skill # YouTube transcript extraction
Alternatively, run a one-command installation via the Claude Plugins CLI to skip the marketplace setup:
npx claude-plugins install @feiskyer/claude-code-settings/claude-code-settings
This automatically adds the marketplace and installs the plugin in a single step.
Note:
- ~/.claude/settings.json is not configured via Claude Code Plugin, you'd need to configure it manually.
Manual Setup
# Backup original claude settings
mv ~/.claude ~/.claude.bak
# Clone the claude-code-settings
git clone https://github.com/feiskyer/claude-code-settings.git ~/.claude
# Install LiteLLM proxy
pip install -U 'litellm[proxy]'
# Start litellm proxy (which would listen on http://0.0.0.0:4000)
litellm -c ~/.claude/guidances/litellm_config.yaml
# For convenience, run litellm proxy in background with tmux
# tmux new-session -d -s copilot 'litellm -c guidances/litellm_config.yaml'
Once started, you'll see:
...
Please visit https://github.com/login/device and enter code XXXX-XXXX to authenticate.
...
Open the link, log in and authenticate your GitHub Copilot account.
Note:
-
The default configuration is leveraging LiteLLM Proxy Server as LLM gateway to GitHub Copilot. You can also use copilot-api as the proxy as well (remember to change your port to 4141).
-
Make sure the following models are available in your account; if not, replace them with your own model names:
-
ANTHROPIC_DEFAULT_SONNET_MODEL: claude-sonnet-4.5
-
ANTHROPIC_DEFAULT_OPUS_MODEL: claude-opus-4
-
ANTHROPIC_DEFAULT_HAIKU_MODEL: gpt-5-mini
-
Commands
The commands/ directory contains custom slash commands that extend Claude Code's slash commands, which could be invoked via /<command-name> [arguments].
Analysis & Reflection
Analysis & Reflection
/think-harder [problem]- Enhanced analytical thinking/think-ultra [complex problem]- Ultra-comprehensive analysis/reflection- Analyze and improve Claude Code instructions/reflection-harder- Comprehensive session analysis and learning/eureka [breakthrough]- Document technical breakthroughs
GitHub Integration
GitHub Integration
/gh:review-pr [PR_NUMBER]- Comprehensive PR review and comments/gh:fix-issue [issue-number]- Complete issue resolution workflow
Documentation & Knowledge
Documentation & Knowledge
/cc:create-command [name] [description]- Create new Claude Code commands
Utilities
Utilities
/translate [text]- Translate English/Japanese tech content to Chinese
Skills
Skills are now distributed as separate plugins for modular installation. Install only what you need:
codex-skill - handoff task to Codex CLI
codex-skill
Non-interactive automation mode for hands-off task execution using OpenAI Codex. Use when you want to leverage codex, gpt-5, or gpt-5.1 to implement features or plans designed by Claude.
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install codex-skill
Key Features:
- Multiple execution modes (read-only, workspace-write, danger-full-access)
- Model selection support (gpt-5, gpt-5.1, gpt-5.1-codex, etc.)
- Autonomous execution without approval prompts
- JSON output support for structured results
- Resumable sessions
Requirements: Codex CLI installed (npm i -g @openai/codex or brew install codex)
autonomous-skill - Long-running task automation
autonomous-skill
Execute complex, long-running tasks across multiple sessions using a dual-agent pattern (Initializer + Executor) with automatic session continuation.
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install autonomous-skill
Key Features:
- Dual-agent pattern (Initializer creates a task list, Executor completes tasks)
- Auto-continuation across sessions with progress tracking
- Task isolation with per-task directories (
.autonomous/<task-name>/) - Progress persistence via
task_list.mdandprogress.md - Headless mode execution using Claude CLI
Usage:
You: "Please use autonomous skill to build a REST API for a todo app"
Claude: [Creates .autonomous/build-rest-api-todo/, initializes task list, starts execution]
Requirements: Claude CLI installed
nanobanana-skill - draw image with Gemini nanobanana
nanobanana-skill
Generate or edit images using Google Gemini API via nanobanana. Use when creating, generating, or editing images.
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install nanobanana-skill
Key Features:
- Image generation with various aspect ratios
- Image editing capabilities
- Multiple model options (gemini-3-pro-image-preview, gemini-2.5-flash-image)
- Resolution options (1K, 2K, 4K)
- Support for various aspect ratios (square, portrait, landscape, ultra-wide)
Requirements:
- GEMINI_API_KEY configured in
~/.nanobanana.env - Python3 with google-genai, Pillow, python-dotenv (install via
pip install -r requirements.txtin the plugin directory)
youtube-transcribe-skill - Extract YouTube subtitles
youtube-transcribe-skill
Extract subtitles/transcripts from a YouTube video link.
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install youtube-transcribe-skill
Key Features:
- Dual extraction methods: CLI (fast) and Browser Automation (fallback)
- Automatic subtitle language selection (zh-Hans, zh-Hant, en)
- Efficient DOM-based extraction for browser method
- Saves transcripts to local text files
Requirements:
yt-dlp(for CLI method)- or
chrome-devtools-mcp(for browser automation method)
kiro-skill - Interactive Feature Development
kiro-skill
Interactive feature development workflow from idea to implementation.
Triggered by: "kiro", or references to .kiro/specs/ directory
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install kiro-skill
Workflow:
- Requirements → Define what needs to be built (EARS format with user stories)
- Design → Determine how to build it (architecture, components, data models)
- Tasks → Create actionable implementation steps (test-driven, incremental)
- Execute → Implement tasks one at a time
Usage:
You: "I need to create a kiro feature spec for user authentication"
Claude: [Automatically uses kiro-skill]
spec-kit-skill - Constitution-Based Development
spec-kit-skill
GitHub Spec-Kit integration for constitution-based spec-driven development.
Triggered by: "spec-kit", "speckit", "constitution", "specify", or references to .specify/ directory
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install spec-kit-skill
Prerequisites:
# Install spec-kit CLI
uv tool install specify-cli --from git+https://github.com/github/spec-kit.git
# Initialize project
specify init . --ai claude
7-Phase Workflow:
- Constitution → Establish governing principles
- Specify → Define functional requirements
- Clarify → Resolve ambiguities (max 5 questions)
- Plan → Create technical strategy
- Tasks → Generate dependency-ordered tasks
- Analyze → Validate consistency (read-only)
- Implement → Execute implementation
Usage:
You: "Let's create a constitution for this project"
Claude: [Automatically uses spec-kit-skill, detects CLI, guides through phases]
Agents
The agents/ directory contains specialized AI subagents that extend Claude Code's capabilities.
Available Agents
- pr-reviewer - Expert code reviewer for GitHub pull requests
- github-issue-fixer - GitHub issue resolution specialist
- instruction-reflector - Analyzes and improves Claude Code instructions
- deep-reflector - Comprehensive session analysis and learning capture
- insight-documenter - Technical breakthrough documentation specialis
Related Skills
wshobson/agents
wshobsonIntelligent automation and multi-agent orchestration for Claude Code
The most comprehensive Claude Code plugin ecosystem, covering full-stack development scenarios with a three-tier model strategy balancing performance and cost.
ComposioHQ/awesome-claude-skills
ComposioHQA curated list of awesome Claude Skills, resources, and tools for customizing Claude AI workflows
The most comprehensive Claude Skills resource list; connect-apps is a killer feature.
code-yeongyu/oh-my-opencode
code-yeongyuThe Best Agent Harness. Meet Sisyphus: The Batteries-Included Agent that codes like you.
Powerful multi-agent coding tool, but note OAuth limitations.
nextlevelbuilder/ui-ux-pro-max-skill
nextlevelbuilderAn AI SKILL that provide design intelligence for building professional UI/UX multiple platforms
Essential for designers; comprehensive UI/UX knowledge base.
thedotmack/claude-mem
thedotmackA Claude Code plugin that automatically captures everything Claude does during your coding sessions, compresses it with AI (using Claude's agent-sdk), and injects relevant context back into future sessions.
A practical solution for Claude's memory issues.
OthmanAdi/planning-with-files
OthmanAdiClaude Code skill implementing Manus-style persistent markdown planning — the workflow pattern behind the $2B acquisition.
Context engineering best practices; an open-source implementation of Manus mode.

