This repo includes all skills that integrate Byterover MCP server with other tools.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"byterover-skills": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A collection of specialized Claude Code skills for enhanced knowledge management with Byterover MCP Server.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Byterover Skills and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A collection of specialized Claude Code skills for enhanced knowledge management with Byterover MCP Server.
Byterover is an AI memory system that enables persistent knowledge storage and retrieval across conversations. It allows AI agents to:
graph LR
A[AI Conversations] -->|Store| B[Byterover Memory]
B -->|Retrieve| C[Future Conversations]
C -->|Store| B
Skills extend Byterover's core capabilities with specialized workflows:
graph TB
A[Byterover Core] --> B[byterover-notion-sync]
A --> C[Future Skills]
B --> D["Memories ↔ Notion"]
C --> E[Meetings, GitHub, Code]
Clone and copy skills to your Claude Code directory:
# Clone repository
git clone https://github.com/RyanNg1403/byterover-skills.git
cd byterover-skills
# Copy individual skill
cp -r byterover-notion-sync ~/.claude/skills/
# Or copy all skills
cp -r */ ~/.claude/skills/
Start Claude Code and ask: "What Byterover skills are available?"
Bidirectional knowledge synchronization between Byterover memories and Notion documentation.
Core Capabilities:
Architecture:
graph TB
subgraph mem2notion["Memories → Notion"]
A[Byterover Memories] -->|Multi-query| B[Aggregate Context]
B -->|Format Selection| C{Document Type}
C -->|Timeline-based| D[Implementation Report]
C -->|Requirements| E[PRD]
C -->|Usage Guide| F[Feature Docs]
C -->|System Design| G[Architecture Docs]
D --> H[Notion Page]
E --> H
F --> H
G --> H
end
subgraph notion2mem["Notion → Memories"]
I[Notion Page] -->|Fetch| J[Analyze Structure]
J -->|Chunk| K[Logical Sections]
K -->|Format| L[Memory Templates]
L -->|Store| M[Byterover Memories]
end
Example Use Cases:
"Create an implementation report on the auth system from July 10-15"
"Turn our notification discussions into a PRD"
"Document the microservices architecture"
"Import API documentation from Notion into memories"
Documentation:
Workflow Overview:
sequenceDiagram
participant U as User
participant C as Claude
participant B as Byterover
participant N as Notion
Note over U,N: Memories to Notion
U->>C: Create implementation report
C->>B: Multi-query memories
B-->>C: Aggregate results
C->>C: Select format and structure
C->>N: Create Notion page
N-->>U: Return page link
Note over U,N: Notion to Memories
U->>C: Import Not
... [View full README on GitHub](https://github.com/RyanNg1403/byterover-skills#readme)