# Install & Configure: Vibe Coding: A Curated Collection of Claude Code Skills and Agents
## What This Is
This plugin enhances the Claude Code AI assistant with a pre-packaged suite of powerful skills and configurations. It enables advanced automation by allowing Claude to delegate tasks to other AI models, generate images, transcribe YouTube videos, and follow structured development plans, significantly boosting developer productivity.
Source: https://github.com/feiskyer/claude-code-settings
## Before You Start
Scan my workspace and analyze:
- The project language, framework, and directory structure
- Existing agent configuration (check for .claude/, .codex/, CLAUDE.md, settings.json, commands/, skills/ directories)
- Whether this repository or a similar tool is already cloned or installed
Then ask me before proceeding:
1. Do I need to configure any service credentials for this plugin (database, API keys, etc.)?
2. Should this be project-scoped or global?
## Fetch the Source
Clone or inspect the repository to understand what needs to be installed:
```bash
gh repo clone feiskyer/claude-code-settings
```
Review the README, directory structure, and any install instructions before proceeding.
## What to Implement
This is an **Agent Plugin** — typically an MCP server or capability bundle.
- Install any required npm/pip packages from the source repository
- Register the MCP server in `.claude/settings.json` under the `mcpServers` key with the correct command and args
- Configure any required environment variables or credentials
- Verify the server starts correctly by checking its expected output
## Additional Context
- Execute the Claude Code command `/plugin marketplace add feiskyer/claude-code-settings` to add the repository to the agent's plugin marketplace.
- Run the command `/plugin install claude-code-settings` to install the complete suite of skills and agent configurations from the newly added marketplace repository.
- Verify the installation by checking for the presence of the `~/.claude/guidances/litellm_config.yaml` file. If present, advise the user that a proxy server is required and provide the command to run it in a background process: `tmux new-session -d -s litellm 'litellm -c ~/.claude/guidances/litellm_config.yaml'`.
## Reference Implementation
```
/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
```
## Guidelines
- Adapt everything to my existing project — do not assume a specific stack or directory layout
- Review any fetched code for safety before installing or executing it
- After setup, run a quick verification and show me a summary of exactly what was installed, where, and how to use it