From 131e0c0c6308664afea499f622c02425525e38a2 Mon Sep 17 00:00:00 2001 From: SuperCLI Dev Date: Thu, 13 Aug 2026 07:09:29 +0000 Subject: [PATCH] fix(#298): add install guidance note to bundled notion-cli plugin The bundled notion-cli plugin already had a detailed note in its install-guidance.json, but the manifest's install_guidance did not include it. This meant `sc plugins install` and `sc plugins doctor` showed an empty note for the plugin. Add the note to plugin.json so install and doctor output explain the binary rename step, alternative install methods (Homebrew, npm, GitHub Releases, Scoop), token storage, and JSON auto-detection. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- plugins/notion-cli/plugin.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/notion-cli/plugin.json b/plugins/notion-cli/plugin.json index 659b14f1e..349e30271 100644 --- a/plugins/notion-cli/plugin.json +++ b/plugins/notion-cli/plugin.json @@ -16,7 +16,8 @@ "Verify: notion --version", "Authenticate: echo 'ntn_xxxxx' | notion auth login --with-token", "supercli plugins install ./plugins/notion-cli --on-conflict replace --json" - ] + ], + "note": "Primary install is `go install github.com/4ier/notion-cli@latest`, which builds a binary named `notion-cli`. Link or rename it to `notion` before the `Verify` step. Also available via Homebrew (`brew install 4ier/tap/notion-cli`), npm (`npm install -g @4ier/notion-cli`), GitHub Releases (https://github.com/4ier/notion-cli/releases), or Scoop on Windows. Token stored in ~/.config/notion-cli/config.json (mode 0600). Auto-detects JSON output when piped to another command." }, "learn": { "file": "skills/quickstart/SKILL.md"