Fix SuperClaude command usage documentation inconsistencies (#268)

* docs: fix usage examples for core development commands

Update usage examples in analyze, build, implement, and improve commands
to include all available flags documented in Arguments sections:

- analyze.md: Add --format text|json|report flag
- build.md: Add --verbose flag
- implement.md: Add --iterative, --with-tests, --documentation flags
- improve.md: Add --preview flag

Ensures consistency between usage examples and documented arguments.

* docs: fix usage examples for maintenance commands

Update usage examples in cleanup and test commands to include
all available flags documented in Arguments sections:

- cleanup.md: Add --dry-run flag for safe preview mode
- test.md: Add --fix flag for automatic test correction

Maintains consistency between usage examples and documented arguments.

* docs: fix workflow command usage example with comprehensive flags

Update workflow command usage example to include all available flags:

Add missing flags: --magic, --all-mcp, --estimate, --dependencies,
--risks, --parallel, --milestones to match comprehensive Arguments
section documentation.

Ensures users can see complete workflow orchestration capabilities
in usage example.
This commit is contained in:
reon nishimura 2025-08-15 03:04:43 +09:00 committed by GitHub
parent 9c67a29587
commit 8f12b19a22
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 7 additions and 7 deletions

View File

@ -10,7 +10,7 @@ Execute comprehensive code analysis across quality, security, performance, and a
## Usage
```
/sc:analyze [target] [--focus quality|security|performance|architecture] [--depth quick|deep]
/sc:analyze [target] [--focus quality|security|performance|architecture] [--depth quick|deep] [--format text|json|report]
```
## Arguments

View File

@ -10,7 +10,7 @@ Build, compile, and package projects with comprehensive error handling and optim
## Usage
```
/sc:build [target] [--type dev|prod|test] [--clean] [--optimize]
/sc:build [target] [--type dev|prod|test] [--clean] [--optimize] [--verbose]
```
## Arguments

View File

@ -10,7 +10,7 @@ Systematically clean up code, remove dead code, optimize imports, and improve pr
## Usage
```
/sc:cleanup [target] [--type code|imports|files|all] [--safe|--aggressive]
/sc:cleanup [target] [--type code|imports|files|all] [--safe|--aggressive] [--dry-run]
```
## Arguments

View File

@ -10,7 +10,7 @@ Implement features, components, and code functionality with intelligent expert a
## Usage
```
/sc:implement [feature-description] [--type component|api|service|feature] [--framework react|vue|express|etc] [--safe]
/sc:implement [feature-description] [--type component|api|service|feature] [--framework react|vue|express|etc] [--safe] [--iterative] [--with-tests] [--documentation]
```
## Arguments

View File

@ -10,7 +10,7 @@ Apply systematic improvements to code quality, performance, maintainability, and
## Usage
```
/sc:improve [target] [--type quality|performance|maintainability|style] [--safe]
/sc:improve [target] [--type quality|performance|maintainability|style] [--safe] [--preview]
```
## Arguments

View File

@ -10,7 +10,7 @@ Execute tests, generate comprehensive test reports, and maintain test coverage s
## Usage
```
/sc:test [target] [--type unit|integration|e2e|all] [--coverage] [--watch]
/sc:test [target] [--type unit|integration|e2e|all] [--coverage] [--watch] [--fix]
```
## Arguments

View File

@ -15,7 +15,7 @@ Analyze Product Requirements Documents (PRDs) and feature specifications to gene
## Usage
```
/sc:workflow [prd-file|feature-description] [--persona expert] [--c7] [--sequential] [--strategy systematic|agile|mvp] [--output roadmap|tasks|detailed]
/sc:workflow [prd-file|feature-description] [--persona expert] [--c7] [--sequential] [--magic] [--all-mcp] [--strategy systematic|agile|mvp] [--output roadmap|tasks|detailed] [--estimate] [--dependencies] [--risks] [--parallel] [--milestones]
```
## Arguments