Getting Started with Machineforce
Fluxive Machineforce is designed to be the robust backbone of your personal AI infrastructure.
Installation
bash
npm install @fluxive/machineforceQuick Start
Initialize the agent in your project:
typescript
import { Machineforce } from '@fluxive/machineforce'
const agent = new Machineforce({
edge: true,
persistence: 'local'
})
await agent.start()Configuration
See the full configuration options in the Architecture section.