dart-best-practices
https://raw.githubusercontent.com/kevmoo/dash_skills/main/.agent/skills/dart-best-practices/SKILL.md
github.com/kevmoo/dash_skills
Scanned Thu, 28 May 2026 17:25:28 GMT
Scan ID crawl-rb7yt081us4pbnphdgk80v3h · 1ms
F
SCORE 0 / 100
Verdict: Do not install
2 critical findings.
This skill triggers the hardcoded-secrets rule plus 2 other issues listed below.
2 critical0 high1 medium9 rules passed
Why grade F?
score · 0 / 100The current grade reflects 2 critical findings (any 2+ CRITs → F).
2 CRIT0 HIGH1 MED0 LOW
To reach a higher grade
- DReach Dtarget score 30
Resolve 1 of your 2 CRIT findings — any single CRIT still keeps you at D.
- CReach Ctarget score 55
Resolve all 2 CRIT findings.
- BReach Btarget score 75
Resolve all 2 CRIT.
- AReach Atarget score 95
Resolve all 2 CRIT.
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Findings · ordered by severity
critHardcoded secret detected: PEM private key blockThe skill body contains what looks like a literal `PEM private key block`. Secrets must be read from the environment, never embedded in a published skill — embedded keys leak the moment the skill is mirrored or indexed.▾
Hardcoded secret detected: PEM private key block
The skill body contains what looks like a literal `PEM private key block`. Secrets must be read from the environment, never embedded in a published skill — embedded keys leak the moment the skill is mirrored or indexed.
24**Avoid:**
25```dart
26final pem = '-----BEGIN RSA PRIVATE KEY-----\n' +← PEM private key block — must be env-sourced, never inline
27 base64Encode(fullBytes) +
28 '\n-----END RSA PRIVATE KEY-----';
critHardcoded secret detected: PEM private key blockThe skill body contains what looks like a literal `PEM private key block`. Secrets must be read from the environment, never embedded in a published skill — embedded keys leak the moment the skill is mirrored or indexed.▾
Hardcoded secret detected: PEM private key block
The skill body contains what looks like a literal `PEM private key block`. Secrets must be read from the environment, never embedded in a published skill — embedded keys leak the moment the skill is mirrored or indexed.
32```dart
33final pem = '''
34-----BEGIN RSA PRIVATE KEY-----← PEM private key block — must be env-sourced, never inline
35${base64Encode(fullBytes)}
36-----END RSA PRIVATE KEY-----''';
medNo capability manifest declaredThe skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.rule: no-manifest▾
No capability manifest declared
The skill ships without a `manifest.yaml` or `capabilities` block in its frontmatter. Without a manifest, the runtime cannot enforce what this skill is permitted to do.
rule:
no-manifestskillox.io/r/crawl-rb7yt081us4pbnphdgk80v3h