AI-Perceivable Core
Build once, invoke by Code or AI. Every call validated, authorized, and evidenced.
A governed runtime for agent-callable capabilities — schema, ACL, approval, and audit enforced at every call.
apcore is an AI-Perceivable module standard that makes every interface naturally perceivable and understandable by AI through enforced Schema definitions and behavioral annotations. It provides schema validation, access control, middleware pipelines, and observability built in.
- Schema-driven modules — Define input/output schemas with TypeBox for runtime validation
- Executor pipeline — Secured execution lifecycle: context → call chain guard → lookup → ACL → approval gate → middleware before → validation → execute → output validation → middleware after → return
- Registry system — File-based module discovery with metadata, dependencies, and topological ordering; multi-class discovery from a single file
- Binding loader — YAML-based module registration for no-code integration
- Access control (ACL) — Pattern-based rules with identity types, roles, and call-depth conditions
- Approval system — Pluggable approval gate in the executor pipeline with sync and async (polling) flows, built-in handlers, and tracing integration
- Middleware — Onion-model middleware with before/after/onError hooks and error recovery; built-in
CircuitBreakerMiddleware(CLOSED/OPEN/HALF_OPEN); tracing is provided by the observabilityTracingMiddleware - Observability — Tracing (spans +
BatchSpanProcessor+ exporters), metrics (counters + histograms + Prometheus export with/metrics//healthz//readyz), structured logging withRedactionConfig - System modules — Built-in
system.*modules for AI bidirectional introspection: health, manifest, usage, and runtime control (update_config,reload_module,toggle_feature). Audit trail viaAuditStore, config persistence viaoverridesPath, usage metrics in Prometheus, bulk reload viapath_filterglob - Event system —
EventEmitterwith subscriber-levelCircuitBreakerWrapper, built-inFileSubscriber,StdoutSubscriber,FilterSubscriber, and pluggable custom types - Async tasks —
AsyncTaskManagerwith injectableTaskStore(bring your own Redis/Postgres backend),RetryConfigwith exponential backoff, and opt-in background reaper - Schema export — JSON/YAML schema export with strict and compact modes
- Caching & pagination annotations —
cacheable,cacheTtl,cacheKeyFieldsfor result caching;paginated,paginationStylefor paginated modules - Config Bus — Namespace-based configuration registry with typed access, env prefix dispatch, hot-reload, and external config mounting (
Config.registerNamespace(),config.namespace(),config.bind<T>(),config.mount())
- SECURITY: an unevaluable approval rule stepped aside and the call ran unapproved (apcore#109, spec v1.29.0 §6.1.1 rule 5) — a narrow
approval: requiredrule ahead of a broadallowis the shape argument-scoped approval was written for, and when the narrow rule's condition could not be evaluated it did the one thing §6.1.1 told it to: step aside. The broad rule then granted, carrying no requirement of its own, sogit push --forcecame backallowwithapprovalRequired: false— the exact call the operator gated. A misspelled predicate or an unregistered condition key reaches this with a projection present, on the ordinary Executor pipeline, anddefaultEffect: 'allow'reaches it with no second rule at all. The requirement is now pending rather than discarded: it composes by disjunction with whatever grants next (a later rule or the default effect, which makesapprovalRequired: truewithmatchedRuleIndex: nulllegal), and adenydecision clears it. A rule whose patterns do not match this call raises nothing; a rule whose owncallers/targetsis malformed does, because its scope cannot be read. - SECURITY: an ACL condition that could not be evaluated silently disabled the
denyrule carrying it (apcore#100, spec v1.22.0 §6.1.1) — "a handler answered no" and "no answer was obtainable" reached the rule loop identically, and both meant this rule does not match. That is safe in one direction only: anallowrule that cannot evaluate its condition does not grant, but adenyrule that cannot evaluate its condition does not block. One misspelled key (role:forroles:) turned a rule its author believed was blocking into decoration. An unevaluable condition now resolves the rule toward refusing access — adenyrule takes effect, anallowrule still does not grant — andhandlerErrornames the condition path. - SECURITY: a
callersortargetswritten as a string instead of a list turned anallowrule into a wildcard (apcore#106, spec v1.25.0 §6.1.4.1) — a bare string is iterable, socallers: "admin.*"was read character by character and its*matched everything. Such a rule is now unevaluable: it does not grant, andcheck()does not throw. - SECURITY: an unknown or reserved ACL rule key was dropped in silence (apcore#107, spec v1.27.0 §6.1) — a rule carrying
actions: ["describe"], written to mean introspection only, loaded cleanly and granted execute. The key set is now closed tocallers,targets,effect,description,conditions, and anything else fails the load withACLRuleError. - A rule's
effectaccepted any string outside the YAML loader (apcore#111, spec v1.30.0 §6.1.5) — the same defect one level down: there an unknown key was dropped in silence, here a legal key's value was.ACL.load()rejectedeffect: "Allow"whilenew ACL([...])andaddRule()accepted it, and the accepted value was then read asdeny— so underdefaultEffect: 'allow'a rule written to permit denied everything it matched, with no error and nothing fromvalidateRules().allowanddenyare now the only values accepted at every entry point,defaultEffecton the same terms. - An ACL rule can now ask a human about this call (apcore#108, spec v1.28.0 §6.1.6–§6.1.8) — the ACL could refuse on arguments and an
ApprovalHandlercould wave through on arguments, but nothing could ask, so gatinggit push --forcemeant gating everygit push. A rule gains an optionalapproval: requiredbesideeffect(rejected on adenyrule — the combination means nothing), plus one built-inargumentscondition withhas_key/has_all_keys/has_none_of. No predicate reads a value: it reads a governance projection of key names and JSON types computed at Step 3, neverredactedInputs.checkAccess()returns the structuredAccessDecision; the legacycheck()fails closed on an approval requirement, because a non-Executor caller can only read a boolean as "let it through". The Step 5 gate andvalidate()both fire on the union of the module annotation, the ACL decision andgateDestructive— and anExecutionPolicymay add a requirement but never remove one the ACL set. - A context-independent precheck runs before evaluation (spec v1.25.0 §6.1.4) — the whole
conditionstree is walked for structural and registry faults without a context and without running a handler, before the "no context supplied" check. That closes a bypass where a misspelled key on a context-less call escaped §6.1.1 entirely. Because the precheck is exhaustive and handler-free, its diagnostics are identical across SDKs. ACLgains read-only accessors (apcore#101, spec v1.23.0 §6.8) —defaultEffectandruleswereprivatewith no getter, so tooling had to re-read and re-parse the ACL file to recover a value the loaded object already held.validateRules()— a deploy-time validator reporting every rule that fails the precheck, withsyncResolvable/asyncResolvablereported separately, since a key registered only as an async handler resolves underasyncCheck()and not undercheck().- Policy resolution receives the call site (apcore#102, spec v1.24.0 §7.9.6) —
resolve()takes an optionalPolicyCallSite. Built-in pattern rules must not consult it, so existing verdicts are unchanged; it exists so the call site can reach the audit trail._approvalTokenis now stripped before policy resolution, not merely before the module runs.
- BREAKING (security): a denied caller no longer sees module-level introspection from
validate()(apcore#96, spec v1.13.0 §12.8.5.1) —validate()looked the module up and ranpreflight()/preview()on the strength of that lookup alone, so a caller the ACL had just denied still made module-authored code run and still received what it returned: for a command-wrapping module, the resolved binary and its argv. When theaclcheck fails, neither hook runs, nomodule_preflight/module_previewcheck is emitted, andpredictedChangesstays empty. The failedaclcheck itself is still reported, so a denied caller still learns why. A failedschemacheck does not suppress introspection — a permitted caller is entitled to the module's account of what would happen even when its inputs are malformed. dependenciesis a parsed field on the module descriptor (apcore#90 follow-up, spec v1.18.0) —getDefinition(moduleId).dependenciesreturns what the caller declared.system.manifest.*had been reportingdependencies: []for every module that declared them, because it readdescriptor.metadata['dependencies']andmergeModuleMetadataextractsdependenciesas a canonical field, so it never landed in the metadata bag.
ExecutionPolicy/PolicyRuleexecution-time governance (#76) — An external policy can force or exempt approval on already-registered modules by ID pattern, make adestructiveannotation imply approval viagateDestructive, and fail closed withstrict: truewhen a gated module has noApprovalHandler. The most specific matching rule wins; on a tie the more restrictive one does. See Execution policy andexamples/execution-policy.ts.- Governance events (#77) —
apcore.approval.decisionandapcore.policy.overrideare published on the event bus alongside the existingapcore.acl.denied.
- Config-driven ACL discovery (#74, D-64) —
ACL.discover(config)resolvesacl.root(default./acl) relative to the config file's own directory and loads an ACL only if that path exists; a missing path attaches no ACL rather than synthesizing a default-deny. Auto-wired in theAPCoreconstructor. Seeexamples/acl-config-driven.ts.
- Per-instance
ToggleStateisolation (#71) — eachAPCoreinstance owns oneToggleState(new APCore({ toggleState? }), read-only viaclient.toggleState) threaded into both the write path (system.control.toggle_feature) and the read path (Executor→ module lookup), so disabling a module on one instance no longer affects another in the same process. - Agent-governance conformance coverage (#72) — drivers for the canonical
toggle_state_isolation.jsonandacl_agent_scoping.jsonfixtures lock the AI-agent tool-governance scenario as a cross-language contract.
- AI error-recovery metadata at the source (#70) — Framework errors now carry a default
userFixableresolved per error code (USER_FIXABLE_BY_CODE), plus filledaiGuidancedefaults, so the recovery contract flows to every surface (MCP/CLI/A2A) from one module/error definition instead of being backfilled per adapter. At parity with apcore-python / apcore-rust 0.23.0, locked by the sharederror_recovery_metadata.jsonconformance fixture.
ContextKey<T>typed context state (#63) — Type-safe accessor forContext.dataslots withget/set/delete/exists/scoped; also available via theapcore-js/context-keyssubpath import for tree-shakeable consumers.StreamingModuleinterface (#62) — Formal streaming contract viaSTREAMING_MARKERsymbol;isStreamingModule()detects implementations and emitsStreamingInterfaceErrorwhen contract is violated.- Middleware duplicate detection (#64) —
MiddlewareManager.add(mw, { allowDuplicate, identityKey })rejects accidental double-registration; opt-out and custom identity keys supported for explicit duplicates. - Event retry + DLQ (#61) —
EventSubscribernow exposes aretryconfig field (max attempts + exponential backoff) and an optionalonFailure(event, error, attemptCount)hook acting as a per-subscriber dead-letter queue. - Registry async deferred-publish (#65) —
Registry.register()returns aPromise<void>; modules with an asynconLoad()stay hidden fromget()/has()until load completes, andapcore.registry.module_load_failedis emitted on rejection. - Reserved-namespace query API (#60) —
Config.reservedNamespacesstatic getter and top-levelRESERVED_NAMESPACESexport let callers pre-validate namespace names before callingConfig.registerNamespace().
See examples/v022-tour.ts for a runnable tour of each surface.
For full documentation, including Quick Start guides and API reference, visit: https://aiperceivable.github.io/apcore/getting-started/
- Node.js >= 20.0.0
- TypeScript >= 5.5
npm install apcore-jsNote: The npm package is published as
apcore-js(theapcorename is reserved on npm). Python usesapcore, Rust uses theapcorecrate.
apcore-js ships dual entry points via package.json conditional exports:
- Node (default):
./dist/index.js— the full surface. - Browser:
./dist/browser/index.js— auto-selected by tree-shaking bundlers (Vite, Webpack, esbuild, Rollup) through the"browser"exports condition.
The browser bundle excludes Node-only surfaces:
Configclass,BindingLoader,SchemaLoader(filesystem-bound)- All
system.*sys-modules (control, manifest, health, usage, audit) - Events runtime:
EventEmitter, all built-in subscribers,AsyncTaskManager,TaskStatus - Observability runtime:
TracingMiddleware,MetricsCollector, exporters,PrometheusExporter RESERVED_NAMESPACES,StreamingInterfaceError,DuplicateModuleIdError
ACL.load(yamlPath) throws ACLRuleError in the browser because the filesystem is unavailable; ACL programmatic construction still works.
Available in the browser: Registry programmatic register/get/list/iter/unregister, Executor, ACL programmatic, Context, middleware pipeline, schema validation, all error classes, and the utility helpers.
The APCore client provides a unified entry point that manages Registry and Executor for you:
import { Type } from '@sinclair/typebox';
import { APCore } from 'apcore-js';
const client = new APCore();
// Register a module
client.module({
id: 'math.add',
description: 'Add two numbers',
inputSchema: Type.Object({ a: Type.Number(), b: Type.Number() }),
outputSchema: Type.Object({ sum: Type.Number() }),
execute: (inputs) => ({ sum: (inputs.a as number) + (inputs.b as number) }),
});
// Call, validate, stream — all from one client
const result = await client.call('math.add', { a: 10, b: 5 });
// => { sum: 15 }
const preflight = await client.validate('math.add', { a: 10, b: 5 });
// => { valid: true, checks: [...], requiresApproval: false, errors: [] }APCore.disable, APCore.enable, APCore.on, and APCore.off are gated on the
optional system-modules subsystem. They require a Config instance with
sys_modules.enabled: true to be passed into the APCore constructor —
otherwise the calls throw with a clear "sys_modules must be enabled" message.
import { APCore, Config } from 'apcore-js';
// Inline config (equivalent to writing the same YAML and calling Config.load):
const config = new Config({
sys_modules: {
enabled: true,
// Optional sub-systems:
events: { enabled: true }, // required for on/off (event emitter)
control: { enabled: true }, // required for disable/enable (toggle)
},
});
const client = new APCore({ config });
// Now safe to call:
await client.disable('math.add');
await client.enable('math.add');
// Enabling/disabling a module fires the canonical apcore.module.toggled event;
// read event.data.enabled to see the new state (see examples/events.ts).
client.on('apcore.module.toggled', (event) => {
console.log('Toggled:', event.data.module_id, 'enabled:', event.data.enabled);
});If you do not need these control/events APIs, omit the Config entirely (as in
the basic Quick Start above).
import { Type } from '@sinclair/typebox';
import { FunctionModule, Registry, Executor } from 'apcore-js';
const greet = new FunctionModule({
execute: (inputs) => ({ greeting: `Hello, ${inputs.name}!` }),
moduleId: 'example.greet',
inputSchema: Type.Object({ name: Type.String() }),
outputSchema: Type.Object({ greeting: Type.String() }),
description: 'Greet a user',
});
const registry = new Registry();
registry.register('example.greet', greet);
const executor = new Executor({ registry });
const result = await executor.call('example.greet', { name: 'World' });
// => { greeting: 'Hello, World!' }| Class | Description |
|---|---|
APCore |
High-level client — register modules, call, stream, validate, listModules, describe, on/off, disable/enable. Note: disable, enable, on, and off require sys_modules.enabled: true in the Config passed to APCore (see Quick Start: Enabling sys_modules). |
Registry |
Module storage — discover, register, get, list, watch |
Executor |
Execution engine — call with middleware pipeline, ACL, approval |
Context |
Request context — trace ID, identity, call chain, cancel token |
Config |
Configuration — load from YAML, namespace bus, get/set/bind values |
ACL |
Access control — rule-based caller/target authorization |
ExecutionPolicy / PolicyRule |
Execution-time governance overrides (#76) — force/exempt approval by ID pattern, gateDestructive, strict fail-closed |
Middleware |
Pipeline hooks — before/after/onError interception |
CircuitBreakerMiddleware |
Per-(module, caller) circuit breaker — CLOSED/OPEN/HALF_OPEN with configurable threshold and cooldown |
TracingMiddleware |
Span tracing — apcore.module.execute spans kept as a stack in _apcore.mw.tracing.spans with parent_span_id links; self-contained, no runtime @opentelemetry/* dependency |
EventEmitter |
Event system — subscribe, emit, flush |
CircuitBreakerWrapper |
Subscriber-level circuit breaker — protects EventEmitter subscribers from cascading failures |
AsyncTaskManager |
Background task execution — injectable store, retry with backoff, opt-in reaper |
PrometheusExporter |
HTTP metrics server — /metrics, /healthz, /readyz; optional usageCollector for usage gauges |
InMemoryAuditStore |
Control module audit log — records actor, action, before/after change for every control call |
Config acts as an ecosystem-level Config Bus. Any package can register a namespace with optional JSON Schema validation, environment variable prefix, and defaults.
import { Config } from 'apcore-js';
// Register a namespace (class-level, shared across all Config instances).
// registerNamespace takes a single options object; `name` is a field on it.
Config.registerNamespace({
name: 'myPlugin',
envPrefix: 'MY_PLUGIN',
defaults: { timeout: 5000, retries: 3 },
schema: {
type: 'object',
properties: {
timeout: { type: 'number' },
retries: { type: 'number' },
},
},
});
const config = Config.load('apcore.yaml');
// Dot-path access with namespace resolution
const timeout = config.get('myPlugin.timeout'); // 5000 (or env override)
// Full namespace subtree
const pluginConfig = config.namespace('myPlugin');
// Typed access — pass a class constructor; its constructor receives the namespace dict
class MyPluginConfig {
timeout: number;
retries: number;
constructor(data: Record<string, unknown>) {
this.timeout = (data['timeout'] as number) ?? 5000;
this.retries = (data['retries'] as number) ?? 3;
}
}
const typed = config.bind('myPlugin', MyPluginConfig);
// Mount an external config source (e.g. an existing config file)
config.mount('myPlugin', { fromFile: './my-plugin.yaml' });
// Or from an in-memory object:
config.mount('myPlugin', { fromDict: { timeout: 10000 } });
// Introspect registered namespaces
// => Array<{ name: string; envPrefix: string | null; hasSchema: boolean }>
const namespaces = Config.registeredNamespaces();Merge priority (highest wins): environment variables > config file > namespace defaults.
Two prefix conventions are supported:
| Convention | Applies to | Example |
|---|---|---|
APCORE_ + KEY_PATH |
Legacy flat keys | APCORE_EXECUTOR_DEFAULT__TIMEOUT=5000 |
APCORE_ + namespace prefix |
apcore sub-package namespaces | APCORE_OBS_REDACTION_REPLACEMENT='[hidden]' |
Within the suffix, a single _ maps to . (a path separator) and __ maps to a
literal _. So APCORE_EXECUTOR_DEFAULT__TIMEOUT sets executor.default_timeout
— writing APCORE_EXECUTOR_DEFAULT_TIMEOUT would instead target the key
executor.default.timeout, which does not exist. This matches apcore-python and
apcore-rust.
Legacy APCORE_* overrides apply in namespace mode too: they are merged into the
apcore namespace (PROTOCOL_SPEC §9.6.2), so the example above also resolves via
config.get('apcore.executor.default_timeout').
apcore pre-registers the following namespaces and env prefixes:
| Namespace | Env prefix | Wraps |
|---|---|---|
observability |
APCORE_OBSERVABILITY |
observability.* — tracing, metrics, logging, error_history, platform_notify |
obs |
APCORE_OBS |
obs.redaction.* — sensitive_keys, regex_patterns, replacement |
sys_modules |
APCORE_SYS |
sys_modules.* — health, manifest, usage, control, events |
Namespace names are snake_case, matching apcore-python and the YAML config keys: use
config.namespace('sys_modules'), not'sysModules'.
Sub-packages use their own APCORE_ prefixed name (e.g. APCORE_MCP for apcore-mcp). The longest-prefix-match dispatch algorithm disambiguates correctly (APCORE_OBS_* vs APCORE_OBSERVABILITY_*).
config.reload() re-reads the source YAML, re-detects legacy/namespace mode, re-applies all namespace defaults and env overrides, re-validates, and re-reads any mounted files.
const config = Config.load('apcore.yaml');
// ... runtime config change on disk ...
config.reload(); // picks up all changesConfiguration files support two modes. Legacy mode (no apcore: key) is fully backward compatible. Namespace mode is activated when an apcore: top-level key is present; each namespace occupies its own top-level section. The _config reserved namespace controls validation behavior.
# Namespace mode
apcore:
version: "1.0.0"
_config:
strict: true
obs:
redaction:
sensitive_keys: ["*password*", "*token*"]
replacement: "***REDACTED***"
myPlugin:
timeout: 10000
retries: 5Ten declared keys reach no consumer in any SDK. They parse, they validate, they pass strict mode — and setting them has no effect. They are deprecated as of spec v1.39.0 and are removed no earlier than v2.0; loading a configuration that declares one of them now warns and names it.
# None of the following does anything today. Shown so you can recognise it.
logging:
level: "info" # inert — configure your host application's logger
format: "json" # inert
observability:
tracing:
enabled: true # inert — construct and install TracingMiddleware yourself
sampling_rate: 0.1 # inert, and the sharpest case: sampling is decided by
# `new TracingMiddleware(exporter, samplingRate,
# samplingStrategy)`, constructor arguments no configuration
# key feeds, defaulting to 1.0 / 'full'. Ask for 10% here
# and you still get 100%.
exporter: "stdout" # inert — an exporter is an object, not a name
metrics:
enabled: true # inert
exporter: "prometheus" # inert
acl:
audit:
enabled: true # inert — pass an audit logger to the ACL constructor
include_denied: true # inert
log_level: "info" # inertThe same three audit settings are also accepted as an audit: block at the root of an ACL
YAML file, and are equally inert there — no SDK has ever read it. Loading such a file now warns
too. Only the audit: block is called out: every other unrecognised root key in an ACL file is
still ignored in silence, exactly as before.
Observability and audit logging do work — they are wired programmatically, with
TracingMiddleware (see API Overview), PrometheusExporter (see System Modules) and the
ACL constructor's audit logger. Tracking:
apcore#118, PROTOCOL_SPEC
§9.2.4 / §9.2.4.1.
There is a second, opposite trap. These keys are not declared anywhere and read by nothing,
so a configuration carrying them is rejected under _config.strict: true rather than merely
ignored:
| Not a key | Notes |
|---|---|
observability.prometheus.* |
The Prometheus exporter's port and paths are constructor arguments — see the PrometheusExporter example under System Modules. Measured: Unknown key 'observability.prometheus' (strict mode enabled). |
observability.health.* |
/healthz and /readyz are served by that same exporter, not configured in YAML. |
observability.redaction.* |
The legacy spelling. This SDK still reads field_patterns / value_patterns / replacement under it as a fallback, with a deprecation warning — but the key is undeclared, so strict mode rejects the document before the fallback can run. Write the canonical obs.redaction.sensitive_keys / regex_patterns / replacement instead; apcore-python does not honour the legacy spelling at all. |
registerSysModules() auto-registers the built-in system.* modules that let AI agents query, monitor, and control the apcore runtime. Enable them via sys_modules.enabled: true in config, and pass the optional hardening options for production use:
import { registerSysModules, InMemoryAuditStore } from 'apcore-js';
const auditStore = new InMemoryAuditStore();
registerSysModules(registry, executor, config, null, {
failOnError: true, // throw on any registration failure (default: false)
overridesPath: '/etc/apcore/overrides.yaml', // persist runtime changes across restarts
auditStore, // record every control-module action with actor + change
});
// Available system modules:
// system.health.summary / system.health.module — health status + error rates
// system.manifest.module / system.manifest.full — module introspection
// system.usage.summary / system.usage.module — call counts + latency trends
// system.control.update_config — hot-patch config values
// system.control.reload_module — hot-reload from disk; supports path_filter glob
// system.control.toggle_feature — disable/enable modules at runtime
// Query the audit log after control calls:
const entries = auditStore.query({ moduleId: 'system.control.update_config' });
// entries[0] = { timestamp, action, targetModuleId, actorId, actorType, traceId, change }Prometheus usage metrics — wire PrometheusExporter with the UsageCollector returned by registerSysModules:
import { PrometheusExporter, MetricsCollector } from 'apcore-js';
const ctx = registerSysModules(registry, executor, config);
const exporter = new PrometheusExporter({
collector: new MetricsCollector(),
usageCollector: ctx.usageCollector, // adds apcore_usage_* metrics to /metrics
});
exporter.start({ port: 9090 });
// GET /metrics now includes:
// apcore_usage_calls_total{module_id="math.add",status="success"} 5000
// apcore_usage_error_rate{module_id="math.add"} 0.0004
// apcore_usage_p99_latency_ms{module_id="math.add"} 45.0BindingLoader registers modules from a YAML file instead of code — the
no-code integration path.
# format-date.binding.yaml
spec_version: "1.0"
bindings:
- module_id: "utils.format_date"
# "<module path>:<exported symbol>". The module path goes to Node's
# `import()` verbatim, so it must be a package specifier or an absolute
# path — a bare relative name is NOT resolved against the YAML file.
target: "/abs/path/to/format-date.ts:formatDateString"
description: "Format a date string into a specified format"
version: "1.0.0"
auto_schema: trueimport { BindingLoader, Executor, Registry } from 'apcore-js';
const registry = new Registry();
const loader = new BindingLoader();
await loader.loadBindings('./format-date.binding.yaml', registry);
// Or every *.binding.yaml in a directory:
// await loader.loadBindingDir('./bindings', registry);
const executor = new Executor({ registry });
await executor.call('utils.format_date', {
dateString: '2024-01-15',
outputFormat: '%B %d, %Y',
});The target is invoked as func(inputs, context). Schemas come from one of four
mutually exclusive modes: inline input_schema / output_schema, an external
schema_ref, auto_schema (infers from the target module's exported
inputSchema / outputSchema), or — with none specified — a permissive
fallback. Pass new BindingLoader({ trustedPackagePrefixes: [...] }) to refuse
importing any target outside an allowlist.
See examples/bindings/format-date/ for a
runnable end-to-end binding.
ExecutionPolicy (with PolicyRule) applies governance to already-registered
modules at execution time, without touching their code or annotations. It is
consulted by the approval gate (pipeline step 5).
import { APCore, ExecutionPolicy, PolicyRule } from 'apcore-js';
const policy = new ExecutionPolicy(
[
new PolicyRule('orders.delete_*', {
requiresApproval: true,
reason: 'destructive order ops need human sign-off',
}),
// A rule can also exempt: requiresApproval: false.
new PolicyRule('orders.read_*', { requiresApproval: false }),
],
{
// Any module annotated destructive: true also needs approval.
gateDestructive: true,
// A module that needs approval but has no ApprovalHandler fails CLOSED
// (ApprovalDeniedError) instead of silently executing.
strict: true,
},
);
const client = new APCore({ policy, approvalHandler });
// Runtime swap: executor.setPolicy(otherPolicy)Pattern matching reuses the ACL wildcard semantics (Algorithm A08) and specificity scoring (A10): the most specific matching rule wins, and on a tie the more restrictive rule does.
An operator-authored YAML/JSON governance document loads via
ExecutionPolicy.fromObject(parsed):
gate_destructive: true
strict: true
rules:
- pattern: "orders.delete_*"
requires_approval: true
reason: "destructive order operations need human sign-off"Parsing is strict: unknown keys throw, and gate_destructive / strict must
be real booleans — a typo or a "false" string cannot silently disable a
control.
See examples/execution-policy.ts for a
runnable end-to-end demo of all three behaviours.
New error codes added in v0.15.0:
| Code | Description |
|---|---|
CONFIG_NAMESPACE_DUPLICATE |
Config.registerNamespace() called with an already-registered name |
CONFIG_NAMESPACE_RESERVED |
Config.registerNamespace() called with a reserved name (e.g. _config) |
CONFIG_ENV_PREFIX_CONFLICT |
Two namespaces declare the same envPrefix |
CONFIG_MOUNT_ERROR |
config.mount() cannot read or parse the external source |
CONFIG_BIND_ERROR |
config.bind<T>() or config.getTyped<T>() type guard fails |
ERROR_FORMATTER_DUPLICATE |
ErrorFormatterRegistry.register() called for an already-registered surface |
New error codes added in v0.20.0:
| Code | Description |
|---|---|
CIRCUIT_BREAKER_OPEN |
CircuitBreakerMiddleware short-circuited a call because the circuit is OPEN |
MODULE_RELOAD_CONFLICT |
Both module_id and path_filter supplied to system.control.reload_module |
SYS_MODULE_REGISTRATION_FAILED |
registerSysModules() with failOnError: true and a module failed to register |
MODULE_ID_CONFLICT |
Two classes in the same file produce the same module ID segment (discoverMultiClass) |
INVALID_SEGMENT |
A derived class segment does not match ^[a-z][a-z0-9_]*$ |
ID_TOO_LONG |
A derived module ID exceeds 192 characters |
apcore 0.15.0 resolved two event-type collisions in favor of dot-namespaced canonical
names. The legacy short-form aliases (module_health_changed, config_changed) were
emitted during the 0.15.x transition and have been removed as of 0.18.0.
| Event name | Meaning |
|---|---|
"apcore.module.toggled" |
Module enabled/disabled toggle |
"apcore.health.recovered" |
Error-rate recovery after spike |
"apcore.config.updated" |
Config key updated at runtime |
"apcore.module.reloaded" |
Module reloaded from disk |
Naming convention: apcore.* is reserved for core events. Adapter packages use their own prefix (apcore-mcp.*, apcore-a2a.*, apcore-cli.*).
The examples/ directory contains runnable demos:
Initializes an APCore client, registers modules inline, and calls them.
import { Type } from '@sinclair/typebox';
import { APCore } from 'apcore-js';
const client = new APCore();
client.module({
id: 'math.add',
description: 'Add two integers',
inputSchema: Type.Object({ a: Type.Number(), b: Type.Number() }),
outputSchema: Type.Object({ sum: Type.Number() }),
execute: (inputs) => ({ sum: (inputs.a as number) + (inputs.b as number) }),
});
client.module({
id: 'greet',
description: 'Greet a user by name',
inputSchema: Type.Object({
name: Type.String(),
greeting: Type.Optional(Type.String()),
}),
outputSchema: Type.Object({ message: Type.String() }),
execute: (inputs) => ({
message: `${(inputs.greeting as string) || 'Hello'}, ${inputs.name}!`,
}),
});
const result = await client.call('math.add', { a: 10, b: 5 });
console.log(result); // { sum: 15 }
const greetResult = await client.call('greet', { name: 'Alice' });
console.log(greetResult); // { message: 'Hello, Alice!' }Demonstrates the core FunctionModule structure with TypeBox schemas.
import { Type } from '@sinclair/typebox';
import { FunctionModule } from 'apcore-js';
export const greetModule = new FunctionModule({
moduleId: 'greet',
description: 'Greet a user by name',
inputSchema: Type.Object({ name: Type.String() }),
outputSchema: Type.Object({ message: Type.String() }),
execute: (inputs) => ({ message: `Hello, ${inputs.name}!` }),
});Shows behavioral annotations and simulated database lookup.
import { Type } from '@sinclair/typebox';
import { FunctionModule, createAnnotations } from 'apcore-js';
const users: Record<string, { id: string; name: string; email: string }> = {
'user-1': { id: 'user-1', name: 'Alice', email: 'alice@example.com' },
'user-2': { id: 'user-2', name: 'Bob', email: 'bob@example.com' },
};
export const getUserModule = new FunctionModule({
moduleId: 'user.get',
description: 'Get user details by ID',
inputSchema: Type.Object({ userId: Type.String() }),
outputSchema: Type.Object({
id: Type.String(),
name: Type.String(),
email: Type.String(),
}),
// `ModuleAnnotations` is a total interface — `createAnnotations()` fills the
// rest (cacheable, cacheTtl, cacheKeyFields, paginated, paginationStyle,
// extra) from `DEFAULT_ANNOTATIONS`. A partial object literal will not
// compile.
annotations: createAnnotations({
readonly: true,
destructive: false,
idempotent: true,
requiresApproval: false,
openWorld: true,
streaming: false,
}),
execute: (inputs) => {
const user = users[inputs.userId as string];
if (!user) {
return { id: inputs.userId as string, name: 'Unknown', email: 'unknown@example.com' };
}
return { ...user };
},
});Demonstrates destructive annotations, ModuleExample for AI-perceivable documentation, metadata, and ContextLogger usage.
import { Type } from '@sinclair/typebox';
import { FunctionModule, ContextLogger, createAnnotations } from 'apcore-js';
import type { Context } from 'apcore-js';
export const sendEmailModule = new FunctionModule({
moduleId: 'email.send',
description: 'Send an email message',
inputSchema: Type.Object({
to: Type.String(),
subject: Type.String(),
body: Type.String(),
// `x-sensitive: true` (or a `_secret_` field-name prefix) is what makes the
// executor redact the value in captured inputs/outputs and logs.
apiKey: Type.String({ 'x-sensitive': true }),
}),
outputSchema: Type.Object({
status: Type.String(),
messageId: Type.String(),
}),
tags: ['email', 'communication', 'external'],
version: '1.2.0',
metadata: { provider: 'example-smtp', maxRetries: 3 },
annotations: createAnnotations({
readonly: false,
destructive: true,
idempotent: false,
requiresApproval: false,
openWorld: true,
streaming: false,
}),
examples: [
{
title: 'Send a welcome email',
inputs: { to: 'user@example.com', subject: 'Welcome!', body: '...', apiKey: 'sk-xxx' },
output: { status: 'sent', messageId: 'msg-12345' },
description: 'Sends a welcome email to a new user.',
},
],
execute: (inputs, context: Context) => {
const logger = ContextLogger.fromContext(context, 'send_email');
logger.info('Sending email', { to: inputs.to as string, subject: inputs.subject as string });
const hash = Math.abs(
(inputs.to as string).split('').reduce((a, c) => a + c.charCodeAt(0), 0) % 100000,
);
const messageId = `msg-${String(hash).padStart(5, '0')}`;
logger.info('Email sent successfully', { messageId });
return { status: 'sent', messageId };
},
});import { Type } from '@sinclair/typebox';
import { module } from 'apcore-js';
export const addModule = module({
id: 'math.add',
description: 'Add two integers',
inputSchema: Type.Object({ a: Type.Number(), b: Type.Number() }),
outputSchema: Type.Object({ sum: Type.Number() }),
execute: (inputs) => ({ sum: (inputs.a as number) + (inputs.b as number) }),
});# Install dependencies
npm install
# Type check
npm run typecheck
# Run tests
npm test
# Run tests in watch mode
npm run test:watch
# Build
npm run build- Core executor pipeline
- Schema validation (strict mode, type coercion)
- Middleware chain (ordering, transforms, error recovery, circuit breaker)
- ACL enforcement (patterns, conditions, identity types)
- Registry system (scanner, metadata, entry points, dependencies, multi-class discovery)
- Binding loader (YAML loading, target resolution, schema modes)
- Observability (tracing, BatchSpanProcessor, metrics, Prometheus export, structured logging with redaction)
- Event system (circuit breaker wrapper, subscriber types, filter/file/stdout)
- System modules (health, manifest, usage, control, audit trail, overrides persistence, Prometheus usage metrics)
- Async tasks (pluggable store, retry backoff, reaper)
- Cross-language conformance suite (
tests/conformance.test.ts) — canonical JSON fixtures fromapcore/conformance/fixtures/run identically across Python, TypeScript, and Rust SDKs
- Documentation: https://aiperceivable.github.io/apcore/getting-started/
- Specification: https://github.com/aiperceivable/apcore
- GitHub: https://github.com/aiperceivable/apcore-typescript
- npm: https://www.npmjs.com/package/apcore-js
- Issues: https://github.com/aiperceivable/apcore-typescript/issues
Apache-2.0