synapse — synapse install synapse, EvolveSkill, bacoco, community, synapse install, ai agent skill, mcp server, agent automation, synapse automatic skill generator, cortex memory analysis, prd file analysis, AI agent skills

v1.0.0
GitHub

About this Skill

Perfect for Developer Agents needing automated skill generation and workflow streamlining. Synapse is an automatic skill generator that analyzes work patterns and creates new skills when patterns emerge, utilizing Cortex memory and PRD files.

Features

Performs unified analysis from multiple sources, including Cortex memory and PRD files
Reads .cortex_log.md and .cortex_status.json files to detect recurring patterns
Analyzes API calls and data to generate new skills automatically
Creates new skills when patterns emerge, streamlining developer workflow
Utilizes Cortex memory analysis to inform skill generation
Supports detection of recurring patterns in tasks and API calls

# Core Topics

bacoco bacoco
[0]
[0]
Updated: 3/12/2026

Quality Score

Top 5%
57
Excellent
Based on code quality & docs
Installation
SYS Universal Install (Auto-Detect)
> npx killer-skills add bacoco/EvolveSkill/synapse
Supports 18+ Platforms
Cursor
Windsurf
VS Code
Trae
Claude
OpenClaw
+12 more

Agent Capability Analysis

The synapse MCP Server by bacoco is an open-source community integration for Claude and other AI agents, enabling seamless task automation and capability expansion. Optimized for synapse install, synapse automatic skill generator, cortex memory analysis.

Ideal Agent Persona

Perfect for Developer Agents needing automated skill generation and workflow streamlining.

Core Value

Empowers agents to analyze Cortex memory, read PRD files, and detect recurring patterns to automatically create new skills, streamlining their workflow and leveraging unified analysis from multiple sources, including `.cortex_log.md` and `.cortex_status.json` files.

Capabilities Granted for synapse MCP Server

Automating skill generation
Analyzing Cortex memory for recurring patterns
Streamlining developer workflows by detecting API call patterns

! Prerequisites & Limits

  • Requires access to Cortex memory and PRD files
  • Limited to analyzing specific file formats (`.cortex_log.md` and `.cortex_status.json`)
Project
SKILL.md
6.4 KB
.cursorrules
1.2 KB
package.json
240 B
Ready
UTF-8

# Tags

[No tags]
SKILL.md
Readonly

Synapse - Automatic Skill Generator

Analyzes your work patterns and automatically generates the skills you need.

Synapse is the brain of the skill ecosystem. It watches Cortex memory, reads your PRD files, analyzes your tasks, and automatically creates new skills when patterns emerge.

What Synapse Does

Synapse performs unified analysis from multiple sources:

1. Cortex Memory Analysis

  • Reads .cortex_log.md and .cortex_status.json
  • Detects recurring patterns (API calls, data processing, errors, etc.)
  • Identifies patterns that appear ≥ threshold (default: 5 times)
  • Calculates priority based on frequency

2. PRD Analysis

  • Scans for PRD files (*PRD*.md, *REQUIREMENTS*.md, *ROADMAP*.md)
  • Extracts tasks and requirements
  • Classifies by domain (api, testing, deployment, etc.)
  • Counts tasks per domain to identify skill needs

3. Task Analysis

  • Reads TODO files and task lists
  • Parses checkboxes, numbered lists, bullets
  • Groups related tasks
  • Identifies skill opportunities

Automatic Skill Generation

Synapse runs automatically and generates skills without user intervention:

  • Periodically: Every 30 minutes via cron (optional)
  • On git commit: Via post-commit hook (optional)
  • When critical patterns detected: Immediate generation

Skills are auto-generated when:

  • Pattern appears ≥ threshold (default: 5 times)
  • Priority is high or critical
  • Skill doesn't already exist

How It Works

You work normally
        ↓
Cortex traces everything
        ↓
Synapse monitors automatically:
  - Cortex memory (patterns)
  - PRD files (requirements)
  - Task lists (TODO)
        ↓
Detects patterns >= threshold
        ↓
Auto-generates skills if priority >= high:
  - Creates .claude/skills/[skill-name]/
  - Generates SKILL.md with progressive disclosure
  - Creates scripts with Cortex API integration
  - Records in Cortex memory
        ↓
New skill ready immediately!
        ↓
Claude uses it automatically

No user intervention needed.

Priority Levels

Synapse assigns priorities based on frequency and task count:

  • 🔴 CRITICAL: Pattern appears 2+ times/day → Auto-generate immediately
  • 🟠 HIGH: Pattern appears 1+ times/day → Auto-generate
  • 🟡 MEDIUM: Pattern appears 3-7 times/week → Monitor
  • 🟢 LOW: Pattern appears <3 times/week → Monitor

Only HIGH and CRITICAL priorities trigger automatic generation.

Output

Synapse generates Synapse_RECOMMENDATIONS.md with prioritized skill recommendations:

