Add one-command installation option via Claude Plugins CLI#6
Merged
kieranklaassen merged 1 commit intoEveryInc:mainfrom Oct 15, 2025
Merged
Add one-command installation option via Claude Plugins CLI#6kieranklaassen merged 1 commit intoEveryInc:mainfrom
kieranklaassen merged 1 commit intoEveryInc:mainfrom
Conversation
Adds alternative installation method that combines marketplace addition and plugin installation into a single npx command for improved UX.
Collaborator
|
Thanks! |
6 tasks
armstrongl
added a commit
to nuggylib/compound-engineering-plugin
that referenced
this pull request
Apr 14, 2026
…-plan tracking Add the implementation plan for idea EveryInc#20 (Carrying Cost Budgeting) which introduces a `bun run skill:stats` command that ranks all skills and agents by carrying cost (`file_size x estimated_tool_calls`) instead of raw file size. The plan was refined through three parallel review passes (coherence, feasibility, scope) that applied 14 auto-fixes: - Collapsed two-file architecture to a single self-contained script - Broadened tool detection from verb+tool patterns (near-zero recall on real content) to capitalized tool names at word boundaries - Replaced loop scope-based multiplication with additive weights - Added `disable-model-invocation` frontmatter filter for tutorial skills - Clarified sort key as single `system_cost` metric (not two competing metrics) - Documented `@`-expansion undercount as a known limitation The meta-plan tracking table is updated: idea EveryInc#20 brainstorm and plan columns both marked done. Next in the roadmap: S4 (brainstorm ideas EveryInc#9, EveryInc#6, EveryInc#5, EveryInc#10 in parallel).
4 tasks
armstrongl
added a commit
to nuggylib/compound-engineering-plugin
that referenced
this pull request
Apr 21, 2026
…-plan tracking Add the implementation plan for idea EveryInc#20 (Carrying Cost Budgeting) which introduces a `bun run skill:stats` command that ranks all skills and agents by carrying cost (`file_size x estimated_tool_calls`) instead of raw file size. The plan was refined through three parallel review passes (coherence, feasibility, scope) that applied 14 auto-fixes: - Collapsed two-file architecture to a single self-contained script - Broadened tool detection from verb+tool patterns (near-zero recall on real content) to capitalized tool names at word boundaries - Replaced loop scope-based multiplication with additive weights - Added `disable-model-invocation` frontmatter filter for tutorial skills - Clarified sort key as single `system_cost` metric (not two competing metrics) - Documented `@`-expansion undercount as a known limitation The meta-plan tracking table is updated: idea EveryInc#20 brainstorm and plan columns both marked done. Next in the roadmap: S4 (brainstorm ideas EveryInc#9, EveryInc#6, EveryInc#5, EveryInc#10 in parallel).
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.
Changes
Rationale
The standard Claude Code workflow requires users to:
/plugin marketplace add https://github.com/EveryInc/every-marketplace/plugin install compounding-engineeringThis CLI tool automates both steps:
Benefits:
Notes