From 34bb4e5971d03ec980077ff45e03671683afdc29 Mon Sep 17 00:00:00 2001 From: Kjell Tore Guttormsen Date: Wed, 8 Apr 2026 15:10:24 +0200 Subject: [PATCH] docs: standardize installation instructions across all plugins All 6 plugin READMEs now use identical installation section: marketplace-first approach with /plugin browsing, then direct settings.json as alternative. Replaces inconsistent mix of git clone, plugin add, and JSON-only instructions. Co-Authored-By: Claude Opus 4.6 --- plugins/ai-psychosis/README.md | 16 +++++++++++-- plugins/linkedin-thought-leadership/README.md | 6 +++-- plugins/llm-security/README.md | 15 +++++++----- plugins/ms-ai-architect/README.md | 4 +++- plugins/okr/README.md | 8 ++++++- plugins/ultraplan-local/README.md | 24 +++++++------------ 6 files changed, 45 insertions(+), 28 deletions(-) diff --git a/plugins/ai-psychosis/README.md b/plugins/ai-psychosis/README.md index 05f13eb..664868e 100644 --- a/plugins/ai-psychosis/README.md +++ b/plugins/ai-psychosis/README.md @@ -160,10 +160,22 @@ mode). Layer 2 reinforces Layer 1 with data-driven alerts. ## Quick start -### Install +### Installation +Add the marketplace and browse plugins with `/plugin`: + +```bash +claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git ``` -/plugin install path:/path/to/ai-psychosis + +Or enable directly in `~/.claude/settings.json`: + +```json +{ + "enabledPlugins": { + "ai-psychosis@ktg-plugin-marketplace": true + } +} ``` Layer 1 and Layer 2 are active immediately. No configuration needed. diff --git a/plugins/linkedin-thought-leadership/README.md b/plugins/linkedin-thought-leadership/README.md index 35393c6..d862f23 100644 --- a/plugins/linkedin-thought-leadership/README.md +++ b/plugins/linkedin-thought-leadership/README.md @@ -68,11 +68,13 @@ Key capabilities: ### Installation +Add the marketplace and browse plugins with `/plugin`: + ```bash -claude plugin add ktg-plugin-marketplace/linkedin-thought-leadership +claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git ``` -Or add to your `~/.claude/settings.json`: +Or enable directly in `~/.claude/settings.json`: ```json { diff --git a/plugins/llm-security/README.md b/plugins/llm-security/README.md index addfc1e..3c61117 100644 --- a/plugins/llm-security/README.md +++ b/plugins/llm-security/README.md @@ -100,17 +100,20 @@ A human reviewing the plugin's README and SKILL.md would likely miss most of the ### Installation -Clone from Forgejo into your Claude Code plugins directory: +Add the marketplace and browse plugins with `/plugin`: ```bash -git clone https://git.fromaitochitta.com/open/claude-code-llm-security.git \ - ~/.claude/plugins/claude-code-llm-security +claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git ``` -Or if you have the plugin marketplace: +Or enable directly in `~/.claude/settings.json`: -```bash -claude plugin add plugin-marketplace/llm-security +```json +{ + "enabledPlugins": { + "llm-security@ktg-plugin-marketplace": true + } +} ``` > [!NOTE] diff --git a/plugins/ms-ai-architect/README.md b/plugins/ms-ai-architect/README.md index de75ca7..e51c2d4 100644 --- a/plugins/ms-ai-architect/README.md +++ b/plugins/ms-ai-architect/README.md @@ -64,11 +64,13 @@ Key capabilities: ### Installation +Add the marketplace and browse plugins with `/plugin`: + ```bash claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git ``` -Or add to your `~/.claude/settings.json`: +Or enable directly in `~/.claude/settings.json`: ```json { diff --git a/plugins/okr/README.md b/plugins/okr/README.md index e5f83b7..005353a 100644 --- a/plugins/okr/README.md +++ b/plugins/okr/README.md @@ -60,7 +60,13 @@ This plugin transforms Claude Code into a specialized OKR advisor that understan ### Installation -Add to your Claude Code plugin configuration: +Add the marketplace and browse plugins with `/plugin`: + +```bash +claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git +``` + +Or enable directly in `~/.claude/settings.json`: ```json { diff --git a/plugins/ultraplan-local/README.md b/plugins/ultraplan-local/README.md index 8feef99..c2e1d8f 100644 --- a/plugins/ultraplan-local/README.md +++ b/plugins/ultraplan-local/README.md @@ -19,8 +19,8 @@ No cloud dependency. No GitHub requirement. Works on **Mac, Linux, and Windows** ## Quick start ```bash -# Install -git clone https://git.fromaitochitta.com/open/ultraplan-local.git ~/plugins/ultraplan-local +# Install the marketplace, then browse and enable plugins with /plugin +claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git # Research a question /ultraresearch-local Should we migrate from Express to Fastify? @@ -362,27 +362,19 @@ If no API key is set, parallel sessions use your subscription and proceed withou ## Installation -### From source +Add the marketplace and browse plugins with `/plugin`: ```bash -git clone https://git.fromaitochitta.com/open/ultraplan-local.git ~/plugins/ultraplan-local +claude plugin marketplace add https://git.fromaitochitta.com/open/ktg-plugin-marketplace.git ``` -### Usage with Claude Code - -**One-time:** - -```bash -claude --plugin-dir ~/plugins/ultraplan-local -``` - -**Permanent** -- add to `~/.claude/settings.json`: +Or enable directly in `~/.claude/settings.json`: ```json { - "plugins": [ - "~/plugins/ultraplan-local" - ] + "enabledPlugins": { + "ultraplan-local@ktg-plugin-marketplace": true + } } ```