Runtime host for Escalated plugins. Loads plugins, communicates with the host framework via JSON-RPC 2.0 over stdio.
This package is used internally by Escalated framework bridges. You don't typically use it directly.
# The bridge spawns this automatically:
npx escalated-plugins /path/to/projectThe runtime is a long-lived Node.js process that:
- Discovers and loads installed plugins from
node_modules/@escalated-dev/plugin-* - Responds to JSON-RPC messages from the host framework
- Routes hooks (actions, filters) to registered plugin handlers
- Proxies
ctx.*calls back to the host for data operations
Communication uses JSON-RPC 2.0 over stdin/stdout. See the Plugin SDK docs for the full protocol specification.