Meet Coco. A superintelligent agent framework powered by an advisory board of 389 world-class minds. Scale your AI assistant into a complete engineering department with 142 skills, 277 commands, and persistent state. Universal compatibility. Local privacy. Free and open source.
$ npx -y skills add coco-research/coco --agent claude-code
Run the curl in your terminal, the rest in Claude Code.
Repo: coco-research/coco
What's inside
CoCo Super Intelligence is the orchestration layer that turns Claude Code, Cursor, or Codex into an entire engineering department: routed expert panels that deliberate and decide, then 179 skills, 279 commands, and disk-persistent state that ship what they decided.
Open-core (MIT core ยท proprietary Super Intelligence) ยท installs in 90 seconds ยท 100% local ยท no telemetry
One developer writing single prompts? That was last year.
CoCo Super Intelligence convenes a cross-team board of 389 named experts to pressure-test your hardest calls โ then puts an orchestrated team of agents to work executing the verdict: parallel build waves, deterministic verification gates, and phase state that survives every
/clear.
git clone https://github.com/coco-research/coco.git && cd coco && bash install.sh
CoCo is not a new AI model, and it is not another agent harness. It doesn't run a model or an agent loop of its own. It's a portable layer of Markdown and YAML that installs into the agent harness you already use โ Claude Code, Cursor, Codex CLI, or any AGENTS.md-compatible tool โ and upgrades it with an expert advisory board, a skills library, persistent project memory, specialized subagents, and verification gates.
Your model, your tool, your keys, your machine. When you see "parallel subagent waves," those subagents are executed by your host harness's own agent machinery; CoCo supplies the orchestration structure that makes it all behave like a coordinated team. That is exactly why CoCo is vendor-neutral: it's the operating layer, not the engine.
Super Intelligence is CoCo's signature capability. It lets you summon custom, real-world expert panels directly inside your coding session to guide architectural, engineering, risk, finance, and business decisions โ each contribution attributed to a named expert, grounded in cited public sources.
/SI-Decide "Should we migrate our database to pgvector?"
/SI-AI-Decide "Which embedding model gives the best cost/performance?"
/SI-Eng-Pre-Mortem "Review our zero-downtime cache migration strategy"
/SI-GRC-Review "Check this customer onboarding flow for GDPR compliance"
389 expert personas, organized across 9 specialized departments:
| Department | Experts | Focus |
|---|---|---|
| Engineering | 70 | Software architecture, cloud systems, systems coding, compilers, infrastructure |
| AI | 59 | Neural-network research, LLM optimization, safety, alignment, vector databases |
| Product & Design | 56 | Design systems, UX, product strategy, growth loops |
| Finance | 47 | Valuation, corporate finance, macro modeling, fintech infrastructure |
| Trading | 46 | Quant analysis, market microstructure, derivatives pricing, crypto liquidity |
| Risk & Compliance (GRC) | 30 | GDPR, HIPAA, SOC 2, security auditing, international regulation |
| Strategy | 29 | Platform economics, business models, competitive analysis |
| Data & Analytics | 29 | Data engineering, pipeline optimization, predictive modeling |
| Sales / GTM / Marketing | 23 | Product-market fit, sales ops, growth marketing, enterprise GTM |
/SI-Decide or /SI-Tradeoff, routing across domains) plus 225 per-team commands (25 verbs ร 9 teams, such as /SI-AI-Decide or /SI-Eng-Pre-Mortem). These are generated locally at install time from the team registries โ no command files are transmitted or stored remotely.--debate deliberation. Panels can argue in reacting rounds before returning a verdict, surfacing named dissent instead of false consensus.The meta-orchestrator uses a staged algorithm so it never has to load the entire persona filesystem at runtime:
systems/superintelligence/registry.json) and scans only team descriptions and cell definitions, scoring relevance by keyword and domain overlap to select the top 1โ4 teams. If one team dominates, it delegates to that team's own orchestrator.0.40ยทdomain + 0.30ยทcell-coverage + 0.30ยทconflict-pairing), and applies a cross-team tension pass to pair opposing viewpoints (e.g. security vs. growth).The 389-persona roster was compiled with a systematic multi-tier workflow. Candidate generation was evaluated across local Qwen (via LM Studio), a hosted small model, and Gemini Flash, but Claude research agents proved the quality winner for resolving historical data and citing verifiable signal. Personas are checked by an advisory validation gate (validate_persona.py) that enforces five things: every required frontmatter field is present; at least 4 cited URLs resolve live (non-404); every public_stance carries an evidence_url, so no stance is uncited; at least 2 recent signals within 12 months (or 2 persistent signals for historical archetypes); and any pairs_well_with / productive_conflict_with slug refers to a real roster member. Two limits are worth stating plainly: the gate confirms that a stance is cited, not that a quotation is authentic, and home_team is only checked for presence, not validated against the list of real teams. A NEEDS-TOPUP verdict is advisory โ it does not currently affect which personas a council selects at runtime.
The board decides. The framework ships. Three pillars turn the verdict into merged, verified code.
/team:ship runs a fully coordinated build pipeline โ 6 development stages, 7 hard verification gates, and 2 architecture conformance gates. Specialized agents act in their domains (Research, Architecture, Plan, Review, Build, QA). Code must clear the Test Evidence Protocol (independent re-runs, strict coverage, skip-prevention) and land where the plan said it would before a pull request is opened.
AI chat context is fragile and wipes on /clear. CoCo persists phase state, decisions, and progress logs to disk across resets, with atomic git commits for every successful step โ so you can review history, roll back a bad design path, or resume a long-running migration from any checkpoint.
CoCo compiles its rules, templates, and agent definitions into pure Markdown and YAML frontmatter. Native IDE adapters inject the same library into Claude Code, Cursor, Codex CLI, or any AGENTS.md tool โ so your workflows follow you even if you switch AI editors.
Every test suite in existence shares one blind spot. Tests fail when behaviour breaks โ not when your architecture quietly dissolves. A component can be relocated, folded into another module, or deleted outright, and a green build will tell you nothing. Requirements pass. Coverage holds. The design you agreed to is gone.
/team now closes that gap in both directions, and both are enforced by Python scripts with real exit codes โ not by instructions an agent can narrate its way around.
A commit-pinned index at .arch/index.json maps every architectural component to the real directories and files that implement it. /team:verify gained failure mode (e): structural drift against that index.
Twelve validator checks run on every index. The central one is blunt and unfakeable: every claimed path must resolve on disk. A fabricated path exits non-zero and names itself.
/team:ship Stage 3 now declares its intended architecture to .team-ship/ARCH-PLAN.json โ where each component will live, and what is explicitly out of scope.
After the build, the built-as-declared gate checks it. A component you declared and then quietly dropped is a BLOCK. A file that lands in a path the plan ruled out of scope is a BLOCK. Neither appears in any test result.
Why this works. Path existence cannot be checked at planning time, because nothing is built yet. So the plan is written when the knowledge exists and tested when the evidence exists. Deferring the check rather than weakening it is exactly what makes a forward architecture declaration enforceable.
/team arch build # map this repository into a committed, commit-pinned index
/team arch drift # reconcile an existing index against the current tree
/team arch check # run the validator alone โ no model calls, no writes to the index
/team verify # now includes failure mode (e): architecture abandoned
/team ship # declares intended architecture, then proves the build matches
/team ship --no-arch # opt out entirely; every gate reports DISABLED, never a silent pass
The approval gate now shows you the intended architecture as a table before the build starts. That is the cheapest moment to disagree with it.
A gate that overstates its reach is worse than no gate, so these limits are stated in the artifacts themselves and are not marketing hedges.
HEAD is prose an agent follows, not a script. A stale index degrades every gate to UNVERIFIED rather than to a pass โ but instrumenting this is the next piece of work, and it is named as such.Requires only Python 3 and git. No new dependencies. Design adapted from lak7/devildev (Apache-2.0); no upstream code was copied โ see CREDITS.md.
A standard install equips your workspace with a lightweight core; full activation unlocks up to 896 total assets to orchestrate any software-engineering workflow.
CoCo ships 179 skills (68 core + 111 across bundles). These are not prompt snippets โ each is a full agent instruction set with state management, verification logic, and error handling. A representative slice by category:
ui-ux-pro-max (50 styles, 21 palettes, 50 font pairings, 9 stacks) ยท frontend-design ยท design-taste-frontend ยท redesign-existing-projects ยท axiom-liquid-glass (Apple Liquid Glass, WWDC 2025) ยท swiftui-liquid-glass ยท web-design-guidelines ยท tailwind-patterns (Tailwind v4) ยท vercel-react-best-practices ยท clone-website ยท c4-architecture ยท arb-review ยท expo-api-routes ยท ai-product ยท scroll-world (scroll-scrubbed, cut-free camera flythrough landing pages, generated end to end via Higgsfield).
brainstorming ยท writing-plans ยท executing-plans ยท subagent-driven-development ยท dispatching-parallel-agents ยท test-driven-development ยท systematic-debugging ยท requesting-code-review ยท receiving-code-review ยท verification-before-completion ยท finishing-a-development-branch ยท using-git-worktrees ยท code-verification (7 bug-vector audit) ยท generate-tests ยท api-design-principles ยท cli-anything ยท workflow-routing.
openai-agents ยท openai-api ยท openai-apps-mcp ยท openai-whisper ยท agent-lightning (Microsoft Agent Lightning, RL) ยท voice-ai ยท ai-marketing-videos.
prd-generator ยท prd-mastery ยท task-prd-creator ยท project-docs ยท pmstudio ยท nfr-tracker ยท stakeholder-comms ยท meeting-notes ยท change-log.
dr-plan (RTO/RPO) ยท irp (incident response) ยท recovery-plan.
coco-ads (launch videos via HyperFrames) ยท media-memory (multimodal embeddings) ยท doc-sync ยท ultra-think ยท browser-automation.
coco (conversational router) ยท coco-cli ยท coco-loop (compiles a plain-language goal into a confirmed charter, then runs a bounded, propose-only autonomous loop) ยท skill-creator ยท writing-skills ยท find-skills.
Core skills (66)
agent-lightning ยท ai-marketing-videos ยท ai-product ยท api-design-principles ยท arb-review ยท axiom-liquid-glass ยท brainstorming ยท browser-automation ยท c4-architecture ยท change-log ยท cli-anything ยท clone-website ยท coco ยท coco-ads ยท coco-cli ยท coco-loop ยท code-verification ยท design-taste-frontend ยท dispatching-parallel-agents ยท doc-sync ยท dr-plan ยท executing-plans ยท expo-api-routes ยท find-skills ยท finishing-a-development-branch ยท frontend-design ยท generate-tests ยท irp ยท media-memory ยท meeting-notes ยท nfr-tracker ยท openai-agents ยท openai-api ยท openai-apps-mcp ยท openai-whisper ยท pmstudio ยท prd-generator ยท prd-mastery ยท project-docs ยท receiving-code-review ยท recovery-plan ยท redesign-existing-projects ยท requesting-code-review ยท scroll-world ยท skill-creator ยท stakeholder-comms ยท subagent-driven-development ยท swiftui-liquid-glass ยท systematic-debugging ยท tailwind-patterns ยท task-prd-creator ยท test-driven-development ยท ui-ux-pro-max ยท ultra-think ยท using-git-worktrees ยท using-superpowers ยท vercel-react-best-practices ยท verification-before-completion ยท voice-ai ยท web-design-guidelines ยท workflow-routing ยท writing-plans ยท writing-skills
GSD bundle skills (68) โ the full gsd-* project-orchestration lifecycle: gsd-new-project, gsd-plan-phase, gsd-execute-phase, gsd-verify-work, gsd-autonomous, gsd-debug, gsd-ui-phase, gsd-secure-phase, gsd-workstreams, gsd-forensics, gsd-milestone-summary, gsd-map-codebase, gsd-profile-user, and 55 more (see systems/gsd/skills/).
Brain bundle skills (6) โ brain ยท brain-init ยท brain-rescan ยท brain-update ยท brain-export ยท brain-wiki.
Super Intelligence bundle (9) โ one orchestration skill per built team (ai, engineering, product-design, finance, trading, risk-compliance, strategy, data-analytics, gtm), which generate the 242 /SI-* commands at install.
Bundles are opt-in packages that extend the workspace with specialized databases, pipelines, and rosters. Enable them with --systems <name>.
An orchestration engine of 68 skills and 24 agents that manages the lifecycle of complex codebases. A disk-backed phase database records goals, decisions, milestones, and blockers; workstreams spin up isolated git checkouts to test refactors without polluting main; forensics performs post-mortem root-cause audits when a phase fails; and autonomous mode runs parallel waves of subagents through plan milestones end-to-end.
A local knowledge-graph engine of 6 skills connecting email, chat, code, and docs. A local SQLite store indexes code entities, business decisions, project terms, and stakeholder feedback; a wiki generator builds hyperlinked articles for every recorded entity; and mail sync links project email threads to related files.
A multi-agent product-team pipeline (/team:ship, /team:plan, /team:review, /team:verify, and more). It spawns specialized subagents โ Research, Architect, QA โ to execute changes, review diffs, and write tests, with deterministic gates that intercept merges to run lints, import audits, reference checks, and verification suites.
The 389-persona advisory board and its 242 generated /SI-* commands across 9 departments โ the hero capability described above.
/coco yolo
Bypass approval gates and let the team run unattended. Activates autonomous multi-stage execution โ pipelines advance phase to phase without manual confirmation. Combine with /gsd-autonomous and --systems gsd to run code migrations or test sweeps overnight. Revert to safety any time with /coco careful or /coco normal.
/SI-Decide --debate "Buy vs. build our vector store"
Routes a proportional expert panel, deliberates in reacting rounds, and returns an attributed verdict with named dissent.
/code-verification
Audits fresh code against 7 bug vectors, preventing broken references, imports, and mock leakage.
/clone-website https://stripe.com
Extracts colors, typography, spacing, shadows, and SVG assets from a live URL into a single-file responsive template.
/systematic-debugging
Drives a methodical root-cause isolation workflow, preserving hypotheses and findings across API limits.
/prd-generator
Produces a comprehensive PRD โ user stories, metrics, risks, architecture.
/coco-ads
Turns the project you just shipped into a short, shareable launch video, rendered locally via HyperFrames.
/coco
A central dashboard that routes plain-English asks โ "what's blocking?", "summarize files", "run tests" โ to the right sub-command.
/media-memory
A local embedding database (Gemini Embedding + ChromaDB) that indexes, searches, and associates diagrams, audio, and docs with your code.
# Point your host CLI's scheduler at any CoCo command:
/schedule run /team:review every Monday
/loop 5m /team:verify
CoCo ships no scheduler of its own. Where your host CLI provides scheduling or looping (such as Claude Code's
/scheduleand/loop), point it at any CoCo command to run reviews or watches unattended.
/email:summary
/email:today
Reads your active Outlook instance (Legacy AppleScript or New Outlook MIME cache) to fetch, search, thread, and draft replies to project mail.
/gsd-workstreams create feature-a
/gsd-new-workspace
Branch development workstreams within one repo โ isolated, sandboxed checkouts with separate project state.
bash adapters/codex/install.sh
Compiles all active rules, skills, and command definitions into a standard
AGENTS.mdrecognized by Aider, Cline, and Continue.
flowchart LR
U["You<br/>(Slash command, plain English)"] --> AI["Your AI Harness<br/>(Claude Code, Cursor, Codexโฆ)"]
AI --> A["IDE Adapter"]
A --> S["CoCo Assets<br/>skills ยท agents ยท commands ยท rules ยท personas"]
S -. Read at runtime .-> AI
AI --> Agents["Parallel Subagents<br/>(executed by your harness)"]
Agents --> AI
Standard 90-second setup
git clone https://github.com/coco-research/coco.git
cd coco
bash install.sh
The installer auto-detects your active IDE/CLI.
Via global npm package
# Authenticate the GitHub Packages registry
echo "@coco-research:registry=https://npm.pkg.github.com" >> ~/.npmrc
echo "//npm.pkg.github.com/:_authToken=YOUR_TOKEN" >> ~/.npmrc
# Install and launch
npm install -g cocosuperintelligence
coco
Activate orchestration bundles
# Enable GSD, Brain, and Team systems
bash install.sh --systems gsd,brain
# Enable the Super Intelligence board
bash install.sh --systems superintelligence
Manual adapter overrides
bash install.sh --adapter claude-code
bash install.sh --adapter cursor
bash install.sh --adapter codex
bash install.sh --adapter generic
One-line remote install
bash <(curl -fsSL https://raw.githubusercontent.com/coco-research/coco/main/bin/coco-bootstrap.sh)
Clones Coco to ~/.coco, then pauses and prints the commit hash, date, and message so you can verify it against the latest commit on main before it runs install.sh. Type y to proceed. Pass --yes or set COCO_BOOTSTRAP_YES=1 to skip the prompt for CI or scripted installs, and pass adapter/systems flags after --, e.g. -- --adapter cursor --systems gsd.
The install paths above are deliberately conservative: the remote bootstrap never runs code before you have confirmed the commit it cloned, install.sh only ever reads and symlinks files already inside the repository, the CI workflows that build and publish Coco pin their setup-node and setup-python Actions to commit SHAs rather than mutable tags, and nothing Coco does locally or in CI sends data anywhere. See SECURITY.md for the full policy.
CoCo tells you when a newer version is available โ it checks the GitHub repository at most once per day, prints a one-line banner, and sends no telemetry. Disable with COCO_NO_UPDATE_CHECK=1.
git clones
# print version + update status
bash scripts/check-update.sh
# apply an update
git pull --ff-only && bash install.sh
npm installs
# print version + check for updates
npx cocosuperintelligence version
# apply an update
npx cocosuperintelligence update
Releases are tracked in CHANGELOG.md and on the GitHub Releases page.
Core install ships 68 skills + 37 commands + 10 agents + 15 rules (130 active assets). The totals above reflect a full install with every bundle (bash install.sh --systems gsd,brain,cognee,hyperframes,superintelligence). Super Intelligence slash commands are generated locally at install time from the team registries โ no command files are transmitted or stored remotely.
CoCo is open-core: the core is MIT-licensed and contributions are welcome. The Super Intelligence System (systems/superintelligence/) is proprietary โ see systems/superintelligence/LICENSE.
CONTRIBUTING.md โ how to add a skill, command, agent, or adapter.SECURITY.md for responsible disclosure.CODE_OF_CONDUCT.md.Before opening a PR, validate locally โ CI runs a frontmatter linter, manifest validation, and an install-script syntax check.
CoCo Super Intelligence stands on the shoulders of excellent open-source work. Special thanks to:
systems/hyperframes/ (composition engine, CLI, animation, creative direction, registry, and the video-authoring suite).clone-website.--debate deliberation.coco-ads.design-taste-frontend and redesign-existing-projects.cli-anything.vercel-react-best-practices and web-design-guidelines.Full attributions โ including feature-level inspirations, bundled audio (ende.app, Kenney.nl), and licenses โ live in CREDITS.md. If something influenced CoCo and isn't listed, that's a bug: open an issue.
.arch/
ARCH-EVIDENCE.md
index.json
INDEX.md
pinned-commit
.claude-plugin.json
.github/
dependabot.yml
FUNDING.yml
ISSUE_TEMPLATE/
bug_report.md
feature_request.md
good_first_issue.md
PULL_REQUEST_TEMPLATE.md
workflows/
ci.yml
lint-frontmatter.yml
publish-npm.yml
publish-npmjs.yml
.gitignore
.nojekyll
adapters/
claude-code/
install.sh
manifest.json
README.md
codex/
install.sh
manifest.json
README.md
cursor/
install.sh
manifest.json
README.md
skills/
create-rule/
SKILL.md
create-skill/
SKILL.md
create-subagent/
SKILL.md
migrate-to-skills/
SKILL.md
update-cursor-settings/
SKILL.md
generic/
install.sh
manifest.json
README.md
vscode-continue/
install.sh
manifest.json
README.md
agents/
ai-engineer.md
code-reviewer.md
data-specialist.md
database-architect.md
INDEX.md
mcp-specialist.md
pm-advisor.md
README.md
refactoring-specialist.md
test-guardian.md
typescript-pro.md
ui-ux-designer.md
assets/
demo.gif
logo-light.png
logo-light.svg
logo-si-light.png
logo-si-light.svg
logo-si.png
logo-si.svg
logo.svg
og-image.png
og-image.svg
bin/
coco-bootstrap.sh
coco.js
CHANGELOG.md
CODE_OF_CONDUCT.md
commands/
design/
mermaid.md
email/
_index.md
read.md
reply.md
save.md
search.md
summary.md
thread.md
today.md
unread.md
eng/
anti-pattern.md
INDEX.md
pm/
sync-init.md
team/
_index.md
arch.md
architecture.md
communicate.md
develop.md
document.md
evidence.md
feedback.md
fix.md
plan.md
present.md
reanalyse.md
research.md
review.md
roles.md
scrape.md
ship.md
test.md
think.md
toolkit.md
verify.md
util/
architecture-review.md
create-architecture-documentation.md
refactor-code.md
ss.md
CONTRIBUTING.md
CREDITS.md
docs/
architecture.md
by-domain/
design.md
engineering.md
foundational.md
meta.md
ops.md
pm.md
distribution/
claude-code-marketplace.md
cursor-extension.md
npm-github-packages.md
getting-started.md
guides/
comparison.md
cookbook.md
migration.md
INDEX.md
install.md
recommended-plugins.md
TROUBLESHOOTING.md
examples/
agent-coordination-walkthrough.md
sample-prd-api.md
sample-prd.md
sample-project-memory.md
verification-failure-example.md
Formula/
coco.rb
install.sh
LICENSE
package.json
README.md
rules/
cursor-mdc/
agents-md-creation.mdc
code-quality.mdc
dependency-management.mdc
file-organization.mdc
git-conventions.mdc
parallel-agents.mdc
persistent-memory.mdc
prd-default-skill.mdc
prd-management.mdc
react-default-skills.mdc
security-rules.mdc
senior-architect.mdc
skill-router.mdc
testing-standards.mdc
verification-workflow.mdc
README.md
scripts/
build-index.py
check-update.sh
SECURITY.md
skills/
agent-lightning/
reference.md
SKILL.md
ai-marketing-videos/
SKILL.md
ai-product/
SKILL.md
api-design-principles/
assets/
api-design-checklist.md
rest-api-template.py
references/
graphql-schema-design.md
rest-best-practices.md
SKILL.md
arb-review/
references/
arb-format.md
SKILL.md
arch-index/
references/
analysis-taxonomy.md
arch-plan.md
component-rules.md
schema.md
tool-frugality.md
scripts/
arch_drift.py
fixtures/
bad-invariants.json
bad-paths.json
good.json
plan-bad-shape.json
plan-good.json
plan-unbuilt.json
repo_tree.py
run_fixtures.sh
validate_index.py
verify_arch_plan.py
SKILL.md
templates/
ARCH-EVIDENCE.md.template
INDEX.md.template
axiom-liquid-glass/
SKILL.md
brainstorming/
scripts/
frame-template.html
helper.js
server.js
start-server.sh
stop-server.sh
SKILL.md
spec-document-reviewer-prompt.md
visual-companion.md
browser-automation/
SKILL.md
c4-architecture/
references/
advanced-patterns.md
c4-syntax.md
common-mistakes.md
SKILL.md
change-log/
SKILL.md
cli-anything/
SKILL.md
clone-website/
SKILL.md
coco/
coco-ads/
assets/
music/
cues/
happy-beats-business-moves-vol-1-by-ende-dot-app.music-cues.json
happy-beats-business-moves-vol-1-by-ende-dot-app.music-cues.md
happy-beats-business-moves-vol-10-by-ende-dot-app.music-cues.json
happy-beats-business-moves-vol-10-by-ende-dot-app.music-cues.md
happy-beats-business-moves-vol-11-by-ende-dot-app.music-cues.json
happy-beats-business-moves-vol-11-by-ende-dot-app.music-cues.md
happy-beats-business-moves-vol-12-by-ende-dot-app.music-cues.json
happy-beats-business-moves-vol-12-by-ende-dot-app.music-cues.md
happy-beats-business-moves-vol-9-by-ende-dot-app.music-cues.json
happy-beats-business-moves-vol-9-by-ende-dot-app.music-cues.md
happy-beats-business-moves-vol-1-by-ende-dot-app.mp3
happy-beats-business-moves-vol-10-by-ende-dot-app.mp3
happy-beats-business-moves-vol-11-by-ende-dot-app.mp3
happy-beats-business-moves-vol-12-by-ende-dot-app.mp3
happy-beats-business-moves-vol-9-by-ende-dot-app.mp3
README.md
sfx/
casino/
card-fan-1.ogg
card-fan-2.ogg
card-place-1.ogg
card-place-2.ogg
card-place-3.ogg
card-place-4.ogg
card-shove-1.ogg
card-shove-2.ogg
card-shove-3.ogg
card-shove-4.ogg
card-shuffle.ogg
card-slide-1.ogg
card-slide-2.ogg
card-slide-3.ogg
card-slide-4.ogg
card-slide-5.ogg
card-slide-6.ogg
card-slide-7.ogg
card-slide-8.ogg
cards-pack-open-1.ogg
cards-pack-open-2.ogg
chip-lay-1.ogg
chip-lay-2.ogg
chip-lay-3.ogg
chips-collide-1.ogg
chips-collide-2.ogg
chips-collide-3.ogg
chips-collide-4.ogg
chips-handle-1.ogg
chips-handle-2.ogg
chips-handle-3.ogg
chips-handle-4.ogg
chips-handle-6.ogg
chips-stack-1.ogg
chips-stack-2.ogg
chips-stack-3.ogg
chips-stack-4.ogg
chips-stack-5.ogg
chips-stack-6.ogg
dice-grab-1.ogg
dice-grab-2.ogg
dice-shake-1.ogg
dice-shake-2.ogg
dice-shake-3.ogg
dice-throw-1.ogg
dice-throw-2.ogg
dice-throw-3.ogg
die-throw-1.ogg
die-throw-2.ogg
die-throw-3.ogg
die-throw-4.ogg
impact/
footstep_carpet_000.ogg
footstep_carpet_003.ogg
footstep_carpet_004.ogg
footstep_concrete_000.ogg
footstep_concrete_001.ogg
footstep_concrete_002.ogg
footstep_concrete_003.ogg
footstep_concrete_004.ogg
footstep_grass_000.ogg
footstep_grass_001.ogg
footstep_grass_002.ogg
footstep_grass_003.ogg
footstep_grass_004.ogg
footstep_snow_000.ogg
footstep_snow_001.ogg
footstep_snow_002.ogg
footstep_snow_003.ogg
footstep_snow_004.ogg
footstep_wood_000.ogg
footstep_wood_001.ogg
footstep_wood_002.ogg
footstep_wood_003.ogg
footstep_wood_004.ogg
impactBell_heavy_000.ogg
impactBell_heavy_003.ogg
impactBell_heavy_004.ogg
impactGeneric_light_000.ogg
impactGeneric_light_001.ogg
impactGeneric_light_002.ogg
impactGeneric_light_003.ogg
impactGeneric_light_004.ogg
impactGlass_heavy_002.ogg
impactGlass_light_001.ogg
impactGlass_light_002.ogg
impactGlass_light_003.ogg
impactGlass_medium_000.ogg
impactGlass_medium_002.ogg
impactGlass_medium_004.ogg
impactMetal_heavy_000.ogg
impactMetal_heavy_002.ogg
impactMetal_heavy_004.ogg
impactMetal_light_002.ogg
impactMetal_light_003.ogg
impactMetal_medium_000.ogg
impactMetal_medium_001.ogg
impactMetal_medium_002.ogg
impactMetal_medium_003.ogg
impactMetal_medium_004.ogg
impactMining_001.ogg
impactPlank_medium_000.ogg
impactPlank_medium_001.ogg
impactPlank_medium_002.ogg
impactPlank_medium_003.ogg
impactPlank_medium_004.ogg
impactPlate_heavy_000.ogg
impactPlate_heavy_001.ogg
impactPlate_heavy_002.ogg
impactPlate_heavy_003.ogg
impactPlate_heavy_004.ogg
impactPlate_light_000.ogg
impactPlate_light_001.ogg
impactPlate_light_002.ogg
impactPlate_light_003.ogg
impactPlate_light_004.ogg
impactPlate_medium_000.ogg
impactPlate_medium_001.ogg
impactPlate_medium_002.ogg
impactPlate_medium_003.ogg
impactPlate_medium_004.ogg
impactPunch_heavy_000.ogg
... 1600 moreShowing a partial view of a very large repo.
FAQ
coco is a Claude Code plugin with 174 hand-picked skills for development work, indexed on Flowy. Install it with the command on its page. It includes create-rule, create-skill, create-subagent. Its skills do not fire on their own yet. Request auto-invocation to have Flowy route them as you prompt. Free and open source.