From 1f092adbb13d47c342f30b1ee11a6c464dea4294 Mon Sep 17 00:00:00 2001 From: scotthavird Date: Thu, 9 Apr 2026 12:20:41 -0400 Subject: [PATCH] =?UTF-8?q?docs:=20improve=20README=20for=20discovery=20?= =?UTF-8?q?=E2=80=94=20opening=20hook,=20stars=20badge,=20path=20fix,=20se?= =?UTF-8?q?t-env=20clarity?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rewrite opening line from dry "Capture prompts and events..." to a problem-first hook that answers "why would I want this?" - Add GitHub stars badge alongside existing CI/License/Go badges - Fix ~/.claude/commands/ → ~/.claude/skills/ (wrong path was on line 21 in the "No Account" quick-start section; rest of README was already correct) - Clarify config env switching: show `config env use` as primary command, `config set-env` as the shorthand alias — previously both were shown ambiguously as alternatives --- README.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 2f64a8f..5d9fa21 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # PromptConduit CLI -Capture prompts and events from AI coding assistants. +Every great workflow you build in Claude Code disappears when the session ends. PromptConduit captures your AI coding sessions and turns repeated patterns into reusable slash commands — automatically, and without a platform account. [![CI](https://github.com/promptconduit/cli/actions/workflows/test.yml/badge.svg)](https://github.com/promptconduit/cli/actions/workflows/test.yml) +[![GitHub Stars](https://img.shields.io/github/stars/promptconduit/cli?style=social)](https://github.com/promptconduit/cli/stargazers) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![Go](https://img.shields.io/badge/go-1.21+-blue.svg)](https://go.dev/dl/) @@ -18,7 +19,7 @@ brew tap promptconduit/tap && brew install promptconduit promptconduit skills generate --local ``` -Skills are written directly to `~/.claude/commands/` and show up in Claude Code's `/` autocomplete immediately. Reads from Claude Code, OpenAI Codex CLI, and GitHub Copilot CLI — whichever you have installed. +Skills are written directly to `~/.claude/skills/` and show up in Claude Code's `/` autocomplete immediately. Reads from Claude Code, OpenAI Codex CLI, and GitHub Copilot CLI — whichever you have installed. [Jump to full local skills docs →](#local-skill-generation) @@ -295,14 +296,12 @@ promptconduit config env add prod \ ### Switching Environments ```bash -# Switch to local development (shortcut) -promptconduit config set-env local - -# Switch to production -promptconduit config set-env prod - -# Or use the full command +# Switch environments promptconduit config env use local +promptconduit config env use prod + +# Shorthand alias +promptconduit config set-env local # List all environments promptconduit config env list