The Agent Bridge is disabled by default:
agent:
enabled: falseWhen disabled:
no AgentManager
no /easyagent command
no heartbeat task
no PubSub polling task
no Agent placeholders
no Agent runtime eventsTo enable the bridge, set:
agent:
enabled: trueThen restart PMMP. The bridge is intentionally restart-level opt-in so a normal EasyLibrary install stays lightweight.
Consumer plugins should always use a fallback guard:
use imperazim\agent\api\AgentRuntimeAPI;
if(!AgentRuntimeAPI::isAvailable()){
return;
}