Change an existing taninsam function without breaking its users — what may and may not be edited, the overload pattern for extending a signature, deprecating instead of removing, and how to audit a diff for breaking changes. Use when modifying, extending,…
Write a taninsam commit message that semantic-release can act on — the conventional-commit type/scope/description rules used in this repo, which type produces which version bump, and the ban on breaking-change markers. Use before committing anything here, or…
Raise the Stryker mutation score of taninsam — run mutation testing, read the surviving mutants, and add the unit tests that kill them. Use when asked about mutation testing, Stryker, mutation score, surviving mutants, or to harden the tests of a function…
Add a function to the taninsam library with its Documentation Driven then Test Driven workflow — scaffold with plop, write the TSDoc contract first, then the vitest spec, then the implementation, then verify 100% coverage and mutation resistance. Use whenever…