diff --git a/agents/exploration-agent.md b/agents/exploration-agent.md index 251ad1a..0741700 100644 --- a/agents/exploration-agent.md +++ b/agents/exploration-agent.md @@ -54,7 +54,7 @@ const repoMap = require(path.join(pluginRoot, 'lib/repo-map')); const map = repoMap.load(process.cwd()); if (!map) { - console.log('Repo map not found. Consider: /repo-map init'); + console.log('Repo map not found. Consider: /repo-intel init'); } else { console.log(`Repo map loaded: ${Object.keys(map.files).length} files, ${map.stats.totalSymbols} symbols`); } @@ -109,7 +109,7 @@ if (fs.existsSync(mapFile)) { console.log(`Repo intel loaded: hotspots=${repoIntel.hotspots?.length || 0}, bugspots=${repoIntel.bugspots?.length || 0}`); } else { - console.log('Repo intel not found. Consider: /git-map build'); + console.log('Repo intel not found. Consider: /repo-intel init'); } ``` diff --git a/agents/implementation-agent.md b/agents/implementation-agent.md index ee0975f..761e0c7 100644 --- a/agents/implementation-agent.md +++ b/agents/implementation-agent.md @@ -91,7 +91,7 @@ const map = repoMap.load(process.cwd()); if (map) { console.log(`Repo map loaded: ${map.stats.totalSymbols} symbols`); } else { - console.log('Repo map not found. Consider /repo-map init for faster lookups.'); + console.log('Repo map not found. Consider /repo-intel init for faster lookups.'); } ``` diff --git a/agents/planning-agent.md b/agents/planning-agent.md index 9847361..825d389 100644 --- a/agents/planning-agent.md +++ b/agents/planning-agent.md @@ -76,7 +76,7 @@ const repoMap = require(path.join(pluginRoot, 'lib/repo-map')); const map = repoMap.load(process.cwd()); if (!map) { - console.log('Repo map missing. Suggest /repo-map init if needed.'); + console.log('Repo map missing. Suggest /repo-intel init if needed.'); } ``` @@ -201,19 +201,19 @@ If the exploration output includes repo-intel data (hotspots, bugspots, coupling const { getPluginRoot } = require('./lib/cross-platform'); const path = require('path'); -const pluginRoot = getPluginRoot('git-map'); +const pluginRoot = getPluginRoot('repo-intel'); let repoIntel = null; if (pluginRoot) { try { - const queries = require(path.join(pluginRoot, 'lib/git-map/queries')); + const queries = require(path.join(pluginRoot, 'lib/repo-intel/queries')); repoIntel = queries; console.log('[OK] repo-intel available - augmenting risk assessment'); } catch { - console.log('[WARN] git-map plugin found but queries failed to load'); + console.log('[WARN] repo-intel plugin found but queries failed to load'); } } else { - console.log('[WARN] git-map plugin not installed - using heuristic risk assessment only'); + console.log('[WARN] repo-intel plugin not installed - using heuristic risk assessment only'); } ```