From a2450d8da4dbbad89a28bd4cad2c2f9f2ed7ed71 Mon Sep 17 00:00:00 2001 From: Jonathan Flatt Date: Thu, 22 May 2025 13:09:01 -0500 Subject: [PATCH] docs: Fix CLI command examples to reference correct claude-webhook path MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update CLI command examples in CLAUDE.md to use ./cli/claude-webhook instead of ./claude-webhook now that the script has been moved to the cli/ directory. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- CLAUDE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index bf0a902..708fe35 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -75,10 +75,10 @@ Use the demo repository for testing auto-tagging and webhook functionality: - Setup repository labels: `GITHUB_TOKEN=your_token node scripts/utils/setup-repository-labels.js owner/repo` ### CLI Commands -- Basic usage: `./claude-webhook myrepo "Your command for Claude"` -- With explicit owner: `./claude-webhook owner/repo "Your command for Claude"` -- Pull request review: `./claude-webhook myrepo "Review this PR" -p -b feature-branch` -- Specific issue: `./claude-webhook myrepo "Fix issue" -i 42` +- Basic usage: `./cli/claude-webhook myrepo "Your command for Claude"` +- With explicit owner: `./cli/claude-webhook owner/repo "Your command for Claude"` +- Pull request review: `./cli/claude-webhook myrepo "Review this PR" -p -b feature-branch` +- Specific issue: `./cli/claude-webhook myrepo "Fix issue" -i 42` - Advanced usage: `node cli/webhook-cli.js --repo myrepo --command "Your command" --verbose` - Secure mode: `node cli/webhook-cli-secure.js` (uses AWS profile authentication)