Add CLICP Manifesto: Why CLI Context Protocol is Superior to MCP#1
Merged
Add CLICP Manifesto: Why CLI Context Protocol is Superior to MCP#1
Conversation
- Explains why LLMs are naturally good with CLI interfaces - Highlights the advantages of using devbox environments - Demonstrates CLICP's simplicity vs MCP's complexity - Covers performance, security, and developer experience benefits - Addresses CG-18915
jayhack
approved these changes
Jul 5, 2025
Contributor
|
@codegen can you fix the failing checks?
|
The CI was failing because package.json specifies yarn@4.9.2 via packageManager field, but GitHub Actions was using the global Yarn 1.22.22. Added corepack enable step to use the correct Yarn version specified in package.json.
Contributor
Author
|
✅ Fixed the failing checks! The issue was that the CI workflow was trying to use Yarn 1.22.22 (the global version) but the project's I've updated the CI workflow to enable Corepack before installing dependencies, which will use the correct Yarn version specified in the package.json. The fix adds 💻 View my work • React 👍 or 👎 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds a comprehensive manifesto document (
manifesto.md) that explains why CLICP (Command Line Interface Context Protocol) is a superior approach compared to MCP (Model Context Protocol).Key Arguments Made
🧠 LLMs Are Natural CLI Experts
🏗️ Devbox Advantage
⚡ Zero Protocol Overhead
🌍 Universal Compatibility
🔧 Developer Experience
--helpand man pagesPerformance & Security Benefits
The manifesto argues that the best protocol is no protocol at all - just embrace the CLI interfaces that already work perfectly for AI model interaction.
Addresses: CG-18915
💻 View my work • About Codegen