Multi Language Feature Builder

Build multi-file features that span TypeScript and Python. Use when a feature requires changes in both languages. Use when this capability is needed.

tomevault-io 703e4b8 2 files · 1.7 KB Updated

File contents

Multi-Language Feature Builder

When asked to implement a feature that touches both TypeScript and Python:

  1. Identify the contract boundary (e.g., REST endpoint, shared schema, CLI interface) and agree on it before writing code in either language.
  2. Implement the Python side first; write the TypeScript side to match the agreed contract.
  3. Keep each language's code idiomatic — do not port Python patterns into TypeScript or vice versa.
  4. Update both language's tests together; a feature is not done until tests pass in both.

If the scope is unclear, ask for the entry point and expected output before starting.


Source: complytime-labs/lola-eval — distributed by TomeVault.

tomevault-io/skills-registry/tree/main/complytime-labs--lola-eval--multi-language-feature-builder commit 703e4b8556

Frequently asked questions

npx skillmds@latest add tomevault-io/multi-language-feature-builder