[object Object]

← back to Cli Printing Press

docs(cli): fix plugin install commands in README (#230)

ab7254b19c4ed2147f55cc9a7cd3a7bcbfa25614 · 2026-04-21 00:58:59 -0700 · Trevin Chow

The README told users to run `/install mvanhorn/cli-printing-press`,
but `/install` is not a Claude Code slash command. Replace with the
real `/plugin marketplace add` + `/plugin install` flow in both the
intro Get-it block and the Quick Start Install block.

Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

Files touched

Diff

commit ab7254b19c4ed2147f55cc9a7cd3a7bcbfa25614
Author: Trevin Chow <trevin@trevinchow.com>
Date:   Tue Apr 21 00:58:59 2026 -0700

    docs(cli): fix plugin install commands in README (#230)
    
    The README told users to run `/install mvanhorn/cli-printing-press`,
    but `/install` is not a Claude Code slash command. Replace with the
    real `/plugin marketplace add` + `/plugin install` flow in both the
    intro Get-it block and the Quick Start Install block.
    
    Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
---
 README.md | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 5d586f7d..e6a1006e 100644
--- a/README.md
+++ b/README.md
@@ -24,13 +24,15 @@ go install github.com/mvanhorn/cli-printing-press/cmd/printing-press@latest
 ```
 
 ```
-/install mvanhorn/cli-printing-press
+/plugin marketplace add mvanhorn/cli-printing-press
+/plugin install cli-printing-press@cli-printing-press
 ```
 
 Want to browse and run pre-built CLIs from the [Printing Press Library](https://github.com/mvanhorn/printing-press-library)? Install the library plugin too:
 
 ```
-/install mvanhorn/printing-press-library
+/plugin marketplace add mvanhorn/printing-press-library
+/plugin install printing-press-library@printing-press-library
 ```
 
 ## Why These CLIs Win
@@ -318,7 +320,8 @@ go install github.com/mvanhorn/cli-printing-press/cmd/printing-press@latest
 Then install the Claude Code plugin:
 
 ```
-/install mvanhorn/cli-printing-press
+/plugin marketplace add mvanhorn/cli-printing-press
+/plugin install cli-printing-press@cli-printing-press
 ```
 
 No repo checkout needed. The binary embeds its own catalog data and the plugin provides the `/printing-press` skill.
@@ -326,7 +329,8 @@ No repo checkout needed. The binary embeds its own catalog data and the plugin p
 To also browse and run pre-built CLIs from the [Printing Press Library](https://github.com/mvanhorn/printing-press-library):
 
 ```
-/install mvanhorn/printing-press-library
+/plugin marketplace add mvanhorn/printing-press-library
+/plugin install printing-press-library@printing-press-library
 ```
 
 ### Run It

← ac4d6aa2 fix(cli): support nested --select paths + suppress provenanc  ·  back to Cli Printing Press  ·  feat(cli): schema-version gate, doctor cache section, cache/ e116a27c →