From 877ea7aa6e929506060834581cd243e253bdd065 Mon Sep 17 00:00:00 2001 From: Laney Fraass Date: Mon, 11 May 2026 21:49:01 -0400 Subject: [PATCH] Add founder-os plugin --- README.md | 3 +- plugins/founder-os/.claude-plugin/plugin.json | 9 ++++++ plugins/founder-os/README.md | 31 +++++++++++++++++++ 3 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 plugins/founder-os/.claude-plugin/plugin.json create mode 100644 plugins/founder-os/README.md diff --git a/README.md b/README.md index e4de615..0ae9a01 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,7 @@ Install or disable them dynamically with the `/plugin` command — enabling you - [angelos-symbo](./plugins/angelos-symbo) - [ceo-quality-controller-agent](./plugins/ceo-quality-controller-agent) - [claude-desktop-extension](./plugins/claude-desktop-extension) +- [founder-os](./plugins/founder-os) - [lyra](./plugins/lyra) - [model-context-protocol-mcp-expert](./plugins/model-context-protocol-mcp-expert) - [problem-solver-specialist](./plugins/problem-solver-specialist) @@ -212,4 +213,4 @@ Example: ## Contributing Contributions are welcome! - You can add your favorite plugins, share best practices, or submit your own marketplace. \ No newline at end of file + You can add your favorite plugins, share best practices, or submit your own marketplace. diff --git a/plugins/founder-os/.claude-plugin/plugin.json b/plugins/founder-os/.claude-plugin/plugin.json new file mode 100644 index 0000000..6f8ebfb --- /dev/null +++ b/plugins/founder-os/.claude-plugin/plugin.json @@ -0,0 +1,9 @@ +{ + "name": "founder-os", + "version": "8.2.2", + "description": "Multi-agent primitives for Claude Code: consensus, debate, fanout research, skill building, and measured optimization.", + "author": { + "name": "Jacob Rhinehart", + "email": "rhinehart514@gmail.com" + } +} diff --git a/plugins/founder-os/README.md b/plugins/founder-os/README.md new file mode 100644 index 0000000..e51b3e2 --- /dev/null +++ b/plugins/founder-os/README.md @@ -0,0 +1,31 @@ +# founder-os + +Multi-agent primitives for Claude Code: consensus, debate, fanout research, skill building, and measured optimization. + +## Overview + +`founder-os` gives Claude Code reusable coordination patterns when one pass is not enough: + +- `/stochastic` polls N agents with the same prompt and aggregates consensus, divergences, and outliers. +- `/model-chat` runs a multi-agent debate room. +- `/fanout` runs parallel research and synthesizes findings. +- `/skillbuilder` helps create stronger Claude Code skills. +- `/autoresearch` runs measured hill-climb optimization loops. + +## Install + +```bash +claude plugin install rhinehart514/founder-os +``` + +Marketplace install: + +```bash +claude plugin marketplace add rhinehart514/founder-os +claude plugin install founder-os@founder-os +``` + +## Links + +- Repository: https://github.com/rhinehart514/founder-os +- npm: https://www.npmjs.com/package/@rhinehart514/founder-os