smithery/ngxtm

Dart Best Practices

General purity standards for Dart development.

Installation

$ npx skills add smithery/ngxtm --skill dart-best-practices

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/ngxtm · top by installs.

npx skills add smithery/ngxtm

Browse all from smithery/ngxtm

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

More metadata
labels
["dart","clean-code"]
triggers
{"files":["**\/*.dart"],"keywords":["import","final","const","var","global"]}

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 706 B
  • docs SUMMARY.md 73 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

Dart Best Practices (P1)

  • Scoping:

- No global variables. - Private globals (if required) must start with _.

  • Immutability: Use const > final > var.
  • Config: Use --dart-define for secrets. Never hardcode API keys.
  • Naming: Follow effective-dart (PascalCase classes, camelCase members).
import 'models/user.dart'; // Good
import 'package:app/models/user.dart'; // Avoid local absolute