@papyruslabsai/seshat-mcp 0.18.0 → 0.19.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.
- package/dist/index.js +12 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -290,6 +290,18 @@ const TOOLS = [
|
|
|
290
290
|
},
|
|
291
291
|
annotations: READ_ONLY_OPEN,
|
|
292
292
|
},
|
|
293
|
+
{
|
|
294
|
+
name: 'get_co_change_clusters',
|
|
295
|
+
title: 'Get Co-Change Clusters',
|
|
296
|
+
description: 'The codebase\'s hidden modules: groups of symbols that historically change together (≥3 shared commits, sweep commits excluded), computed from real commit history. Clusters that span multiple directories reveal coupling the file tree doesn\'t show. Call it when planning a change or splitting work across agents — touching one member of a cluster usually means touching the rest, even when no static dependency connects them. Correlation evidence, honestly framed; complements get_blast_radius (static reach) with empirical reach.',
|
|
297
|
+
inputSchema: {
|
|
298
|
+
type: 'object',
|
|
299
|
+
properties: {
|
|
300
|
+
project: projectParam,
|
|
301
|
+
},
|
|
302
|
+
},
|
|
303
|
+
annotations: READ_ONLY_OPEN,
|
|
304
|
+
},
|
|
293
305
|
{
|
|
294
306
|
name: 'list_modules',
|
|
295
307
|
title: 'List Modules',
|
package/package.json
CHANGED