ðŸŽŊ

interview-me

ðŸŽŊSkill

from v1-io/v1tamins

VibeIndex|
What it does

interview-me skill from v1-io/v1tamins

interview-me

Installation

git cloneClone repository
git clone git@github.com:v1-io/v1tamins.git ~/v1tamins
📖 Extracted from docs: v1-io/v1tamins
4
-
Last UpdatedJan 15, 2026

Skill Details

SKILL.md

Overview

# v1tamins

```

██╗ ██╗ ██╗ ████████╗ █████╗ ███╗ ███╗██╗███╗ ██╗███████╗

██║ ██║ ███║ ╚══██╔══╝██╔══██╗████╗ ████║██║████╗ ██║██╔════╝

██║ ██║ ╚██║ ██║ ███████║██╔████╔██║██║██╔██╗ ██║███████╗

╚██╗ ██╔╝ ██║ ██║ ██╔══██║██║╚██╔╝██║██║██║╚██╗██║╚════██║

╚████╔╝ ██║ ██║ ██║ ██║██║ ╚═╝ ██║██║██║ ╚████║███████║

╚═══╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚══════╝

```

Daily supplements for healthy code. A shared collection of AI development tools from the Version1 team.

What's Inside

```

v1tamins/

├── claude/

│ ├── skills/ # 20 Claude Code skills

│ │ ├── code-review/

│ │ ├── pr-description/

│ │ ├── write-tests/

│ │ ├── fix-tests/

│ │ ├── deslop/

│ │ └── ...

│ └── hooks/ # Pre/post execution hooks

│ └── format.sh

├── cursor/

│ ├── commands/ # 22 Cursor slash commands

│ │ ├── code-review.md

│ │ ├── security-audit.md

│ │ ├── write-unit-tests.md

│ │ └── ...

│ └── rules/ # 6 Cursor rules

│ ├── backend-patterns.mdc

│ ├── frontend-patterns.mdc

│ └── ...

├── mcp/

│ └── mcp.json # MCP server configurations

└── templates/ # Reusable templates (CLAUDE.md, etc.)

```

Quick Install

```bash

# Clone the repo

git clone git@github.com:v1-io/v1tamins.git ~/v1tamins

# Run the install script

~/v1tamins/install.sh

```

Manual Setup

Claude Code Skills & Hooks

Claude Code looks for skills in ~/.claude/skills/ and hooks in ~/.claude/hooks/.

```bash

# Symlink skills directory

ln -sf ~/v1tamins/claude/skills ~/.claude/skills

# Symlink hooks directory

ln -sf ~/v1tamins/claude/hooks ~/.claude/hooks

```

Cursor Commands & Rules

Cursor looks for commands in ~/.cursor/commands/ and rules in ~/.cursor/rules/.

```bash

# Symlink commands directory

ln -sf ~/v1tamins/cursor/commands ~/.cursor/commands

# Symlink rules directory

ln -sf ~/v1tamins/cursor/rules ~/.cursor/rules

```

MCP Servers

Copy or merge the MCP config into your Cursor config:

```bash

# Copy MCP config (overwrites existing)

cp ~/v1tamins/mcp/mcp.json ~/.cursor/mcp.json

# Or manually merge with existing config

```

Configured MCP Servers:

| Server | Type | Description |

|--------|------|-------------|

| Linear | SSE | Project management integration |

| LangSmith | stdio | LLM observability (requires LANGSMITH_API_KEY) |

| Postman | HTTP | API testing (requires POSTMAN_API_KEY) |

| Notion | stdio | Documentation integration |

| Playwright | stdio | Browser automation |

| context7 | HTTP | Documentation lookup |

| brave-search | stdio | Web search (requires BRAVE_API_KEY) |

Skills Reference

| Skill | Description |

|-------|-------------|

| code-review | Thorough code review with actionable feedback |

| pr-description | Generate PR descriptions from commits |

| write-tests | Generate unit tests for code |

| fix-tests | Fix failing tests |

| deslop | Clean up AI-generated code slop |

| refactor | Refactor code for clarity |

| complexity | Analyze and reduce cognitive complexity |

| changelog | Generate changelogs from commits |

| prd | Product requirements document generation |

| debug | Systematic debugging workflow |

| migrate | Database/code migration assistance |

| prompt-engineering | Improve prompts |

| address-review | Address PR review comments |

| analyze-tool-errors | Debug tool execution errors |

| file-organizer | Organize project files |

| interview-me | Interview prep assistance |

| rebuild | Rebuild/regenerate code |

| test-service | Test service endpoints |

Cursor Commands Reference

| Command | Description |

|---------|-------------|

| /code-review | Review selected code |

| /security-audit | Security vulnerability scan |

| /write-unit-tests | Generate unit tests |

| /fix-failing-tests | Fix broken tests |

| /deslop | Remove AI slop from code |

| /refactor-code | Refactor for clarity |

| `/reduce-cognitive-compl