Advanced Topics
Router composition
The Extension package type and plugin.sdk.extension facade have been removed. PluginRouter remains supported as an internal composition tool for a normal Plugin. Define the router beside its owner and mount it explicitly:
from plugin.sdk.plugin import PluginRouter, plugin_entry, Ok
class ExtraRouter(PluginRouter):
@plugin_entry(id="extra_command", description="An extra command")
async def extra_command(self, param: str = "", **_):
return Ok({"param": param})Call self.include_router(ExtraRouter(name="extra")) from the owning NekoPluginBase constructor. A former Extension must be merged into that Plugin's source tree or converted into a standalone normal Plugin; type = "extension", [plugin.host], and imports from plugin.sdk.extension are rejected. See the v0.9 migration guide.
Adapters
Adapters bridge external protocols (MCP, NoneBot, etc.) to internal plugin calls. They implement a gateway pipeline pattern.
When to use Adapters
- You want to expose N.E.K.O plugins via MCP (Model Context Protocol)
- You want to accept NoneBot messages and route them to plugins
- You want to bridge any external protocol to the plugin system
Adapter Gateway Pipeline
External Request → Normalizer → PolicyEngine → RouteEngine → PluginInvoker → ResponseSerializer → External Response| Stage | Responsibility |
|---|---|
| Normalizer | Convert external protocol format to GatewayRequest |
| PolicyEngine | Access control, rate limiting, validation |
| RouteEngine | Decide which plugin/entry to call |
| PluginInvoker | Execute the actual plugin call |
| ResponseSerializer | Convert result back to external protocol format |
Creating an Adapter
from plugin.sdk.plugin import neko_plugin, plugin_entry, lifecycle, Ok, Err, SdkError
from plugin.sdk.adapter import (
AdapterGatewayCore, DefaultPolicyEngine, NekoAdapterPlugin,
)
from plugin.sdk.adapter.gateway_models import ExternalRequest
@neko_plugin
class MyProtocolAdapter(NekoAdapterPlugin):
def __init__(self, ctx):
super().__init__(ctx)
self.gateway = None
@lifecycle(id="startup")
async def startup(self, **_):
self.gateway = AdapterGatewayCore(
normalizer=MyNormalizer(),
policy_engine=DefaultPolicyEngine(),
route_engine=MyRouteEngine(),
invoker=MyInvoker(self.ctx),
serializer=MySerializer(),
logger=self.logger,
)
return Ok({"status": "ready"})
@plugin_entry(id="handle_request")
async def handle_request(self, raw_data: dict, **_):
external = ExternalRequest(protocol="my_protocol", raw=raw_data)
response = await self.gateway.process(external)
return Ok(response.to_dict())Adapter Modes
| Mode | Description |
|---|---|
GATEWAY | Full pipeline processing |
ROUTER | Route-only (skip policy) |
BRIDGE | Direct pass-through |
HYBRID | Mode selected per-request |
Built-in Reference: MCP Adapter
See plugin/plugins/mcp_adapter/ for a complete adapter implementation that bridges MCP protocol to N.E.K.O plugins. It demonstrates:
- Custom normalizer (
MCPRequestNormalizer) - Custom route engine (
MCPRouteEngine) - Custom invoker (
MCPPluginInvoker) - Custom serializer (
MCPResponseSerializer) - Custom transport (
MCPTransportAdapter)
Cross-Plugin Communication
Direct entry calls
# Call another plugin's entry point
result = await self.plugins.call_entry("target_plugin:entry_id", {"arg": "value"})
if isinstance(result, Ok):
data = result.value
else:
self.logger.error(f"Call failed: {result.error}")Discovery
# List all available plugins
plugins = await self.plugins.list(enabled=True)
# Check if a dependency exists
exists = await self.plugins.exists("required_plugin")
# Require a plugin (fail fast if missing)
dep = await self.plugins.require_enabled("required_plugin")Bus reads and watchers
self.bus exposes five readable namespace snapshots: messages, events, lifecycle, conversations, and memory. It has no emit() or on() method. Only messages, events, and lifecycle support watch(); conversations and memory are read-only snapshots.
# In an async entry, get() must be awaited.
events = await self.bus.events.get(plugin_id=self.plugin_id, max_count=50)
recent = events.filter(priority_min=1).sort(by="timestamp", reverse=True).limit(20)
# subscribe() accepts only "add", "del", or "change".
watcher = recent.watch(self.ctx)
@watcher.subscribe(on="add")
def _handle_event(delta):
for event in delta.added:
self.logger.info(f"new event: {event.type}")
watcher.start()Callable filter(predicate), where(predicate), and sort(key=callable) are local-only transformations. They are useful for an already-materialized snapshot, but they cannot be replayed by watch(); watcher chains must use structured filter(field=value, ...) and sort(by=...) operations as above.
Use await self.bus.memory.get(bucket_id="default", limit=...) for recent memory records and await self.ctx.query_memory("default", query) for semantic lookup. The old high-level self.memory / MemoryClient API no longer exists.
Async Programming
Entry points can be either sync or async:
# Sync entry (runs in thread pool)
@plugin_entry(id="sync_task")
def sync_task(self, **_):
return Ok({"result": "done"})
# Async entry (runs on event loop)
@plugin_entry(id="async_task")
async def async_task(self, url: str, **_):
async with aiohttp.ClientSession() as session:
async with session.get(url) as response:
return Ok({"data": await response.json()})Thread Safety
Timer tasks run in separate threads. Protect shared state:
import threading
@neko_plugin
class ThreadSafePlugin(NekoPluginBase):
def __init__(self, ctx):
super().__init__(ctx)
self._lock = threading.Lock()
self._counter = 0
@plugin_entry(id="increment")
def increment(self, **_):
with self._lock:
self._counter += 1
return Ok({"count": self._counter})
@timer_interval(id="report", seconds=60, auto_start=True)
def report(self, **_):
with self._lock:
count = self._counter
self.report_status({"count": count})Custom Configuration
import json
class ConfigurablePlugin(NekoPluginBase):
def __init__(self, ctx):
super().__init__(ctx)
config_file = self.config_dir / "config.json"
if config_file.exists():
self.config = json.loads(config_file.read_text())
else:
self.config = {"timeout": 30}Or use PluginConfig for structured configuration with profiles:
from plugin.sdk.plugin import PluginConfig
config = PluginConfig(self.ctx)
timeout = config.get("timeout", default=30)Data Persistence with SQLite
import sqlite3
class PersistentPlugin(NekoPluginBase):
def __init__(self, ctx):
super().__init__(ctx)
self.db_path = self.data_path("records.db")
self.data_path().mkdir(parents=True, exist_ok=True)
self._init_db()
def _init_db(self):
conn = sqlite3.connect(self.db_path)
conn.execute("""
CREATE TABLE IF NOT EXISTS records (
id INTEGER PRIMARY KEY AUTOINCREMENT,
key TEXT UNIQUE,
value TEXT,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)
""")
conn.commit()
conn.close()