From 49c72808ee8b468c2e5ee0365eb66feb13845750 Mon Sep 17 00:00:00 2001 From: NomenAK Date: Tue, 24 Jun 2025 21:31:34 +0200 Subject: [PATCH] Remove all references to user: and project: prefixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Removed /user: prefix from all command examples - Updated GitHub issue templates to remove /user: prefix - Commands now use simple /command format without prefixes This aligns with the project's decision to not use user:/project: prefixes for commands. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .claude/commands/analyze.md | 6 +++--- .claude/commands/build.md | 6 +++--- .claude/commands/deploy.md | 6 +++--- .claude/commands/design.md | 6 +++--- .github/ISSUE_TEMPLATE/feature_request.yml | 4 ++-- .github/ISSUE_TEMPLATE/question.yml | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.claude/commands/analyze.md b/.claude/commands/analyze.md index fa675c2..d4fb42c 100644 --- a/.claude/commands/analyze.md +++ b/.claude/commands/analyze.md @@ -57,9 +57,9 @@ Multi-dimensional analysis on code, arch, or problem in $ARGUMENTS. --no-pup: "Disable Puppeteer specifically" Examples: -- `/user:analyze --code --think` - Code review w/ context -- `/user:analyze --arch --think-hard` - Deep arch analysis -- `/user:analyze --security --ultrathink` - Comprehensive security audit +- `/analyze --code --think` - Code review w/ context +- `/analyze --arch --think-hard` - Deep arch analysis +- `/analyze --security --ultrathink` - Comprehensive security audit Analysis modes: diff --git a/.claude/commands/build.md b/.claude/commands/build.md index 227247f..e5ad097 100644 --- a/.claude/commands/build.md +++ b/.claude/commands/build.md @@ -57,9 +57,9 @@ Build project/feature based on req in $ARGUMENTS. --no-pup: "Disable Puppeteer specifically" Examples: -- `/user:build --react --magic` - React app w/ UI gen -- `/user:build --api --c7` - API w/ docs -- `/user:build --react --magic --pup` - Build & test UI +- `/build --react --magic` - React app w/ UI gen +- `/build --api --c7` - API w/ docs +- `/build --react --magic --pup` - Build & test UI Pre-build: Remove artifacts (dist/, build/, .next/) | Clean temp files & cache | Validate deps | Remove debug diff --git a/.claude/commands/deploy.md b/.claude/commands/deploy.md index 08e7b05..1d4cd34 100644 --- a/.claude/commands/deploy.md +++ b/.claude/commands/deploy.md @@ -62,9 +62,9 @@ Thinking flags (optional): - --ultrathink→complete deployment architecture & disaster recovery Examples: -- `/user:deploy --env staging --think` - Staging w/ coordination analysis -- `/user:deploy --env prod --think-hard` - Prod w/ comprehensive planning -- `/user:deploy --rollback --ultrathink` - Critical rollback w/ full impact analysis +- `/deploy --env staging --think` - Staging w/ coordination analysis +- `/deploy --env prod --think-hard` - Prod w/ comprehensive planning +- `/deploy --rollback --ultrathink` - Critical rollback w/ full impact analysis Pre-deploy cleanup: - Clean previous artifacts | Remove dev-only files (.env.local, debug cfgs) diff --git a/.claude/commands/design.md b/.claude/commands/design.md index b19bd56..ca3a325 100644 --- a/.claude/commands/design.md +++ b/.claude/commands/design.md @@ -64,9 +64,9 @@ Thinking flags (optional): - --ultrathink→complete system redesign or critical architectural decisions Examples: -- `/user:design --api --think` - REST API design w/ patterns -- `/user:design --ddd --think-hard` - Deep domain modeling -- `/user:design --api --ddd --ultrathink` - Complete system architecture +- `/design --api --think` - REST API design w/ patterns +- `/design --ddd --think-hard` - Deep domain modeling +- `/design --api --ddd --ultrathink` - Complete system architecture Design focus w/ flags: diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index aef0778..7a10498 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -44,7 +44,7 @@ body: I would like to see... Example usage: - /user:newcommand --flag + /newcommand --flag validations: required: true @@ -75,7 +75,7 @@ body: label: Examples description: Provide concrete examples of how this feature would work placeholder: | - Command: /user:example --new-flag + Command: /example --new-flag Output: Expected behavior... Persona usage: diff --git a/.github/ISSUE_TEMPLATE/question.yml b/.github/ISSUE_TEMPLATE/question.yml index ab0983e..dbc2aa4 100644 --- a/.github/ISSUE_TEMPLATE/question.yml +++ b/.github/ISSUE_TEMPLATE/question.yml @@ -55,7 +55,7 @@ body: description: Share relevant configuration or commands you're using placeholder: | ``` - /user:command --flags + /command --flags Persona: architect Claude Code version: latest ```