Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 570 Bytes

File metadata and controls

25 lines (16 loc) · 570 Bytes

AGENTS: libpkgx

Public shared runtime library used across multiple pkgx tools.

Core Commands

  • deno task test
  • deno lint
  • deno task typecheck

Always Do

  • Treat public APIs as compatibility-sensitive.
  • Add or update tests for changed contract behavior.
  • Note downstream impact on pkgm, pkgo, dev, brewkit, and mcp.

Ask First

  • Breaking API or behavior changes.
  • Dependency upgrades with broad runtime impact.

Never Do

  • Never merge contract changes without compatibility notes.
  • Never bypass tests on shared utility hotspots.