rlm-analyzer 1.5.0 → 1.5.1
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/cli.js +2 -2
- package/dist/mcp-server.js +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -527,7 +527,7 @@ function generateMarkdownReport(command, target, directory, result, duration, pr
|
|
|
527
527
|
}
|
|
528
528
|
md += '\n';
|
|
529
529
|
}
|
|
530
|
-
md += `---\n*Analysis performed with RLM Analyzer v1.
|
|
530
|
+
md += `---\n*Analysis performed with RLM Analyzer v1.5.1 using ${provider} provider*\n`;
|
|
531
531
|
return md;
|
|
532
532
|
}
|
|
533
533
|
/**
|
|
@@ -581,7 +581,7 @@ export async function runCli() {
|
|
|
581
581
|
const { command, target, options } = parseArgs(args);
|
|
582
582
|
// Show version
|
|
583
583
|
if (options.version) {
|
|
584
|
-
console.log('rlm-analyzer v1.
|
|
584
|
+
console.log('rlm-analyzer v1.5.1');
|
|
585
585
|
process.exit(0);
|
|
586
586
|
}
|
|
587
587
|
// Show help
|
package/dist/mcp-server.js
CHANGED
|
@@ -220,7 +220,7 @@ const TOOLS = [
|
|
|
220
220
|
},
|
|
221
221
|
];
|
|
222
222
|
// Create server
|
|
223
|
-
const server = new Server({ name: 'rlm-analyzer', version: '1.
|
|
223
|
+
const server = new Server({ name: 'rlm-analyzer', version: '1.5.1' }, { capabilities: { tools: {} } });
|
|
224
224
|
// Handle tool listing
|
|
225
225
|
server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
226
226
|
return { tools: TOOLS };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rlm-analyzer",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "AI-powered code analysis using Recursive Language Models (RLMs). Analyze entire codebases 100x beyond context limits with deep architecture, security, and refactoring analysis. Supports Gemini and Amazon Bedrock.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|