@vfarcic/dot-ai 0.95.0 → 0.96.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -225,7 +225,7 @@ async function analyzeCurrentState(session, claudeIntegration, logger, requestId
225
225
  logger.debug('Analyzing current state with AI', { requestId, sessionId: session.sessionId });
226
226
  try {
227
227
  // Load investigation prompt template
228
- const promptPath = path.join(process.cwd(), 'prompts', 'remediate-investigation.md');
228
+ const promptPath = path.join(__dirname, '..', '..', 'prompts', 'remediate-investigation.md');
229
229
  const promptTemplate = fs.readFileSync(promptPath, 'utf8');
230
230
  // Discover cluster API resources for complete visibility - REQUIRED for quality remediation
231
231
  let clusterApiResources = '';
@@ -517,7 +517,7 @@ async function generateFinalAnalysis(session, logger, requestId) {
517
517
  }
518
518
  const claudeIntegration = new claude_1.ClaudeIntegration(claudeApiKey);
519
519
  // Load final analysis prompt template
520
- const promptPath = path.join(process.cwd(), 'prompts', 'remediate-final-analysis.md');
520
+ const promptPath = path.join(__dirname, '..', '..', 'prompts', 'remediate-final-analysis.md');
521
521
  const promptTemplate = fs.readFileSync(promptPath, 'utf8');
522
522
  // Prepare template variables - extract actual data source identifiers
523
523
  const dataSources = session.iterations.flatMap(iter => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vfarcic/dot-ai",
3
- "version": "0.95.0",
3
+ "version": "0.96.0",
4
4
  "description": "AI-powered development productivity platform that enhances software development workflows through intelligent automation and AI-driven assistance",
5
5
  "mcpName": "io.github.vfarcic/dot-ai",
6
6
  "main": "dist/index.js",