context-foundry
v2.5.4
Published
AI agent pattern-learning system - npm wrapper for the Python engine
Maintainers
Readme
Context Foundry
AI agent pattern-learning system that helps Claude and other AI agents improve over time.
Installation
npm install -g context-foundryThis installs the cf command globally. The npm package is a thin wrapper that automatically installs and delegates to the Python engine via pip.
Requirements
- Node.js 16+ (for the npm wrapper)
- Python 3.10+ (for the engine)
Quick Start
# Launch the interactive TUI (Mission Control)
cf
# Or use the daemon for background operations
cfd start
cfd statusCommands
cf - Main CLI
cf # Launch Mission Control TUI
cf --version # Show version
cf --help # Show helpcfd - Daemon CLI
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 <id> # Show job logsHow It Works
The npm package is a distribution shim that:
- Checks for Python 3.10+
- Installs the Python
context-foundrypackage via pip (if needed) - Delegates all commands to the Python CLI
This 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:
pip install context-foundryDocumentation
License
MIT
