### Summary We need tests for `init` CLI and fix the command ### Problem When the version was updated to 2.0, the `init` CLI not only applied `optique` but also underwent code refactoring. However, this process introduced a problem in the code, preventing it from running. Since there are too many cases, it's inefficient for a human to check each one individually, so a test code is needed for this. This test code would consume too many resources to run during the deployment process. Therefore, tests are added assuming only the scenario where the user runs them directly on their local machine. ### Proposed Solution - Add test for `init` CLI - Fix `init` CLI ### Alternatives Considered _No response_ ### Scope / Dependencies - `packages/cli/src/init`