cortexweaver
Version:
CortexWeaver is a command-line interface (CLI) tool that orchestrates a swarm of specialized AI agents, powered by Claude Code and Gemini CLI, to assist in software development. It transforms a high-level project plan (plan.md) into a series of coordinate
21 lines • 937 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CoderAgentImplementation = exports.CoderAgent = void 0;
const coder_agent_1 = require("./coder-agent");
Object.defineProperty(exports, "CoderAgentImplementation", { enumerable: true, get: function () { return coder_agent_1.CoderAgentImplementation; } });
/**
* CoderAgent specializes in code implementation, testing, and version control
* Implements impasse detection after 2 failed attempts at compilation or testing
*/
class CoderAgent extends coder_agent_1.CoderAgentImplementation {
// Inherits all functionality from CoderAgentImplementation
// This allows for easy extension and testing while maintaining a clean public interface
/**
* Get prompt template for the coder agent
*/
getPromptTemplate() {
return super.getPromptTemplate();
}
}
exports.CoderAgent = CoderAgent;
//# sourceMappingURL=index.js.map