codeflash-agent/plugin/.claude-plugin/plugin.json
HeshamHM28 6274dca2d5 feat: enhance Java optimization flow with extended sessions, Pareto tracking, and MCP visibility
Add iterative optimization capabilities inspired by Kimi K2.6: thread topology & spin-wait
strategies, allocation profiling, cross-function scope, behavioral equivalence verification,
Pareto frontier tracking with chart generation, extended session protocol (10-15+ hours),
session interruption detection/recovery via hooks, and MCP endpoint visibility so users
can follow the profiling pipeline.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-28 16:17:45 +03:00

31 lines
936 B
JSON

{
"name": "codeflash-agent",
"version": "0.1.0",
"description": "Autonomous performance optimization agent for Python and JavaScript/TypeScript.",
"author": {
"name": "Codeflash"
},
"repository": "https://github.com/codeflash-ai/codeflash-agent",
"license": "BSL-1.1",
"keywords": ["optimization", "performance", "profiling", "python", "javascript", "typescript"],
"mcpServers": {
"codeflash": {
"command": "uv",
"args": ["run", "--directory", "${CLAUDE_PLUGIN_ROOT}/../packages/codeflash-mcp", "codeflash-mcp"]
},
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp",
"headers": {
"CONTEXT7_API_KEY": "${CONTEXT7_API_KEY}"
}
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_PERSONAL_ACCESS_TOKEN}"
}
}
}
}