Ts npm prettier starter
Skill kongyo2/agent-primary-ts-starters/ts-npm-prettier-starter
npx -y skills add kongyo2/agent-primary-ts-starters --skill ts-npm-prettier-starterAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Add Prettier to a TypeScript npm project with agent-friendly defaults that minimize diff size and keep line numbers stable across LLM-driven edits. Use when bootstrapping a new TS project that needs auto-formatting, or when adding Prettier to an existing TS npm project — even if the user doesn't explicitly say "prettier" or "formatter".
SKILL.md
3.7 KB, as published. Nobody here has run it
TS + npm Prettier Starter (Agent-Friendly)
Use this when adding Prettier to a TypeScript npm project. In a monorepo, edit the workspace the user names — ask if it isn't named.
The defaults below treat the LLM agent as the primary editor, not human eyes. Prettier's human-tuned defaults (printWidth 80, etc.) reformat large regions when an agent edits a single line, shift surrounding line numbers, and silently invalidate old_string matches the agent is holding for upcoming edits in the same session. These settings shrink that failure surface.
Expected Outcome
prettieris indevDependenciesof the targetpackage.json..prettierrc.jsonexists with the agent-friendly settings below..prettierignoreexists coveringnode_modulesand common build artifacts.package.jsonscripts includeformat(write) andformat:check(read-only check).
Installation
npm add -D prettier
When prettier is already declared, keep its current version unless the user asks for a change.
Agent-Friendly Configuration
Create .prettierrc.json if it does not exist:
{
"printWidth": 120,
"trailingComma": "all",
"arrowParens": "always",
"semi": true,
"endOfLine": "lf"
}
Why each value is chosen for an agent-primary workflow:
printWidth: 120— wider than the default 80, so a one-line agent edit rarely triggers auto-wrap. Stable surrounding line counts keep bothold_stringmatches and conversational line-number references valid.trailingComma: "all"— appending an item to an array, object, or argument list becomes a single added-line diff instead of a two-line diff that also rewrites the previous line's,.arrowParens: "always"— adding a type annotation to an arrow parameter doesn't also force inserting parens, so the annotation edit stays a localized change.semi: true— ASI quirks don't silently change behavior when an agent prepends a line that starts with[,(,+,-, or/.endOfLine: "lf"— avoids whole-file CRLF reformat noise when Windows and Unix contributors share the repo.
When .prettierrc.* already exists, keep it. Surface the diff against the values above so the user can decide whether to migrate, but do not overwrite.
Ignore Patterns
Create .prettierignore if it does not exist:
node_modules
dist
build
coverage
*.min.js
package-lock.json
*.md
*.md is in the list because Prettier's markdown formatter reflows paragraphs, list spacing, and table column widths across edits, which breaks old_string matches the same way reformatted JS/TS would — and markdown is content, not code, so the formatting consistency isn't worth the agent-edit cost.
When .prettierignore already exists, append only the missing entries from the list above and leave existing entries in place.
Scripts
Add to package.json:
{
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check ."
}
}
When format already targets a different formatter, leave format untouched and add format:prettier alongside it.
Verification
npm run formatruns without error across the repository.npm run format:checkexits 0 after a one-timenpm run format..prettierrc.jsonparses as valid JSON.
References
- Prettier options: https://prettier.io/docs/en/options