diff --git a/src/components/QuickstartSection.tsx b/src/components/QuickstartSection.tsx index 88d0a51..4a06fb2 100644 --- a/src/components/QuickstartSection.tsx +++ b/src/components/QuickstartSection.tsx @@ -21,14 +21,14 @@ const STACKS: Record< hint: 'Node.js 18+', lines: [ { comment: '# Install', command: 'npm install -g refactron' }, - { comment: '# Analyze your codebase', command: 'refactron analyze .' }, + { comment: '# Scan for legacy patterns', command: 'refactron analyze .' }, { - comment: '# Preview refactors', - command: 'refactron refactor . --preview', + comment: '# Preview the refactor — nothing is written', + command: 'refactron run --dry-run .', }, { - comment: '# Apply with verification', - command: 'refactron refactor . --verify', + comment: '# Apply — 3 gates, then atomic write', + command: 'refactron run --apply .', }, ], }, @@ -37,14 +37,14 @@ const STACKS: Record< hint: 'Python 3.8+', lines: [ { comment: '# Install', command: 'pip install refactron' }, - { comment: '# Analyze your codebase', command: 'refactron analyze .' }, + { comment: '# Scan for legacy patterns', command: 'refactron analyze .' }, { - comment: '# Preview refactors', - command: 'refactron refactor . --preview', + comment: '# Preview the refactor — nothing is written', + command: 'refactron run --dry-run .', }, { - comment: '# Apply with verification', - command: 'refactron refactor . --verify', + comment: '# Apply — 3 gates, then atomic write', + command: 'refactron run --apply .', }, ], }, @@ -89,7 +89,7 @@ const QuickstartSection: React.FC = () => {
-