UNPKG

giga-code

Version:

A personal AI CLI assistant powered by Grok for local development.

59 lines 2.45 kB
"use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; var desc = Object.getOwnPropertyDescriptor(m, k); if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { desc = { enumerable: true, get: function() { return m[k]; } }; } Object.defineProperty(o, k2, desc); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[k2] = m[k]; })); var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { Object.defineProperty(o, "default", { enumerable: true, value: v }); }) : function(o, v) { o["default"] = v; }); var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); __setModuleDefault(result, mod); return result; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.loadCustomInstructions = void 0; const fs = __importStar(require("fs")); const path = __importStar(require("path")); const prompts_1 = require("./prompts"); function loadCustomInstructions(workingDirectory = process.cwd()) { try { const instructionsPath = path.join(workingDirectory, '.giga', 'GIGA.md'); let customInstructions = ''; // Load global custom prompts first const globalPrompts = (0, prompts_1.getPromptsAsSystemPrompt)(); if (globalPrompts) { customInstructions += globalPrompts; } // Then load project-specific GIGA.md if it exists if (fs.existsSync(instructionsPath)) { const projectInstructions = fs.readFileSync(instructionsPath, 'utf-8'); if (projectInstructions.trim()) { if (customInstructions) { customInstructions += '\n\n' + projectInstructions.trim(); } else { customInstructions = projectInstructions.trim(); } } } return customInstructions || null; } catch (error) { console.warn('Failed to load custom instructions:', error); return null; } } exports.loadCustomInstructions = loadCustomInstructions; //# sourceMappingURL=custom-instructions.js.map