Open Issues Need Help
View All on GitHubAI Summary: Implement an interactive mode for the `greet-dev` CLI using a library like `inquirer`. This mode should prompt the user for their name, preferred theme, and potentially a quote category, enhancing user experience and reducing the need for command-line arguments.
CLI greeting for developers.
AI Summary: Implement a `--share` option for the `greet-dev` CLI tool. This option should allow users to generate either a text file or an image file containing their personalized greeting, suitable for sharing on social media. The implementation will involve using Node.js's `fs` module for text file creation and potentially a library like `canvas` for image generation.
CLI greeting for developers.
AI Summary: Enhance the CLI greeting tool's visual appeal by replacing the simple border with customizable ASCII art borders. This involves integrating a library like `figlet` or creating predefined ASCII art templates tied to the existing themes (dark, light, neon). The goal is to create visually appealing and unique output.
CLI greeting for developers.
AI Summary: Enhance the 'greet-dev' CLI tool by adding quote categorization. This involves restructuring the `quotes.json` file to include a 'category' field for each quote (e.g., motivation, debugging, productivity). The CLI should then be updated to accept a `-c` or `--category` flag, allowing users to filter and display quotes from a specific category.
CLI greeting for developers.