by feiskyer
Claude Code settings, commands and agents for vibe coding
# Add to your Claude Code skills
git clone https://github.com/feiskyer/claude-code-settingsGuides for using ai agents skills like claude-code-settings.
Last scanned: 4/27/2026
{
"issues": [],
"status": "PASSED",
"scannedAt": "2026-04-27T06:28:43.105Z",
"semgrepRan": false,
"npmAuditRan": true,
"pipAuditRan": true
}claude-code-settings is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by feiskyer. Claude Code settings, commands and agents for vibe coding. It has 1,586 GitHub stars.
Yes. claude-code-settings passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.
Clone the repository with "git clone https://github.com/feiskyer/claude-code-settings" and add it to your Claude Code skills directory (see the Installation section above).
claude-code-settings is primarily written in Python. It is open-source under feiskyer on GitHub, so you can review or fork the full source.
Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-code-settings against similar tools.
No comments yet. Be the first to share your thoughts!
A curated collection of Claude Code settings, skills and sub-agents designed for enhanced development workflows. This setup includes specialized 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.
/plugin marketplace add feiskyer/claude-code-settings
# Install main plugin (skills and agents)
/plugin install claude-code-settings
# Alternatively, install individual skills
/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
Note:
npx skills could be used to install skills only for your AI coding tools.
# List skills
npx -y skills add -l feiskyer/claude-code-settings
# Install all skills
npx -y skills add --all feiskyer/claude-code-settings
# Manually select a list of skills to install
npx -y skills add feiskyer/claude-code-settings
# 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 ~/.claude/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:
Skills are reusable capabilities that teach Claude how to complete specific tasks. They can be invoked via /skill-name [arguments] or triggered automatically based on context. Install only what you need:
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:
Requirements: Codex CLI installed (npm i -g @openai/codex or brew install codex)
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:
.autonomous/<task-name>/)task_list.md and progress.mdUsage:
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
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:
Requirements:
~/.nanobanana.envpip install -r requirements.txt in the plugin directory)Generate or edit images using OpenAI's GPT Image models (gpt-image-2, gpt-image-1, etc).
Triggered by: "gpt image", "openai image", "generate image with openai", "draw image", "AI绘图", "画图"
Key Features:
Requirements:
OPENAI_API_KEY configured in ~/.gpt-image.env or exportedpip install -r requirements.txt in the skill directory)Extract subtitles/transcripts from a YouTube video link.
Installation:
/plugin marketplace add feiskyer/claude-code-settings
/plugin install youtube-transcribe-skill
Key Features:
Requirements:
yt-dlp (for CLI method)chrome-devtools-mcp (for browser automation method)Multi-agent orchestration workflow for deep research. Decomposes research goals into parallel sub-objectives, spawns claude -p sub-processes, aggregates results, and delivers polished reports.
Triggered by: "深度调研", "deep research", "wide research", "multi-agent research", or systematic research needs
Key Features:
claude -pUse Cases:
Directory Structure:
.research/<name>/
├── prompts/ # Sub-task prompts
├── child_outputs/ # Sub-process outputs
├── logs/ # Execution logs
├── raw/ # Cached raw data
└── final_report.md # Polished deliverable
Usage:
You: "深度调研一下 AI Agent 框架的现状"
Claude: [Initiates reconnaissance, proposes sub-objectives, waits for confirmation, then orchestrates parallel research]
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:
Usage:
You: "I need to create a kiro feature spec for user authentication"
Claude: [Automatically uses kiro-skill]
GitHub Spec-Kit integration for constitution-based spec-driven development.
Triggered by: "spec-kit",