Scan Report
12 /100
free-scaling
$0 test-time scaling with online learning. Classify, generate, and verify using free model ensembles via NVIDIA NIM
Legitimate AI ensemble classification/generation tool using NVIDIA NIM APIs with optional Copilot integration. All functionality is properly documented; credential access is limited to necessary GitHub token refresh for Copilot features.
Safe to install
This skill is safe to use. Ensure GitHub OAuth tokens are protected at rest and audit ~/.openclaw credential files for proper permissions.
Findings 2 items
| Severity | Finding | Location |
|---|---|---|
| Low | GitHub OAuth token access for Copilot integration Sensitive Access | nim_ensemble/voter.py:79 |
| Info | Optional Copilot feature properly documented Doc Mismatch | SKILL.md:28 |
| Resource | Declared | Inferred | Status | Evidence |
|---|---|---|---|---|
| Network | READ | READ | ✓ Aligned | SKILL.md:line1 - Uses NIM/Copilot APIs |
| Filesystem | NONE | READ | ✓ Aligned | nim_ensemble/voter.py:79-108 - Reads GitHub auth-profiles.json and token cache |
| Environment | READ | READ | ✓ Aligned | voter.py:60 - Reads NVIDIA_API_KEY only |
| Shell | NONE | NONE | — | No subprocess/eval/exec found |
3 findings
Medium External URL 外部 URL
https://build.nvidia.com README.md:3 Medium External URL 外部 URL
https://integrate.api.nvidia.com/v1/chat/completions nim_ensemble/models.py:3 Medium External URL 外部 URL
https://api.individual.githubcopilot.com/chat/completions nim_ensemble/voter.py:39 File Tree
18 files · 171.9 KB · 4916 lines Python 16f · 4526L
Markdown 2f · 390L
├─
▾
nim_ensemble
│ ├─
__init__.py
Python
│ ├─
benchmark.py
Python
│ ├─
capability_map.py
Python
│ ├─
cascade.py
Python
│ ├─
cli.py
Python
│ ├─
elo.py
Python
│ ├─
evolve.py
Python
│ ├─
feedback.py
Python
│ ├─
generate.py
Python
│ ├─
health.py
Python
│ ├─
models.py
Python
│ ├─
parser.py
Python
│ └─
voter.py
Python
├─
▾
presets
│ ├─
__init__.py
Python
│ └─
audit.py
Python
├─
▾
tests
│ └─
test_core.py
Python
├─
README.md
Markdown
└─
SKILL.md
Markdown
Dependencies 1 items
| Package | Version | Source | Known Vulns | Notes |
|---|---|---|---|---|
stdlib-only | N/A | Python 3.10+ stdlib | No | No external pip dependencies - uses urllib.request for HTTP |
Security Positives
✓ No shell execution, subprocess, eval, or exec patterns found
✓ Uses stdlib only (no pip dependencies) - minimal supply chain risk
✓ All external API calls go to legitimate NVIDIA NIM and GitHub Copilot endpoints
✓ No base64-encoded payloads or obfuscated code
✓ No data exfiltration to unknown infrastructure
✓ No credential theft beyond what's necessary for documented features
✓ No persistence mechanisms (no cron, startup hooks, or backdoors)
✓ ThreadPoolExecutor used correctly for parallel API calls with proper error handling