lingtai-kernel-dev · git:20260714.b410ffc · 2026-07-14 · sha256 96f1f85ee78a108b

lingtai-kernel-dev git:20260714.b410ffcA

Immutable. This exact content is served forever at /api/v1/blob/96f1f85ee78a108b.

---
name: lingtai-kernel-dev
description: >
  Mandatory repository-local development guide for LingTai's Python kernel and
  runtime. Use this before changing code, architecture documents, tests,
  packaging, capabilities, adapters, or developer documentation in
  lingtai-kernel. Routes each task through the exact baseline, the distributed
  ANATOMY/CONTRACT systems, focused validation, and pull-request safety gates.
related_files:
- ANATOMY.md
- CONTRACT.md
- CONTRIBUTING.md
- docs.yaml
- src/lingtai/intrinsic_skills/lingtai-kernel-anatomy/SKILL.md
- tests/test_architecture_documents.py
maintenance: |
  Mandatory repository-local development router; update it, tests/test_architecture_documents.py's public-entry-points test, and README/Anatomy/Contract entry routes together whenever the workflow, the docs.yaml governance pointer, or the pull-request/side-effect gate changes.
---

# LingTai Kernel Development

Read this skill before every development task in this repository. It owns the
**workflow**, not the architecture facts or interface promises. Follow its links
instead of copying the root documents into this file.

Above all, the root [`CONTRACT.md`](../CONTRACT.md) `## Design principles`
section is mandatory reading, and you MUST apply those principles to every
change: gate any new or expanded i18n on explicit human confirmation, prefer
progressive disclosure, ensure every capability you touch is taught by a manual
(what/how/why), and keep that manual discoverable from **both** the corresponding
`CONTRACT.md` and its paired `ANATOMY.md` (`related_files` on both twins) — one
edge alone is a defect.

## First establish the task and baseline

1. Re-read the latest human or maintainer instruction. Separate the requested
   change from suggested follow-up work and from unauthorized side effects.
2. Name the selected baseline: normally live `origin/main`, or an explicit tag
   or commit chosen by the maintainer.
3. Work in a real repository worktree. Before analysis or editing, prove the
   worktree is clean and `HEAD` equals the selected baseline. A directory name
   or recorded SHA without equality is not enough.
4. Use a focused branch and keep unrelated local/runtime worktrees untouched.

See [`CONTRIBUTING.md`](../CONTRIBUTING.md) for the public contribution
workflow and its route to the full coding-agent and test reference.

## Read the distributed systems before editing

Use progressive disclosure in this order:

1. Read root [`ANATOMY.md`](../ANATOMY.md), then descend through
   the nearest child
   anatomy until cited code answers where the relevant files, connections,
   composition, and state live.
2. Read root [`CONTRACT.md`](../CONTRACT.md), **beginning with its
   `## Design principles` section, and apply those principles to every change**
   (i18n gate, progressive disclosure, every-capability-has-a-manual, and manual
   discoverability from both the corresponding Contract and Anatomy). If the
   component is
   governed, read its
   paired local contract before changing its interface or expected behavior.
3. Read the cited code and narrow tests. Anatomy is navigation, not evidence in
   place of code; Contract is the normative promise, not a description to weaken
   when implementation drifts.
4. Load a narrower manual only when the task needs its commands, examples, or
   troubleshooting. Do not preload unrelated references.

The three local systems have different jobs:

- **ANATOMY** tells you where code is and how it is connected.
- **CONTRACT** tells you what interfaces and expected agent behavior promise.
- **This skill** tells you how to develop and validate a change.

## Make the smallest complete change

Before editing, state the relevant invariant, the intended variation axis, and
the explicit non-goals. Prefer one behavior-locked boundary or vertical slice
over a directory reshuffle or speculative abstraction.

For every code or architecture-document change, assess both distributed systems:

- Files, symbols, connections, composition, or state ownership changed:
  update the relevant Anatomy in the same PR.
- Port, Adapter, Behavior, error, ordering, retry, cancellation, recovery, or
  state semantics changed: update the relevant Contract and shared contract
  tests in the same PR.
- Both changed: update the pair together.
- Neither changed: record that both were checked; do not create documentation
  churn to simulate compliance.

Follow the repair direction defined by the roots. Verified code is normally the
structural truth for Anatomy. Contract is normative for interface and Behavior:
implementation drift is a defect unless a maintainer explicitly authorizes a
promise change. Do not create a second graph registry; maintain YAML
`related_files` around the nodes you touch.

### Classify the Anatomy/Contract relationship first

