toryo-core
v0.1.1
Published
Core engine for the Toryo intelligent agent orchestrator
Maintainers
Readme
toryo-core
Core engine for the Toryo intelligent agent orchestrator.
Provides the orchestration loop, task management, quality ratcheting, trust-based delegation, knowledge store, and smart truncation.
Installation
npm install toryo-coreUsage
import { createOrchestrator, createDelegation, createRatchet, createMetrics } from 'toryo-core';Each subsystem is a standalone factory function — use the full orchestrator or individual pieces:
// Use just the delegation system
const delegation = createDelegation({ initialTrust: 0.5 });
// Use just the ratchet for git-based quality gates
const ratchet = createRatchet({ threshold: 7.0 }, process.cwd());
// Use just the metrics for experiment tracking
const metrics = createMetrics('.toryo');See the main Toryo README for full documentation.
License
MIT
