Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
16 of your 83 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 1.4s · analysis 7.5s · 2.5 MB · GitHub API rate-limit (preflight)

BankrBot/skills

https://github.com/BankrBot/skills · scanned 2026-06-05 19:57 UTC (4 days, 14 hours ago) · 10 languages

123 raw signals (77 security + 46 graph) 10th percentile · Python · tiny (<2K LoC) System graph score 92 (lower by 49)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 14 hours ago · v2 · 44 actionable findings from 2 signal sources. 56 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 40.0 0.15 6.00
security_score 54.0 0.25 13.50
testing_score 0.0 0.20 0.00
documentation_score 70.0 0.15 10.50
practices_score 40.0 0.15 6.00
code_quality 77.9 0.10 7.79
Overall 1.00 43.8
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade D (44/100). Dimensions: security 54, maintainability 40. 77 findings (3 security). 1,764 lines analyzed.

Showing 32 of 44 actionable findings. 100 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

critical Security checks security secrets conf 0.95 26 occurrences Detected a Generic API Key, potentially exposing access to various services and sensitive operations.
Gitleaks detected a committed secret or credential pattern.
12 files, 13 locations
alchemy/references/data-portfolio-apis.md:84, 165 (2 hits)
agenticbets/SKILL.md:252
agenticbets/references/agent-usage.md:138
agenticbets/scripts/agenticbets.py:27
alchemy/references/data-transfers-api.md:93
clanker/references/airdrops.md:100
clanker/references/rewards.md:239
darksol-random-oracle/SKILL.md:27
critical Security checks security secrets conf 0.95 19 occurrences Discovered a potential authorization token provided in a curl command header, which could compromise the curl accessed resource.
Gitleaks detected a committed secret or credential pattern.
8 files, 19 locations
bankr/references/sign-submit-api.md:35, 83, 164, 180, 197 (5 hits)
productclank/references/FUNDING.md:73, 93, 105, 109 (4 hits)
bankr/references/api-workflow.md:42, 86, 125 (3 hits)
signals/SKILL.md:51, 67, 79 (3 hits)
bankr/SKILL.md:163
bankr/references/safety.md:220
litcoin/references/protocol.md:164
quicknode/references/hypercore-hyperliquid-reference.md:48
low Security checks quality Quality conf 1.00 ✓ Repobility [MINED012] Curl Pipe Bash: curl ... | sh / bash — runs unverified network code.
Review and fix per the pattern semantics. See CWE-494 / A08:2021 for context.
gitlawb/scripts/setup.sh:12
high Security checks quality Quality conf 1.00 ✓ Repobility [MINED034] Python Subprocess Shell True: subprocess(..., shell=True) enables command injection.
Review and fix per the pattern semantics. See CWE-78 / for context.
onchainkit/scripts/create-onchain-app.py:18
high Security checks quality Quality conf 1.00 ✓ Repobility Phantom test coverage: test_node_modules
Test function `test_node_modules` runs code but contains no assert / expect / should call — it passes regardless of behaviour. Adds line coverage without verifying anything.
onchainkit/scripts/validate-setup.py:149
low Security checks security Injection conf 0.50 [SEC005] Command Injection Risk: Unsafe shell execution or eval of user input.
Use subprocess with shell=False and a list of args. Never eval user input.
onchainkit/scripts/create-onchain-app.py:18
medium Security checks quality Quality conf 1.00 [SEC125] AI placeholder credential left in source (your-api-key-here style): AI coding assistants frequently emit placeholder credentials shaped like `API_KEY = "your-api-key-here"` instead of pulling from env. These get committed verbatim — production code with a literal placeholder string is a near-certain bug, and the value also leaks what credential type the system expects to authentication crawlers. CWE-1188. Distinctive AI footprint: the exact phrase shape `your-X-here` is uncommon in hand
Replace with env lookup: `API_KEY = os.environ['SERVICE_API_KEY']`. Move actual key to a secret manager. Add a startup check that the env var is non-empty so missing config fails loudly instead of shipping the placeholder.
onchainkit/scripts/validate-setup.py:104
medium Security checks quality Quality conf 1.00 [SEC125] AI placeholder credential left in source (your-api-key-here style): AI coding assistants frequently emit placeholder credentials shaped like `API_KEY = "your-api-key-here"` instead of pulling from env. These get committed verbatim — production code with a literal placeholder string is a near-certain bug, and the value also leaks what credential type the system expects to authentication crawlers. CWE-1188. Distinctive AI footprint: the exact phrase shape `your-X-here` is uncommon in hand
Replace with env lookup: `API_KEY = os.environ['SERVICE_API_KEY']`. Move actual key to a secret manager. Add a startup check that the env var is non-empty so missing config fails loudly instead of shipping the placeholder.
onchainkit/scripts/setup-environment.py:48
low Security checks quality Error handling conf 0.55 ✓ Repobility 10 occurrences Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
4 files, 10 locations
onchainkit/scripts/validate-setup.py:26, 41, 51, 66, 145, 188 (6 hits)
onchainkit/scripts/setup-environment.py:126, 147 (2 hits)
agenticbets/scripts/agenticbets.py:107
onchainkit/scripts/create-onchain-app.py:148
Error handlingquality
medium Security checks software dependencies conf 0.90 npm package `@types/react-dom` is 1 major version(s) behind (^18 -> 19.2.3)
`@types/react-dom` is pinned/resolved at ^18 but the latest stable release on the npm registry is 19.2.3 (1 major version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs raise.
onchainkit/assets/templates/basic-app/package.json
high Security checks software dependencies conf 0.70 Remote install command pipes network code directly to a shell
Agent helper projects often publish one-line installers. `curl | sh` style commands are convenient, but they bypass review unless the script is pinned, signed, or checksum-verified.
gitlawb/scripts/setup.sh:12
medium System graph quality Integrity conf 1.00 `fetch()` without try/.catch or AbortSignal — helixa/scripts/mint-agent.js:41
Bare `fetch(...)` will throw an unhandled rejection on network failure. Wrap in try/catch, attach a `.catch(...)`, or pass an AbortSignal with a timeout.
runtime safetyRobustness
medium System graph security security conf 1.00 Insecure pattern 'subprocess_shell_true' in onchainkit/scripts/create-onchain-app.py:18
Found a known-risky pattern (subprocess_shell_true). Review and replace if possible.
onchainkit/scripts/create-onchain-app.py:18 Subprocess shell true
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — onchainkit/scripts/create-onchain-app.py:18
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — onchainkit/scripts/setup-environment.py:115
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph cicd CI/CD security conf 1.00 No CI/CD pipelines detected
No GitHub Actions, GitLab CI, or CircleCI configs found. Without CI you can't gate deploys on tests/lints.
CI/CD securityCoverage
medium System graph quality Tests conf 1.00 Very low test-to-source ratio
0 test file(s) for 9 source file(s) (ratio 0.00). Consider adding integration or unit tests for critical paths.
Coverage
low Security checks quality Documentation No LICENSE file
Add a LICENSE file to your repository. Use choosealicense.com to pick the right license (MIT for permissive, Apache 2.0 for patent protection, GPL for copyleft).
low Security checks software dependencies conf 0.90 npm package `@tanstack/react-query` is minor version(s) behind (^5.28.0 -> 5.101.0)
`@tanstack/react-query` is pinned/resolved at ^5.28.0 but the latest stable release on the npm registry is 5.101.0 (minor version(s) behind). Outdated dependencies accumulate unpatched bugs and make future security upgrades harder. This is the version-currency signal Dependabot version-update PRs r…
onchainkit/assets/templates/basic-app/package.json
low System graph software Dead code candidate conf 1.00 File has no detected symbols: onchainkit/assets/templates/basic-app/next.config.js
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph quality Integrity conf 1.00 3 occurrences Near-duplicate function bodies in 2 places
Functions with the same first-5-line body hash: symbiosis/scripts/symbiosis-swap.py:to_smallest_units, symbiosis/scripts/symbiosis-quote.py:to_smallest_units This is *the* AI-coder failure mode (4× more duplication in vibe-coded repos — see https://jw.hn/ai-code-hygiene). Consolidate or document w…
3 occurrences
repo-level (3 hits)
duplicatesduplication
low System graph software Dead code conf 1.00 Possibly dead Python function: check_api_keys
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:88
low System graph software Dead code conf 1.00 Possibly dead Python function: check_env_file
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:69
low System graph software Dead code conf 1.00 Possibly dead Python function: check_npm_scripts
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:116
low System graph software Dead code conf 1.00 Possibly dead Python function: check_onchainkit_installed
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:45
low System graph software Dead code conf 1.00 Possibly dead Python function: check_project_structure
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:30
low System graph software Dead code conf 1.00 Possibly dead Python function: check_required_dependencies
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:54
low System graph software Dead code conf 1.00 Possibly dead Python function: check_typescript_support
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:134
low System graph software Dead code conf 1.00 Possibly dead Python function: encode_claimable
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
agenticbets/scripts/agenticbets.py:157
low System graph software Dead code conf 1.00 Possibly dead Python function: run_build_test
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:163
low System graph software Dead code conf 1.00 Possibly dead Python function: test_node_modules
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
onchainkit/scripts/validate-setup.py:149
low System graph frontend Frontend quality conf 1.00 Stray `console.log` in TS/JS — helixa/scripts/mint-agent.js:51
Replace with the toast helper, an error boundary, or remove. `console.warn` / `console.error` are acceptable. Why: Hygiene — easy to leak debug output. Rule id: fq.console-leak
Fq console leak
For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/b075e662-8ed3-4c68-8ef1-d3bc0a880163/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/b075e662-8ed3-4c68-8ef1-d3bc0a880163/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.