free-code-claude-cli
https://raw.githubusercontent.com/aradotso/trending-skills/main/skills/free-code-claude-cli/SKILL.md
github.com/aradotso/trending-skills
Scanned Thu, 28 May 2026 17:33:24 GMT
Scan ID crawl-dvxz7rszsr0ivww85gktqlzk · 1ms
D
SCORE 30 / 100
Verdict: Do not install
1 critical finding.
This skill exfiltrates environment secrets ($ANTHROPIC_API_KEY) plus 5 other issues listed below.
1 critical4 high1 medium6 rules passed
Why grade D?
score · 30 / 100The current grade reflects 1 critical finding (any single CRIT → D).
1 CRIT4 HIGH1 MED0 LOW
To reach a higher grade
- CReach Ctarget score 55
Resolve all 1 CRIT findings.
- BReach Btarget score 75
Resolve all 1 CRIT + 2 of 4 HIGH (cap is 2).
- AReach Atarget score 95
Resolve all 1 CRIT + all 4 HIGH.
Thresholds are documented at /docs/grading. Source-of-truth is the grade() function in @skillox/scanner.
Findings · ordered by severity
critSkill references secret env var $ANTHROPIC_API_KEYThe skill instructions reference `$ANTHROPIC_API_KEY`, 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 $ANTHROPIC_API_KEY
The skill instructions reference `$ANTHROPIC_API_KEY`, which contains a credential. If an attacker can lure the agent into including this in an outbound URL or message, the credential leaks.
107
108```bash
109export ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY"← references $ANTHROPIC_API_KEY — potential credential leak
110free-code --model claude-opus-4-6
111```
highDangerous shell pattern: curl | shellThe skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.▾
Dangerous shell pattern: curl | shell
The skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.
26
27```bash
28curl -fsSL https://raw.githubusercontent.com/paoloanzn/free-code/main/install.sh | bash← curl | shell — common in destructive or supply-chain attacks
29```
30
highDangerous shell pattern: curl | shellThe skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.▾
Dangerous shell pattern: curl | shell
The skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.
35```bash
36# Requires Bun >= 1.3.11
37curl -fsSL https://bun.sh/install | bash← curl | shell — common in destructive or supply-chain attacks
38
39git clone https://github.com/paoloanzn/free-code.git
highDangerous shell pattern: curl | shellThe skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.▾
Dangerous shell pattern: curl | shell
The skill contains a shell command pattern (`curl | shell`) commonly used in destructive or supply-chain attacks.
290
291```bash
292curl -fsSL https://bun.sh/install | bash← curl | shell — common in destructive or supply-chain attacks
293source ~/.bashrc # or ~/.zshrc
294```
highSensitive filesystem path referencedThe skill references a path (`~\/\.aws\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.▾
Sensitive filesystem path referenced
The skill references a path (`~\/\.aws\/`) that contains credentials or system secrets. Reading this from an unsandboxed skill is a credential-exfiltration vector.
136export CLAUDE_CODE_USE_BEDROCK=1
137export AWS_REGION="us-east-1"
138# Uses standard AWS credential chain: env vars, ~/.aws/config, or IAM role← sensitive path — credential-exfiltration vector
139free-code
140```
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-dvxz7rszsr0ivww85gktqlzk