AGENT0S
HomeLibraryAgentic
FeedbackLearn AI
LIVE
Agent0s · AI Intelligence Library
Share FeedbackUpdated daily · 7am PST
Library/plugin
pluginintermediateClaude Code

Vibe Coding: A Curated Collection of Claude Code Skills and Agents

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.

AI SETUP PROMPT

Paste into Claude Code — it will scan your project and set everything up

# 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
3,186 charactersCompatible with Claude Code & Codex CLI
MANUAL SETUP STEPS
  1. 01Execute the Claude Code command `/plugin marketplace add feiskyer/claude-code-settings` to add the repository to the agent's plugin marketplace.
  2. 02Run the command `/plugin install claude-code-settings` to install the complete suite of skills and agent configurations from the newly added marketplace repository.
  3. 03Verify 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'`.

CODE INTELLIGENCE

bash
/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

FIELD OPERATIONS

Dual-Agent Refactoring Bot

Build a CLI tool that uses a Claude agent to analyze a legacy codebase and generate a detailed refactoring specification. Then, use the included `codex-skill` to automatically pass that specification to a GPT-5 model to perform the code implementation, creating a fully automated code modernization pipeline.

AI-Powered Video Content Analyzer

Create a script that takes a list of YouTube URLs. For each URL, use the `youtube-transcribe-skill` to extract the full transcript, then use another skill to summarize the transcript, identify key themes, and output a structured JSON file containing the summary and identified topics for each video.

STRATEGIC APPLICATIONS

  • →Accelerate feature development by establishing a spec-driven workflow. A Product Manager writes a feature spec, which a Claude agent ingests using the `spec-kit-skill` to create an implementation plan. The agent then delegates the boilerplate code generation to another model via the `codex-skill`, freeing up senior developers to focus on complex logic.
  • →Automate internal knowledge base creation from the codebase. Configure a workflow where the agent periodically scans new code, uses its analysis skills to generate technical documentation and architecture diagrams, and then posts them to a Confluence or Notion knowledge base, ensuring documentation is always up-to-date.

TAGS

#skills#plugin#claude-code#automation#workflow#liteLLM#codex#agent
Source: GITHUB · Quality score: 8/10
VIEW SOURCE