Co-Pilot / 辅助式
更新于 24 days ago

v1tamins

Vv1-io
0.0k
v1-io/v1tamins
78
Agent 评分

💡 摘要

一套用于提高编码效率和质量的AI开发工具集合。

🎯 适合人群

软件开发人员DevOps工程师项目经理质量保证测试人员技术写作人员

🤖 AI 吐槽:README建议创建符号链接目录,如果配置错误,可能会暴露敏感文件。确保对链接目录设置适当的权限以降低风险。

安全分析中风险

README建议创建符号链接目录,如果配置错误,可能会暴露敏感文件。确保对链接目录设置适当的权限以降低风险。

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

# 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/.

# 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/.

# 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:

# 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-complexity | Simplify complex code | | /generate-pr-description | Generate PR description | | /debug-issue | Debug workflow | | /optimize-performance | Performance optimization | | /add-documentation | Add code documentation | | /clean-logging | Clean up logging statements | | /security-review | Security-focused review | | /address-copilot-review | Address Copilot review comments | | /frontend-design | Frontend design guidance | | /write-prd-for-linear | Generate PRD for Linear |

Updating

Pull the latest changes and re-run install if needed:

cd ~/v1tamins && git pull

Contributing

We welcome contributions! Here's how to get started:

Fork and Clone

  1. Fork the repository on GitHub
  2. Clone your fork locally:
    git clone git@github.com:YOUR_USERNAME/v1tamins.git ~/v1tamins cd ~/v1tamins
  3. Add the upstream remote:
    git remote add upstream git@github.com:v1-io/v1tamins.git

Make Changes

  1. Create a new branch for your changes:
    git checkout -b feature/my-new-skill
  2. Make your changes and test them in a project
  3. Commit your changes with a descriptive message:
    git add . git commit -m "Add new skill: my-cool-skill"

Open a Pull Request

  1. Push your branch to your fork:
    git push origin feature/my-new-skill
  2. Go to the v1tamins repository on GitHub
  3. Click "Compare & pull request"
  4. Fill in a clear title and description of your changes
  5. Submit the pull request for review

Keeping Your Fork Updated

git fetch upstream git checkout main git merge upstream/main git push origin main

Requirements

  • Claude Code CLI
  • Cursor IDE
  • Node.js (for MCP servers)
  • Python/uvx (for LangSmith MCP)
五维分析
清晰度8/10
创新性7/10
实用性9/10
完整性8/10
可维护性7/10
优缺点分析

优点

  • 全面的编码工具集。
  • 支持多种编码任务。
  • 易于安装和设置。

缺点

  • 设置需要多个符号链接。
  • 依赖于外部工具。
  • 新用户可能需要学习曲线。

相关技能

ccmp

A
toolCo-Pilot / 辅助式
86/ 100

“看起来很能打,但别让配置把人劝退。”

claude-mods

A
toolCo-Pilot / 辅助式
86/ 100

“看起来很能打,但别让配置把人劝退。”

agentic-qe

A
toolCo-Pilot / 辅助式
86/ 100

“看起来很能打,但别让配置把人劝退。”

免责声明:本内容来源于 GitHub 开源项目,仅供展示和评分分析使用。

版权归原作者所有 v1-io.