patrick-mades-dev-tools
Version:
A collection of development tools and utilities Made by Patrick Made for Patrick Made (but feel free to use it for your own projects)
24 lines (23 loc) • 716 B
JavaScript
;
/**
* AI Prompts Data
* This file contains all prompts available in the AI prompts library
*/
Object.defineProperty(exports, "__esModule", { value: true });
const prompts = [
{
id: 'refactor',
name: 'Code Refactoring',
category: 'Code Improvement',
description: 'Refactors code to be more modular, eliminate duplication, and improve clarity',
prompt: `Refactor the following code.
Split it into modular pieces if appropriate.
Eliminate code duplication.
Focus on readability and maintainability.
Simplify complex logic.
Preserve all functionality.
Explain the key improvements you made.`,
},
// Add more prompts here
];
exports.default = prompts;