Claude Code Settings banner
feiskyer feiskyer

Claude Code Settings

Development community intermediate

Description

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.

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

Claude Code Settings/Skills for Vibe Coding

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](https://github.com/feiskyer/codex-settings).

Setup

Using Claude Code Plugin

/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:**

Using npx skills

`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

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

...