AI agent pattern-learning system - npm wrapper for the Python engine
npm install context-foundryAI agent pattern-learning system that helps Claude and other AI agents improve over time.
``bash`
npm install -g context-foundry
This installs the cf command globally. The npm package is a thin wrapper that automatically installs and delegates to the Python engine via pip.
- Node.js 16+ (for the npm wrapper)
- Python 3.10+ (for the engine)
`bashLaunch the interactive TUI (Mission Control)
cf
Commands
$3
`bash
cf # Launch Mission Control TUI
cf --version # Show version
cf --help # Show help
`$3
`bash
cfd start # Start the daemon
cfd stop # Stop the daemon
cfd status # Get daemon status
cfd submit # Submit a job
cfd list # List jobs
cfd logs # Show job logs
`How It Works
The npm package is a distribution shim that:
1. Checks for Python 3.10+
2. Installs the Python
context-foundry package via pip (if needed)
3. Delegates all commands to the Python CLIThis approach lets JavaScript/TypeScript developers install via their familiar
npm install workflow while keeping the core logic in Python.Alternative Installation
If you prefer, install directly via pip:
`bash
pip install context-foundry
``- GitHub Repository
- Documentation
MIT