F
SCORE 0 / 100
$skillox install motSoon
Sign in to followFollowing emails you when a re-scan drops the grade. Opt-out is per-creator on /account/billing.
Why grade F?
score · 0 / 100The current grade reflects 5 critical findings (any 2+ CRITs → F).
5 CRIT0 HIGH1 MED0 LOW
To reach a higher grade
- DReach Dtarget score 30
Resolve 4 of your 5 CRIT findings — any single CRIT still keeps you at D.
- CReach Ctarget score 55
Resolve all 5 CRIT findings.
- BReach Btarget score 75
Resolve all 5 CRIT.
- AReach Atarget score 95
Resolve all 5 CRIT.
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Latest scan findings
Scan crawl-fwjz8ksxcjcjtcc1mombizxj · Thu, 28 May 2026 17:40:49 GMT · 1ms
critSkill references secret env var $DATABASE_URLThe skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $DATABASE_URL
The skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
141
142# Check DATABASE_URL
143if [ -z "$DATABASE_URL" ]; then← references $DATABASE_URL — potential credential leak
144 echo "FAIL: DATABASE_URL not set"
145else
critSkill references secret env var $DATABASE_URLThe skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $DATABASE_URL
The skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
147
148 # Test connection
149 if psql "$DATABASE_URL" -c "SELECT 1" > /dev/null 2>&1; then← references $DATABASE_URL — potential credential leak
150 echo "PASS: PostgreSQL reachable"
151
critSkill references secret env var $DATABASE_URLThe skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $DATABASE_URL
The skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
151
152 # Check pgvector
153 if psql "$DATABASE_URL" -c "SELECT extname FROM pg_extension WHERE extname='vector'" 2>/dev/null | grep -q vector; then← references $DATABASE_URL — potential credential leak
154 echo "PASS: pgvector extension installed"
155 else
critSkill references secret env var $DATABASE_URLThe skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $DATABASE_URL
The skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
158
159 # Check table exists
160 if psql "$DATABASE_URL" -c "\d archival_memory" > /dev/null 2>&1; then← references $DATABASE_URL — potential credential leak
161 echo "PASS: archival_memory table exists"
162
critSkill references secret env var $DATABASE_URLThe skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.▾
Skill references secret env var $DATABASE_URL
The skill instructions reference `$DATABASE_URL`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
162
163 # Count learnings
164 COUNT=$(psql "$DATABASE_URL" -t -c "SELECT COUNT(*) FROM archival_memory" 2>/dev/null | xargs)← references $DATABASE_URL — potential credential leak
165 echo "INFO: $COUNT learnings stored"
166 else
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/c/mot