From 571454c48e6ddae56cb2ce918bdd63b43249c3b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Kutryj?= Date: Wed, 17 Jun 2026 12:29:01 +0200 Subject: [PATCH] docs: list fix-flaky skill + fix discover skills tip - README bundled-skills list was missing `fix-flaky`. - `discover` advertised `sem-ai install-skills`, a command that does not exist (the string only ever lived as this tip). Point the tip at the real install paths instead: the Claude Code / Codex plugin and the cross-agent `npx skills` installer. Co-Authored-By: Claude Opus 4.8 --- README.md | 2 +- cmd/discover.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7542487..88c361f 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ codex plugin marketplace add semaphoreio/sem-ai codex plugin add sem-ai@semaphoreio ``` -The plugin drops every sem-ai skill (debug-pipeline, deploy, gha-to-semaphore, init, manage-infra, probe-agent-environment, project-health, sem-ai-bootstrap, semaphore-blocks, semaphore-ci, semaphore-promotions, semaphore-test-results, semaphore-toolbox, test-intelligence, testbox, watch-after-push) into your host. +The plugin drops every sem-ai skill (debug-pipeline, deploy, fix-flaky, gha-to-semaphore, init, manage-infra, probe-agent-environment, project-health, sem-ai-bootstrap, semaphore-blocks, semaphore-ci, semaphore-promotions, semaphore-test-results, semaphore-toolbox, test-intelligence, testbox, watch-after-push) into your host. Claude Code refreshes registered marketplaces at session start, picks up the new plugin version, and applies it automatically — there is no manifest flag to set for this. To force an immediate refresh: diff --git a/cmd/discover.go b/cmd/discover.go index 266fcf0..272acdd 100644 --- a/cmd/discover.go +++ b/cmd/discover.go @@ -19,7 +19,7 @@ var discoverCmd = &cobra.Command{ "tips": map[string]string{ "setup": "Run 'sem-ai connect ' to authenticate", "examples": "Run 'sem-ai --examples' for usage examples on any command", - "skills": "Run 'sem-ai install-skills' to install AI agent skill definitions", + "skills": "Install the Claude Code / Codex plugin ('/plugin marketplace add semaphoreio/sem-ai' then '/plugin install sem-ai@semaphoreio'), or 'npx skills add semaphoreio/sem-ai --all' for other agents", "debug": "For CI failures, start with 'sem-ai diagnose '", "format": "All commands output JSON. Use --format table for human display", },