From b362d4ac5ee0cd62fe7c76117e01bae4085020a6 Mon Sep 17 00:00:00 2001 From: Kieran Klaassen Date: Thu, 9 Oct 2025 13:53:16 -0700 Subject: [PATCH] Simplify README and integrate philosophy into plugin section MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Moved philosophy under Compounding engineering section - Added mermaid diagram showing the four-step cycle - Removed Support section and footer 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- README.md | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 33603a3..45cdc61 100644 --- a/README.md +++ b/README.md @@ -29,21 +29,26 @@ AI-powered development tools that get smarter with every use. Includes 21 specia - Documentation generation and maintenance - Security, performance, and architecture analysis -[View plugin details](./plugins/compounding-engineering/README.md) +**Philosophy:** -## Philosophy +Each unit of engineering work makes subsequent units of work easier—not harder. -This marketplace features plugins that embody **compounding engineering**: each unit of engineering work makes subsequent units of work easier—not harder. +```mermaid +graph LR + A[Plan
Plan it out
in detail] --> B[Delegate
Do the work] + B --> C[Assess
Make sure
it works] + C --> D[Codify
Record
learnings] + D --> A + + style A fill:#f9f,stroke:#333,stroke-width:2px + style B fill:#bbf,stroke:#333,stroke-width:2px + style C fill:#bfb,stroke:#333,stroke-width:2px + style D fill:#ffb,stroke:#333,stroke-width:2px +``` -Every plugin follows the four-step process: 1. **Plan** → Break down tasks with clear steps 2. **Delegate** → Execute with AI assistance 3. **Assess** → Test thoroughly and verify quality 4. **Codify** → Record learnings for next time -## Support - -- [Report issues](https://github.com/EveryInc/every-marketplace/issues) -- [View documentation](https://github.com/EveryInc/every-marketplace/wiki) - -Built with [Claude Code](https://claude.ai/code) by [Every Inc.](https://github.com/EveryInc) +[View plugin details](./plugins/compounding-engineering/README.md)