markdown
1# Synapse Skill Recommendations 2 3## Summary 4- Total recommendations: 3 5- High priority: 2 6- Medium priority: 1 7 8## Recommended Skills 9 10### 1. 🔴 api-optimizer (CRITICAL) 11**Pattern:** api_call 12**Frequency:** 3.5 times/day (24 total in 7 days) 13**Reason:** Frequent API operations detected 14...

See OUTPUT_FORMAT.md for complete output specification.

Quick Start

Automatic Mode (Recommended)

Run auto-generator to analyze and generate skills automatically:

bash
1python .claude/skills/synapse/scripts/auto_skill_generator.py

Skills with HIGH or CRITICAL priority will be generated automatically.

Analysis Only

Generate recommendations without auto-creating skills:

bash
1python .claude/skills/synapse/scripts/synapse_analyzer.py

This creates Synapse_RECOMMENDATIONS.md for manual review.

Setup Monitoring

Add to crontab for automatic periodic checks:

bash
1# Every 30 minutes 2*/30 * * * * /path/to/.claude/skills/synapse/scripts/synapse_auto_watch.sh

Or use as git hook (see INSTALLATION.md).

Integration with Cortex

Synapse and Cortex work together seamlessly:

  1. Cortex traces your work and records events
  2. Synapse analyzes Cortex memory for patterns
  3. Synapse generates skills when patterns reach threshold
  4. New skills use Cortex API to record their own events
  5. Pattern detection improves as more skills contribute data

This creates a self-improving system where skills emerge from actual usage patterns.

Generated Skill Structure

Synapse creates skills following best practices:

generated-skill/
├── SKILL.md (with YAML frontmatter)
├── scripts/
│   └── main.py (with Cortex API integration)
└── references/ (if needed)

All generated skills:

  • ✅ Follow progressive disclosure principles
  • ✅ Include Cortex API integration
  • ✅ Have concise SKILL.md (<200 lines)
  • ✅ Record their own events for future pattern detection
  • ✅ Work with Claude Code, GPT, and Gemini

Multi-LLM Support

Synapse works with any CLI-based LLM:

  • Claude Code: Native integration
  • GPT/Codex: Reads Synapse_RECOMMENDATIONS.md
  • Gemini CLI: Reads Synapse_RECOMMENDATIONS.md

See MULTI_LLM.md for LLM-specific guides.

Advanced Features

  • Pattern merging: Combines Cortex + PRD patterns for higher priority
  • Duplicate detection: Never generates skills that already exist
  • Context preservation: Recommendations include example usage
  • Custom thresholds: Configure sensitivity via command-line args

See ADVANCED.md for detailed documentation.

Configuration

Create .synapse_config.json for custom settings:

json
1{ 2 "analysis": { 3 "threshold": 5, 4 "window_days": 7 5 }, 6 "sources": { 7 "cortex_memory": true, 8 "prd_files": true, 9 "task_lists": true 10 } 11}

See CONFIGURATION.md for all options.

References

Part of the Ecosystem

Cortex → Remembers everything Synapse → Analyzes and generates Generated skills → Solve specific problems Skills use Cortex → Pattern detection improves

Synapse makes the system intelligent and self-improving.


Synapse - The universal skill recommendation and generation engine

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is synapse?

Perfect for Developer Agents needing automated skill generation and workflow streamlining. Synapse is an automatic skill generator that analyzes work patterns and creates new skills when patterns emerge, utilizing Cortex memory and PRD files.

How do I install synapse?

Run the command: npx killer-skills add bacoco/EvolveSkill/synapse. It works with Cursor, Windsurf, VS Code, Claude Code, and 15+ other IDEs.

What are the use cases for synapse?

Key use cases include: Automating skill generation, Analyzing Cortex memory for recurring patterns, Streamlining developer workflows by detecting API call patterns.

Which IDEs are compatible with synapse?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for synapse?

Requires access to Cortex memory and PRD files. Limited to analyzing specific file formats (`.cortex_log.md` and `.cortex_status.json`).

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add bacoco/EvolveSkill/synapse. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use synapse immediately in the current project.

Related Skills

Looking for an alternative to synapse or building a community AI Agent? Explore these related open-source MCP Servers.

View All

widget-generator

Logo of f
f

widget-generator is an open-source AI agent skill for creating widget plugins that are injected into prompt feeds on prompts.chat. It supports two rendering modes: standard prompt widgets using default PromptCard styling and custom render widgets built as full React components.

149.6k
0
Design

linear

Logo of lobehub
lobehub

Linear is a workflow management system that enables multi-agent collaboration, effortless agent team design, and introduces agents as the unit of work interaction.

73.4k
0
Communication

testing

Logo of lobehub
lobehub

Testing is a process for verifying AI agent functionality using commands like bunx vitest run and optimizing workflows with targeted test runs.

73.3k
0
Communication

chat-sdk

Logo of lobehub
lobehub

chat-sdk is a unified TypeScript SDK for building chat bots across multiple platforms, providing a single interface for deploying bot logic.

73.0k
0
Communication