Home
API reference

ECOSYSTEM

The Ecosystem is a unified family of GitHub Actions workflows powered by @agentic/control.

Ecosystem Workflows

The Ecosystem is a unified family of GitHub Actions workflows powered by @agentic/control.

Architecture

                    ┌─────────────────────────┐
                    │   @agentic/control      │
                    │   (npm package)         │
                    └───────────┬─────────────┘

        ┌───────────────────────┼───────────────────────┐
        │                       │                       │
        ▼                       ▼                       ▼
┌───────────────┐   ┌───────────────┐   ┌───────────────┐
│ CursorAPI     │   │ Triage Tools  │   │ Fleet Manager │
│ (fleet/)      │   │ (triage/)     │   │ (fleet/)      │
└───────────────┘   └───────────────┘   └───────────────┘

Workflows

WorkflowPurposeUses
ecosystem-curatorNightly orchestrationagentic-orchestrator
ecosystem-reviewerPR lifecycleagentic-pr-review
ecosystem-fixerCI resolutionagentic-ci-resolution
ecosystem-delegatorIssue delegationagentic-issue-triage
ecosystem-harvesterAgent monitoringDirect fleet API
ecosystem-sageOn-call advisorOllama

Actions from @agentic/control

# Fleet orchestration
- uses: jbcom/nodejs-agentic-control/actions/agentic-orchestrator@main
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    command: summary

# PR review
- uses: jbcom/nodejs-agentic-control/actions/agentic-pr-review@main
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    model: glm-4.6:cloud

# Issue triage
- uses: jbcom/nodejs-agentic-control/actions/agentic-issue-triage@main
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    issue_number: ${{ github.event.issue.number }}

# CI resolution
- uses: jbcom/nodejs-agentic-control/actions/agentic-ci-resolution@main
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    run_id: ${{ github.event.workflow_run.id }}

Required Secrets

SecretPurpose
CURSOR_API_KEYCursor Cloud Agent API
GOOGLE_JULES_API_KEYGoogle Jules API
OLLAMA_API_KEYOllama cloud API
  • @agentic/control - Orchestration and fleet management
  • @agentic/triage - AI triage primitives (Zod schemas, Vercel AI SDK)
  • python-agentic-crew - CrewAI integration
  • python-vendor-connectors - Vendor API clients (Cursor, GitHub, etc.)