Skip to main content

plm-skill-kernel

Wave 2 Conv A (FTR-604). The Skill Kernel package — sibling of plm-engine-core — that hosts the decorator-based Skill SDK, the V1 in-process dispatcher, and the Kernel HTTP server stub matching CR.10 §7.bis verbatim.

Layout

02_App/plm-skill-kernel/
├── pyproject.toml             # editable install + import-linter contracts
├── plm_skill_kernel/
│   ├── __init__.py            # re-exports `skill`, `SkillContext`, etc.
│   ├── __main__.py            # `python -m plm_skill_kernel` → server
│   ├── server.py              # FastAPI app at POST /v1/skills/{id}/invoke
│   ├── dispatcher.py          # V1 in-process invoker
│   ├── registry.py            # boot wiring — discovers + registers skills
│   ├── sdk/
│   │   ├── decorator.py       # `@skill(id=, version=)`
│   │   ├── context.py         # SkillContext Pydantic
│   │   ├── types.py           # SkillInvokeRequest / SkillInvokeResult
│   │   └── _registry.py       # in-process decorator registry
│   └── skills/                # 3 starter skills (Q-W2A-1 nested layout)
│       ├── cleansing/
│       │   ├── normalise.py   # cleansing.normalise / 1.0.0 / L2
│       │   └── dedupe.py      # cleansing.dedupe / 1.0.0 / L2
│       └── bpmn/
│           └── generate.py    # bpmn.generate / 1.0.0 / L1 (thin proxy)
└── tests/                     # unit + ASGI in-process integration

Editable install

cd 02_App/backend
.\venv\Scripts\Activate.ps1                  # Windows
pip install -e ../plm-skill-kernel

Mirrors the plm-engine-core editable-install pattern.

Dev launch (Q-W2A-3)

python -m plm_skill_kernel               # uvicorn on port 8100
plm-skill-kernel --port 8100             # equivalent CLI

The backend at port 8000 is unaffected. The V1.1 loopback round-trip (D-CONV-M-4 closure) sends HTTP from the Engine Core dispatcher to this Kernel server when SKILL_KERNEL_LOOPBACK=on.

V1 wire contract

POST /v1/skills/{id}/invoke — frozen at CR.10 §7.bis.

Headers:
  X-Core-Caller: <UUID>            (required when caller is Core)
  Idempotency-Key: <uuid>          (optional, V1)
  traceparent: <W3C>               (optional)

Request body (SkillInvokeRequest):
  payload:        Dict[str, Any]
  version:        str  ("1.0.0", etc.)
  autonomy_hint:  Optional[str]    ("L1" / "L2" / "L3")

Response body (SkillInvokeResult):
  ok:             bool
  result:         Optional[Dict[str, Any]]
  error:          Optional[SkillErrorEnvelope]
  deferred_to:    Optional[str]
  cancelled:      Optional[bool]

Skill authoring (Decision #59 — decorator)

from plm_skill_kernel import skill, SkillContext

@skill(id="cleansing.normalise", version="1.0.0")
async def normalise(payload: dict, ctx: SkillContext) -> dict:
    return {"normalised": _normalise_records(payload["records"])}

The decorator auto-registers into the in-process registry at module import time + carries version through to the federated manifest builder (CR.9).

Import-linter contracts

Two Forbidden contracts live in pyproject.toml:

  1. plm_skill_kernel MUST NOT import plm_engine_core — federation contract preservation. The two communicate over HTTP, not Python.
  2. plm_skill_kernel MUST NOT import plm_accelerators (Workbench) — mirror of the plm-engine-core constraint.

Run:

lint-imports --config 02_App/plm-skill-kernel/pyproject.toml

Tests

cd 02_App/plm-skill-kernel
python -m pytest -q

The V1.1 HTTP round-trip integration test mounts the FastAPI app via httpx.AsyncClient(ASGITransport) — no subprocess, no real port (Q-W2A-4).

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

plm_skill_kernel-1.4.0.tar.gz (101.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

plm_skill_kernel-1.4.0-py3-none-any.whl (108.6 kB view details)

Uploaded Python 3

File details

Details for the file plm_skill_kernel-1.4.0.tar.gz.

File metadata

  • Download URL: plm_skill_kernel-1.4.0.tar.gz
  • Upload date:
  • Size: 101.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for plm_skill_kernel-1.4.0.tar.gz
Algorithm Hash digest
SHA256 c4bc35a0a9a97d723fb9fa70bf453edd9b8387563b61215ade2e799c0c77047d
MD5 26b3e6e6e588d40615299928647ca127
BLAKE2b-256 188abbe0ea31decf04c3f1cee02274392cdc15fc6aa22b2d97b9cb90fd2d56a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for plm_skill_kernel-1.4.0.tar.gz:

Publisher: release-please.yml on plm-engine/plm-skill-kernel

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file plm_skill_kernel-1.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for plm_skill_kernel-1.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e2edfc8bcfe21b1e10b7da776037e0b32fd717c2b02aafc54416259d23af10e7
MD5 719f04a669381a0a165a966d9c30e94e
BLAKE2b-256 ab6eb9f4541308128cc7377cdcfa43a7c6d3b13f59a28a8f311267c0e1db5c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for plm_skill_kernel-1.4.0-py3-none-any.whl:

Publisher: release-please.yml on plm-engine/plm-skill-kernel

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.4.0 This release

2 files

1.3.0

2 files

1.2.0

2 files

1.1.0

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page