Documentation
@intelliforge/harness SDK
Eight TypeScript packages implementing the Code as Agent Harness taxonomy. MIT licensed. Install individually or compose a full harness stack.
Quick Start
npm install @intelliforge/harness-core @intelliforge/harness-memory @intelliforge/harness-tools
import { createHarness } from '@intelliforge/harness-core'
const harness = createHarness({
model: 'gpt-4o',
memory: { tiers: ['working', 'semantic'] },
})
await harness.run({ task: 'Summarize quarterly revenue from CSV' })Install All Packages
npm install @intelliforge/harness-core @intelliforge/harness-memory @intelliforge/harness-tools @intelliforge/harness-planner @intelliforge/harness-control @intelliforge/harness-multi @intelliforge/harness-india @intelliforge/harness-evalPackage Reference
@intelliforge/harness-coreHarness interface layer — createHarness(), PlanExecuteVerify loop
@intelliforge/harness-memory5-tier memory system — working, semantic, experiential, long-term, multi-agent
@intelliforge/harness-toolsTool use + registry — ToolRegistry, createTool(), VerificationTool
@intelliforge/harness-plannerPlanning mechanisms — LinearPlanner, StructuredPlanner, SearchPlanner
@intelliforge/harness-controlPEV loop + sandbox — SandboxedExecutor, PermissionTier, FeedbackRouter
@intelliforge/harness-multiMulti-agent orchestration — AgentRoles, SharedHarnessState, CollaborationMode
@intelliforge/harness-indiaIndia-first connectors — SarvamSTT, RazorpayTool, WhatsAppTool, ISTScheduler
@intelliforge/harness-evalEvaluation harness — HarnessEval, FinAgentEval, HarnessMetrics
Source & Examples
SDK packages ship from the IntelliForge Turborepo. GitHub repo goes live with ForgeOS Cloud Alpha.
View on GitHub