Files
Tianyi Cui f7323354bb docs: generate each subsystem's cordis surface into its own page; delete the flat catalogs
Rebuild of the region machinery (PR3) on the post-#904 Typert projection:
renderPageRegion/renderInheritedPage live in dsh-typert-generator beside the
projection; scripts/gen-cordis-catalog.ts owns the curated SERVICE_PAGE /
EVENT_SCOPE_PAGE / SERVICE_WALK_EXEMPTIONS / LINK_MAP partition (fail-loud in
both directions, with the independent Context-merge scan backstopping the
projection's blind spot), spliceRegion, and the guarded pair auto-record.
docs/cordis-catalog/ is deleted: the flat events/services catalogs dissolve
into per-page regions and docs/cordis-catalog/core moves to docs/cordis-api/
with the inherited tier as its own generated page. The partition absorbs the
post-regrouping surface: ctx.typert → invariants.md, ctx.directoryPicker →
workspace.md, skills/* events → skills.md, and the four launcher-provided tui
accessor values join the named exemptions.
2026-08-09 01:31:57 +08:00

2.6 KiB

Service

The base class for context services. A subclass loaded as a plugin registers itself as ctx.<name>.

Base class for services that expose a named API on ctx.

Subclasses call super(ctx, name) from their constructor. The service is registered immediately and is automatically removed with the owning fiber.

Source

service.name

/** The service name this instance is registered under. */
public name!: string

The service name this instance is registered under.

Source

Static members

Service.init

/** Symbol key of an instance method run after construction (class plugins). */
static readonly init: unique symbol

Symbol key of an instance method run after construction (class plugins).

Source

Service.check

/** Symbol key of the availability predicate passed to `ctx.provide()`. */
static readonly check: unique symbol

Symbol key of the availability predicate passed to ctx.provide().

Source

Service.config

/** Symbol key of the phantom intercept-config type parameter. */
static readonly config: unique symbol

Symbol key of the phantom intercept-config type parameter.

Source

Service.invoke

/** Symbol key of the call body making a service callable (e.g. `ctx.logger()`). */
static readonly invoke: unique symbol

Symbol key of the call body making a service callable (e.g. ctx.logger()).

Source

Service.extend

/** Symbol key of the helper deriving an extended service instance. */
static readonly extend: unique symbol

Symbol key of the helper deriving an extended service instance.

Source

Service.tracker

/** Symbol key of the tracker metadata used for context tracing. */
static readonly tracker: unique symbol

Symbol key of the tracker metadata used for context tracing.

Source

Service.resolveConfig

/** Symbol key of the intercept-config resolution helper below. */
static readonly resolveConfig: unique symbol

Symbol key of the intercept-config resolution helper below.

Source