Token导航 LogoToken导航TokenDH.com
vibebaza (Aabulkhairov) logo
AI代理未说明官方级别未说明来源级核验

vibebaza (Aabulkhairov)

MCP Server

VibeBaza是一个开源AI资源库,提供Claude的提示词、技能、代理和MCP服务器资源,适用于AI开发者和技术文档编写者。

工具数

0

提示词数

0

GitHub Stars

7

资源数

0
开源AI开发ClaudeAPI密钥Claude

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

作者 / 组织

aabulkhairov

提供方

aabulkhairov

最后核验

2026/5/17 20:22

快速接入

先看主来源和安装命令,再打开仓库或文档;下面只保留这个条目的关键接入事实。

详细介绍

VibeBaza图书馆

Claude Code的开源插件、技能、代理和MCP服务器库。

vibebaza.com -搜索和目录所有内容的网站。

里面是什么

文件夹描述 |-------|----------|--------| | skills/ –Claude的技能和专业知识–500+。 | agents/ #22312;的工具,120。 | prompts/ 系统配置35+ | mcps/ |MCP-模型上下文协议|850+| | bundles/ 内容组合(14)

______________________________________________________________________

快速启动

1.分叉和克隆

# Форкни репозиторий на GitHub, затем:
git clone git@github.com:YOUR_USERNAME/vibebaza.git
cd vibebaza

2.创建文件

# Пример: новый скилл
touch skills/my-awesome-skill.md

3.添加内容

打开文件并填写模板(下面的示例)。

4.发送PR

git add .
git commit -m "Add my-awesome-skill"
git push origin main
# Открой Pull Request на GitHub

______________________________________________________________________

完整的文件示例

技能(Skill)

文件 : skills/python-fastapi-expert.md

---
title: "FastAPI Backend Expert"
description: "Экспертиза в разработке REST API на Python с FastAPI, Pydantic, SQLAlchemy"
tags:
  - python
  - fastapi
  - backend
  - api
author: "VibeCoder"
featured: true
---

You are an expert Python backend developer specializing in FastAPI framework.

## Core Expertise

- FastAPI application architecture
- Pydantic models and validation
- SQLAlchemy ORM with async support
- OAuth2 and JWT authentication
- OpenAPI documentation

## Code Style

- Type hints everywhere
- Dependency injection pattern
- Repository pattern for data access
- Async/await for I/O operations

## Example Response

When asked to create an endpoint:

