Labels: bug, good first issue, priority: critical
Description:
The Commands enum in src/main.rs declares Template twice (lines 84–85 and 91–93). Rust will reject duplicate enum variants and block all builds.
Proposed work:
Remove the duplicate Template variant and its doc comment.
Ensure match cli.command in main() has a single Template arm.
Acceptance criteria:
cargo build succeeds without enum duplicate errors.
starforge template --help works.
Files:
src/main.rs
Labels: bug, good first issue, priority: critical
Description:
The Commands enum in src/main.rs declares Template twice (lines 84–85 and 91–93). Rust will reject duplicate enum variants and block all builds.
Proposed work:
Remove the duplicate Template variant and its doc comment.
Ensure match cli.command in main() has a single Template arm.
Acceptance criteria:
cargo build succeeds without enum duplicate errors.
starforge template --help works.
Files:
src/main.rs