agentsclimarketplace

Typescript quality

Skill luigipascal/skill-forge/examples/typescript-quality

CLI to validate, scaffold, and install Agent Skills for Cursor and agentskills.io-compatible agents

Install
npx -y skills add luigipascal/skill-forge --skill typescript-quality

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 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

Applies TypeScript and Node.js quality defaults for new code — strict types, minimal diffs, match surrounding conventions, no over-engineering. Use when writing or reviewing .ts/.tsx in Node, Vite, Next.js, or CLI projects.

SKILL.md

1.3 KB, 230 tokens by cl100k_base, as published. Nobody here has run it

TypeScript Quality

Defaults

  1. Minimize scope — smallest correct diff; no drive-by refactors
  2. Match the repo — naming, imports, error style, test runner
  3. Strict typing — avoid any; prefer existing domain types
  4. No premature abstraction — inline one-liners beat tiny helpers
  5. Comments — only non-obvious business or protocol details

Before editing

  • Read surrounding files and tests
  • Grep for existing patterns (same feature elsewhere)
  • Run the project's lint/test command if available

Common checks

  • async functions: handle errors at boundaries; don't swallow failures
  • Public APIs: explicit return types when exported
  • Config/env: never commit secrets; use .env.example placeholders
  • Windows paths: prefer path joins; quote paths in shell examples

Review checklist

  • Types compile (tsc / project build)
  • Tests updated or intentionally not needed
  • No unrelated file changes
  • User-facing text is clear and complete sentences

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.