Remove all references to user: and project: prefixes

- 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 <noreply@anthropic.com>
This commit is contained in:
NomenAK
2025-06-24 21:31:34 +02:00
parent 9c3608a783
commit 49c72808ee
6 changed files with 15 additions and 15 deletions

View File

@@ -57,9 +57,9 @@ Multi-dimensional analysis on code, arch, or problem in $ARGUMENTS.
--no-pup: "Disable Puppeteer specifically" --no-pup: "Disable Puppeteer specifically"
Examples: Examples:
- `/user:analyze --code --think` - Code review w/ context - `/analyze --code --think` - Code review w/ context
- `/user:analyze --arch --think-hard` - Deep arch analysis - `/analyze --arch --think-hard` - Deep arch analysis
- `/user:analyze --security --ultrathink` - Comprehensive security audit - `/analyze --security --ultrathink` - Comprehensive security audit
Analysis modes: Analysis modes:

View File

@@ -57,9 +57,9 @@ Build project/feature based on req in $ARGUMENTS.
--no-pup: "Disable Puppeteer specifically" --no-pup: "Disable Puppeteer specifically"
Examples: Examples:
- `/user:build --react --magic` - React app w/ UI gen - `/build --react --magic` - React app w/ UI gen
- `/user:build --api --c7` - API w/ docs - `/build --api --c7` - API w/ docs
- `/user:build --react --magic --pup` - Build & test UI - `/build --react --magic --pup` - Build & test UI
Pre-build: Remove artifacts (dist/, build/, .next/) | Clean temp files & cache | Validate deps | Remove debug Pre-build: Remove artifacts (dist/, build/, .next/) | Clean temp files & cache | Validate deps | Remove debug

View File

@@ -62,9 +62,9 @@ Thinking flags (optional):
- --ultrathink→complete deployment architecture & disaster recovery - --ultrathink→complete deployment architecture & disaster recovery
Examples: Examples:
- `/user:deploy --env staging --think` - Staging w/ coordination analysis - `/deploy --env staging --think` - Staging w/ coordination analysis
- `/user:deploy --env prod --think-hard` - Prod w/ comprehensive planning - `/deploy --env prod --think-hard` - Prod w/ comprehensive planning
- `/user:deploy --rollback --ultrathink` - Critical rollback w/ full impact analysis - `/deploy --rollback --ultrathink` - Critical rollback w/ full impact analysis
Pre-deploy cleanup: Pre-deploy cleanup:
- Clean previous artifacts | Remove dev-only files (.env.local, debug cfgs) - Clean previous artifacts | Remove dev-only files (.env.local, debug cfgs)

View File

@@ -64,9 +64,9 @@ Thinking flags (optional):
- --ultrathink→complete system redesign or critical architectural decisions - --ultrathink→complete system redesign or critical architectural decisions
Examples: Examples:
- `/user:design --api --think` - REST API design w/ patterns - `/design --api --think` - REST API design w/ patterns
- `/user:design --ddd --think-hard` - Deep domain modeling - `/design --ddd --think-hard` - Deep domain modeling
- `/user:design --api --ddd --ultrathink` - Complete system architecture - `/design --api --ddd --ultrathink` - Complete system architecture
Design focus w/ flags: Design focus w/ flags:

View File

@@ -44,7 +44,7 @@ body:
I would like to see... I would like to see...
Example usage: Example usage:
/user:newcommand --flag /newcommand --flag
validations: validations:
required: true required: true
@@ -75,7 +75,7 @@ body:
label: Examples label: Examples
description: Provide concrete examples of how this feature would work description: Provide concrete examples of how this feature would work
placeholder: | placeholder: |
Command: /user:example --new-flag Command: /example --new-flag
Output: Expected behavior... Output: Expected behavior...
Persona usage: Persona usage:

View File

@@ -55,7 +55,7 @@ body:
description: Share relevant configuration or commands you're using description: Share relevant configuration or commands you're using
placeholder: | placeholder: |
``` ```
/user:command --flags /command --flags
Persona: architect Persona: architect
Claude Code version: latest Claude Code version: latest
``` ```