mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-17 17:56:46 +00:00
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:
parent
9c67a29587
commit
8f12b19a22
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user