\`\`\`python
from fastapi import APIRouter, Depends, HTTPException
from sqlalchemy.ext.asyncio import AsyncSession

router = APIRouter(prefix="/users", tags=["users"])

@router.get("/{user_id}", response_model=UserResponse)
async def get_user(
    user_id: int,
    db: AsyncSession = Depends(get_db)
) -> UserResponse:
    user = await user_repo.get_by_id(db, user_id)
    if not user:
        raise HTTPException(404, "User not found")
    return user
\`\`\`

______________________________________________________________________

代理(Agent)

文件 : agents/code-reviewer.md

---
title: "Code Reviewer Agent"
description: "Автоматический ревью кода с проверкой безопасности, стиля и производительности"
tags:
  - code-review
  - security
  - best-practices
author: "VibeCoder"
featured: false
agent_name: "code-reviewer"
agent_tools: "Read, Glob, Grep, Bash"
agent_model: "sonnet"
---

You are a senior code reviewer agent. Your job is to review code changes and provide actionable feedback.

## Review Checklist

1. **Security** — SQL injection, XSS, secrets in code
2. **Performance** — N+1 queries, unnecessary loops
3. **Readability** — naming, comments, complexity
4. **Tests** — coverage, edge cases

## Output Format

For each issue found:

\`\`\`
## [SEVERITY] Issue Title

**File:** path/to/file.py:42
**Type:** Security | Performance | Style | Bug

**Problem:**
Description of the issue.

**Suggestion:**
How to fix it with code example.
\`\`\`

## Tools Usage

- Use `Glob` to find relevant files
- Use `Read` to examine file contents
- Use `Grep` to search for patterns
- Use `Bash` only for git diff commands

______________________________________________________________________

MCP服务器

文件 : mcps/notion.md

---
title: "Notion MCP Server"
description: "Интеграция с Notion API для работы со страницами, базами данных и блоками"
tags:
  - notion
  - productivity
  - database
  - official
author: "Anthropic"
featured: true
install_command: "npx -y @anthropic/mcp-notion"
connection_type: "stdio"
paid_api: false
---

Official MCP server for Notion integration.

## Features

- Read and write Notion pages
- Query databases
- Create and update blocks
- Search across workspace

## Setup

1. Get your Notion API key from [notion.so/my-integrations](https://notion.so/my-integrations)
2. Add the integration to your workspace

## Configuration

\`\`\`json
{
  "mcpServers": {
    "notion": {
      "command": "npx",
      "args": ["-y", "@anthropic/mcp-notion"],
      "env": {
        "NOTION_API_KEY": "your-api-key"
      }
    }
  }
}
\`\`\`

## Available Tools

| Tool | Description |
|------|-------------|
| `notion_search` | Search pages and databases |
| `notion_get_page` | Get page content |
| `notion_create_page` | Create new page |
| `notion_update_page` | Update existing page |
| `notion_query_database` | Query database with filters |

______________________________________________________________________

Prompt(提示)

文件 : prompts/technical-writer.md

---
title: "Technical Documentation Writer"
description: "Системный промпт для написания технической документации"
tags:
  - documentation
  - technical-writing
  - api-docs
author: "VibeCoder"
---

You are a technical documentation specialist. Write clear, concise, and well-structured documentation.

## Style Guidelines

- Use active voice
- One idea per sentence
- Code examples for every concept
- Consistent terminology

## Documentation Structure

1. **Overview** — What and why
2. **Quick Start** — Get running in 5 minutes
3. **Concepts** — Core ideas explained
4. **API Reference** — Every endpoint/function
5. **Examples** — Real-world use cases
6. **Troubleshooting** — Common issues

## Code Examples Format

Always include:
- Language identifier
- Comments explaining non-obvious parts
- Expected output where relevant

______________________________________________________________________

Bundle(捆绑)

文件 : bundles/fullstack-saas.md

---
title: "Fullstack SaaS Development Bundle"
description: "Полный набор для разработки SaaS-приложения: от бэкенда до деплоя"
tags:
  - fullstack
  - saas
  - startup
author: "VibeCoder"
category: "development"
mcps:
  - github
  - postgres
  - stripe
  - vercel
skills:
  - typescript-expert
  - react-developer
  - node-backend
agents:
  - code-reviewer
  - test-generator
prompts:
  - technical-writer
---

## What's Included

This bundle combines tools for building a complete SaaS application.

### Backend
- PostgreSQL for data storage
- Node.js/TypeScript expertise
- API design patterns

### Frontend
- React best practices
- TypeScript everywhere
- Modern CSS approaches

### DevOps
- GitHub integration
- Vercel deployment
- CI/CD setup

### Business
- Stripe for payments
- Analytics setup

______________________________________________________________________

图像

不要将图像上传到存储库! 只使用外部URL。

何处寄宿

服务免费直接链接 |--------|-----------|---------------| | Imgur 是的,是的。 | 多云 25GB是的 | imgbb 是的,是的。 GitHub Issues是的

如何插入

![Описание скриншота](https://i.imgur.com/abc123.png)

关于Github Issues

  1. 在任何回购中打开任何问题
  2. 将图片拖放到注释字段
  3. 复制生成的URL(不要提交评论)
  4. 在您的内容中使用URL
![Demo](https://github.com/user-attachments/assets/abc123-def456.png)

建议

  • 格式: PNG用于截图,JPEG用于照片
  • 尺寸: 高达1MB,宽度800-1200px
  • Alt文本: 总是描述图片中的内容

______________________________________________________________________

FrontMatter格式

必填字段(所有类型)

---
title: "Название контента"
---

可选字段(所有类型)

description: "Описание до 200 символов"
tags:
  - tag1
  - tag2
author: "@username"  # Кавычки обязательны для @-никнеймов!
featured: false      # true = показывать в featured секции
重要的是: 符号 @ 在YAML中-特殊(Anchor)。如果作者从 @把它放在引号里: author: "@nickname"

特定于Agents

agent_name: "kebab-case-name"     # ID агента
agent_tools: "Read, Write, Bash"  # доступные инструменты
agent_model: "sonnet"             # sonnet | opus | haiku

特定于MCPS

install_command: "npx -y @scope/package"
connection_type: "stdio"          # stdio | sse | websocket
paid_api: false                   # требуется ли платный API

特定于bundles

category: "marketing"             # категория бандла
mcps: [notion, github]            # slug'и MCP серверов
skills: [copywriting]             # slug'и навыков
agents: [content-writer]          # slug'и агентов
prompts: [blog-outline]           # slug'и промптов

______________________________________________________________________

验证

GitHub Actions会自动检查:

  • 强制字段的存在 title
  • YAML语法的正确性
  • 文件名格式(Kebab case,拉丁语)

______________________________________________________________________

许可证

CC-BY-4.0 -您可以使用、修改和分发带有作者身份的文件。

______________________________________________________________________

通信

目录标签

目录标签

开源AI开发ClaudeAPI密钥本地部署技术文档MCP服务器

支持客户端

Claude

接入字段

传输方式(transport,传输协议)

未说明

鉴权方式(authType,认证方式)

api-key

工具数量(toolCount,工具数)

0

资源数量(resourceCount,资源数)

0

提示词数量(promptCount,提示词数)

0

权限和风险

未说明api-key部署方式未说明

接入前请确认传输方式、认证方式和部署位置,并根据实际工具能力限制访问范围。

安装前确认

不要直接授予不必要的文件、网络或账号权限;先核对安装命令和配置内容。

仍需确认:installCommand

来源信息

继续浏览同类 MCP