@caioimori/sinapse
v1.0.0
Published
Sinapse — 17 AI agent squads with 161 agents for Claude Code. One command install: npx sinapse install
Maintainers
Readme
What is Sinapse?
Sinapse is a collection of 17 specialized AI agent squads designed to work inside Claude Code. Each squad is a self-contained team of AI agents with distinct personas, deep knowledge bases, structured tasks, workflows, and quality checklists -- all focused on a specific professional domain.
Instead of prompting Claude from scratch every time, you activate a specialist agent that already knows the frameworks, best practices, and methodologies of its field. The agents collaborate within their squad through orchestrated workflows, and squads can hand off work to each other when a task crosses domains.
Key highlights:
- 149 agents with unique names, personas, and areas of expertise
- 1,196 structured tasks with inputs, outputs, checklists, and step-by-step execution
- 187 knowledge bases covering world-class frameworks and methodologies
- 80 workflows for end-to-end orchestrated processes
- Works standalone with any Claude Code project -- no extra framework required
- Framework agnostic -- works with any project that uses Claude Code
Quick Start
# 1. Clone the repository
git clone https://github.com/caio-imori/sinapse.git
# 2. Link the CLI globally
cd sinapse
npm link
# 3. Go to any project and install
cd ~/my-project
sinapse installThat's it. Your project now has all 17 squads available via slash commands in Claude Code.
Available Squads
| Squad | Prefix | Agents | Tasks | Description |
|-------|--------|-------:|------:|-------------|
| Brand | /brand | 15 | 97 | Complete brand systems -- strategy, identity, equity, culture, design system, motion, sonic branding |
| Claude Mastery | /claude | 8 | 26 | Claude Code expertise -- hooks, MCP servers, subagents, skills, context engineering |
| Cloning | /cloning | 8 | 54 | Cognitive cloning pipeline -- extract mental models from real minds and generate AI agent squads |
| Commercial | /commercial | 10 | 85 | Revenue operations -- CRM, pipeline, funnel architecture, offer design, client success |
| Content | /content | 7 | 90 | Content ops -- signal detection, editorial planning, production at scale, platform adaptation |
| Copy | /copywriting | 12 | 81 | Persuasion-driven copy -- headlines, long-form, conversion, brand voice, behavioral psychology |
| Courses | /courses | 8 | 59 | Course creation -- video courses, written courses, mentoring presentations, workshops, launches |
| Creative Animations | /ca | 9 | 73 | Web animations -- CSS, Three.js, GLSL shaders, scroll-driven, particles, generative art |
| Cybersecurity | /cyber | 8 | 22 | Cybersecurity -- threat analysis, pentesting, SOC operations, incident response, compliance |
| Design | /design | 8 | 101 | UX/UI -- research, design systems, frontend engineering, accessibility, performance |
| Finance | /finance | 5 | 45 | Financial analysis -- profitability, pricing strategy, forecasting, unit economics |
| Growth | /growth | 7 | 77 | Growth engineering -- analytics, CRO, experimentation, SEO, attribution |
| Paid Media | /pm | 9 | 82 | Paid advertising -- Meta Ads, Google Ads, creative strategy, CRO, performance analytics |
| Product | /product | 7 | 75 | Product management -- discovery, delivery, analytics, operations, roadmapping |
| Research | /research | 7 | 72 | Strategic research -- deep research, audience intelligence, competitive analysis, trend forecasting |
| Storytelling | /narrative | 10 | 17 | Storytelling -- mythology, screenwriting, pitch, presentations, business narrative |
| Strategic Council | /council | 11 | 23 | Advisory board -- mental models and decision-making with Dalio, Munger, Naval, Thiel, Sinek, and more |
How It Works
Slash Commands
After installation, each squad's agents become available as slash commands in Claude Code:
/{prefix}:agents:{agent-id}Examples:
/ca:agents:ca-orchestrator # Activate Kinetic -- Creative Animations orchestrator
/brand:agents:brand-strategist # Activate Athena -- Brand Strategist
/research:agents:deep-researcher # Activate Sage -- Deep Research Scholar
/council:agents:charlie-munger # Consult Charlie Munger from the Strategic Council
/copywriting:agents:headline-specialist # Activate Hook -- Headline & Hook SpecialistSquad-Awareness Routing
When you install squads into a project, a squad-awareness.md rule is automatically generated inside .claude/rules/. This tells Claude Code which domains are covered by specialized squads, so it recommends the right agent instead of handling requests generically.
For example, if you ask about "brand positioning," Claude will suggest activating Athena from the Brand System squad rather than answering on its own.
Framework Agnostic
Sinapse works in any project that uses Claude Code -- no additional framework required. Just clone, install, and go.
Commands Reference
| Command | Description |
|---------|-------------|
| sinapse install | Install all squads into the current project (first-time setup) |
| sinapse update | Update squads and regenerate awareness rules and command files |
| sinapse list | List all available squads with agent and task counts |
| sinapse status | Check which squads are installed in the current project |
| sinapse pull | Pull latest updates from the repo and update the current project |
| sinapse help | Show help and usage information |
Squad Structure
Every squad follows a consistent directory layout:
squad-animations/
├── squad.yaml # Manifest -- agents, tasks, workflows, metadata
├── agents/ # Agent definitions with personas, roles, and task lists
│ ├── ca-orchestrator.md
│ ├── threejs-architect.md
│ ├── shader-artist.md
│ └── ...
├── tasks/ # Structured tasks with inputs, outputs, and checklists
│ ├── setup-threejs-scene.md
│ ├── create-custom-shader.md
│ └── ...
├── knowledge-base/ # Domain knowledge -- frameworks, references, techniques
│ ├── disney-12-principles-web.md
│ ├── shader-techniques-library.md
│ └── ...
├── workflows/ # Multi-step orchestrated processes
│ ├── prompt-to-animation-cycle.yaml
│ └── ...
├── checklists/ # Quality validation checklists
├── templates/ # Reusable document and output templates
└── preferences/ # Auto-learning preference logs per projectCreating Your Own Squad
You can extend Sinapse by creating your own:
- Create a directory named
squad-{your-name}/in the repo root - Add a
squad.yamlmanifest defining agents, tasks, workflows, and knowledge bases - Create the subdirectories:
agents/,tasks/,knowledge-base/,workflows/ - Write agent definitions as Markdown files with persona, role, principles, and task assignments
- Write task files with clear inputs, outputs, step-by-step instructions, and quality checklists
- Run
sinapse updatein your project to pick up the new squad
Use any existing squad as a reference -- squad-animations is a clean example to start from.
Requirements
- Claude Code -- Anthropic's CLI for Claude
- Node.js 18 or later
- Git
- Bash (Git Bash on Windows works perfectly)