Follow the full pairing and ownership rule in root
[`CONTRACT.md`](../CONTRACT.md). A governed architectural component owns
reciprocal Anatomy/Contract twins; an implementation, Adapter, or
navigation-only Anatomy may instead point to exactly one owning governed
Contract and explain why it has no independent local Contract. Read Anatomy
for structure and Contract for promises, following their reciprocal links
rather than copying either body. Never manufacture an empty or duplicate
Contract for filename symmetry. If the relationship does not satisfy the root
rule, stop and report the root-defined mismatch fields and suggested action;
do not normalize or auto-fix it without authorization.

### Copy the canonical Maintenance block exactly

When you create or update a child component `CONTRACT.md`, its `maintenance`
frontmatter value is not yours to write. It is the **canonical Maintenance
block** owned by the root [`CONTRACT.md`](../CONTRACT.md), delimited by the
`<!-- CANONICAL-MAINTENANCE v<N> BEGIN -->` and `<!-- CANONICAL-MAINTENANCE END -->`
markers in its `## Template` section:

1. Copy that block **byte-for-byte** into the child's `maintenance` value —
   including the marker comment lines and the version tag. Do not paraphrase,
   reword, reindent, translate, or "improve" it. Every governed child carries
   the identical block; a root edit therefore requires every governed child to
   be recopied and revalidated before the graph can pass again.
2. Run the mechanical consistency check:

   ```bash
   python -m pytest -q tests/test_architecture_documents.py
   ```

   It extracts the canonical block from the root, computes its version and hash,
   and compares every governed child's `maintenance` value byte-for-byte.
3. On any mismatch — different text, a different or missing version marker, a
   missing or duplicated marker — the check hard-fails and reports the
   component, path, expected canonical version/hash, actual version/hash, and
   the first differing position. **Stop and report that diagnostic.** Do not
   silently normalize, hand-edit, or auto-fix the child to force a pass; a
   mismatch means either the child drifted (recopy the canonical block) or the
   root block genuinely changed (a convention change that bumps the canonical
   version and the root `contract_version` and revalidates every child under
   explicit authorization). The affected change stays blocked until the check
   passes again.

## Validate in layers

Run the narrowest decisive checks first, then the affected broader checks. At a
minimum:

```bash
python -m pytest -q <targeted-tests>
python -m pytest -q tests/test_architecture_documents.py  # when either graph changes
# Run the canonical Anatomy drift checker in --check mode (see the Anatomy skill).
git diff --check
```

Also run package, import, build, adapter, or source-drift tests when the diff
crosses those boundaries. Use the repository virtual environment, inspect every
non-zero exit, and never report a timed-out or interrupted suite as passing.
Review the final diff against the human instruction and name any untested risk.

## Pull-request and side-effect gate

Use a pull request; never push directly to `main`. Before committing, pushing,
or opening the PR:

1. re-read the latest human scope and authorization;
2. verify live base equality and stop if the base moved;
3. verify local Git author identity and the intended GitHub CLI account;
4. ensure the staged diff contains only the reviewed change;
5. capture focused validation evidence and unresolved risks.

Commit, push, open/close/merge PRs, publish, install, refresh, release, or change
configuration only within the maintainer's explicit authorization for that
specific side effect. Opening a PR does not imply permission to merge it.

## Keep documentation frontmatter current

Every Markdown file in the repository — including this file's own
frontmatter above — must carry `related_files` and `maintenance` YAML
metadata, checked by [`docs.yaml`](../docs.yaml) and validated by
`scripts/check_docs_governance.py` / `tests/test_docs_governance.py`. This
is a separate, generic baseline from the Anatomy/Contract frontmatter
schemas above — do not conflate them. When you add or edit a doc, fill in
real `related_files`/`maintenance`; when you create a new governed
component ANATOMY.md/CONTRACT.md, its stricter specialized schema already
satisfies this baseline.

## Grow this as the repository agent dev kit

This directory owns the kernel repository's complete reusable development kit,
not only this entry document. Add supporting material when real repeated work
justifies it:

- `scripts/` for deterministic checks, maintenance, or generation;
- `references/` for deep procedures loaded only when needed;
- `assets/` for templates, examples, or fixed resources.

Do not create empty directories or copy repository rules into support files.
Keep one `SKILL.md` entry, let it route progressively, and validate every script
or asset against the workflow that needs it.

## Keep the network maintainable

When this workflow changes, update this repository-local skill and the
README/Anatomy/Contract entry routes together. Change
the normative root documents only when their own meaning, schema, or promises
change. Keep this file a concise router: detailed
architecture belongs in Anatomy/Contract, and tool-specific recipes belong in
the narrower manuals they own.