@gicm/gicm-orchestrator
v0.1.1
Published
The Brain - Autonomous orchestrator for gICM that discovers, evaluates, and integrates valuable tech
Maintainers
Readme
@gicm/gicm-orchestrator
The Brain - Autonomous orchestrator that discovers, evaluates, and integrates valuable tech.
Installation
npm install @gicm/gicm-orchestrator
# or
pnpm add @gicm/gicm-orchestratorFeatures
- Discovery - Hunt for valuable tech across GitHub, HackerNews, Twitter
- Evaluation - LLM-powered scoring of opportunities
- Building - Automated code generation and integration
- Deployment - Autonomous deployment with quality gates
Usage
import { Orchestrator } from "@gicm/gicm-orchestrator";
const orchestrator = new Orchestrator({
hunters: ["github", "hackernews", "twitter"],
autoApproveThreshold: 80,
});
// Start the orchestrator
await orchestrator.start();
// Listen for discoveries
orchestrator.on("discovery", (item) => {
console.log("Found:", item.title, "Score:", item.score);
});CLI
# Start the orchestrator
gicm-orchestrator start
# Trigger discovery manually
gicm-orchestrator discover
# View backlog
gicm-orchestrator backlogAgents
The orchestrator coordinates these agents:
- Hunter Agent - Discovers opportunities
- Decision Agent - Evaluates and scores
- Builder Agent - Generates code
- Refactor Agent - Improves code quality
- Deployer Agent - Handles deployment
License
MIT
