MIT Licensed · 9 packages
Plugin ecosystem for cortex-engine
Extend your agent with specialized cognitive tools. Each plugin adds MCP tools that integrate seamlessly with cortex-engine.
$ npm install @fozikio/tools-threads @fozikio/tools-journalInstall what you need
Each plugin is a standalone npm package. Mix and match to build exactly the cognitive stack your agent needs.
How plugins work
Install a plugin, register it with cortex-engine, and its tools appear in your MCP server automatically.
cortex.config.ts
import { defineConfig } from '@fozikio/cortex-engine';
import threads from '@fozikio/tools-threads';
import journal from '@fozikio/tools-journal';
import evolution from '@fozikio/tools-evolution';
export default defineConfig({
provider: 'sqlite',
embeddings: 'ollama',
plugins: [threads(), journal(), evolution()],
});