SKILLEMALL.ai

CC otp-challenger

Enable agents and skills to challenge users for fresh two-factor authentication proof (TOTP or YubiKey) before executing sensitive actions. Use this for identity verification in approval workflows - deploy commands, financial operations, data access, admin operations, and change control.

Not recommendedcritical or high security findings
modbender/skill-library-mcp Agent Skills author: modbender MIT 21 files · 9 scripts body ≈ 755 tokens Open the sourcegithub.com analyzed 2 d ago

Enable agents and skills to challenge users for fresh two-factor authentication proof (TOTP or YubiKey) before executing sensitive actions.

As a process C 58/100 · Has gaps — weak spots: result and completion, when it triggers, inputs and preconditions

ProcedureSoftware developmentWriting and documentsInfrastructuretype and topics are labelled automatically from the skill text
JSON
Technical rating
C
71/100
safety, quality, tests
Safety 60%
63
Quality 40%
84
Run on models
none yet
Process rating
C
58/100
Has gaps
Result and completion w 14
0
Inputs and preconditions w 11
0
Progress reporting w 2
0
the three weakest of ten parameters · all ten

What is at stake

The skill contains fragments that, in the wrong hands, cost money or data. Below: what the installer risks and what the author should do.

Dangerous commands
If you install

The skill contains commands that delete files, rewrite disks or execute code fetched from the network. The agent may run them without asking if it believes the instructions require it.

For the author

Replace destructive commands with safe equivalents that ask for confirmation, scope them to one folder, and stop piping curl into a shell: pin a version and a checksum.

Secrets in code medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The files contain someone else's key or token. If it is live, your agent will call third-party services under a stranger's identity; if it was revoked, the skill's scripts simply fail. Such a key often arrives with the author's whole workspace, personal data included.

For the author

The key is visible to everyone who downloaded the skill and has likely been copied by catalog-scanning bots already. Revoke it now, check bills and access logs, then reissue.

Broad scope medium severity

Below is the worst case for this category. The finding here is medium: the guard saw a sign, not a proof.

If you install

The skill asks for more than the task needs: broad tool access, credential environment variables, binaries. Every extra permission widens the damage from a mistake or a compromise.

For the author

Narrow allowed-tools and the variable list to the minimum; replace binaries with readable sources or scripts.

How to improve

  1. Address the high-severity findings: each costs 18 safety points. If one is a false positive, add the rule id to guard.allow in spec.yaml.
For the model run — optional
  • Your own cases (evals/evals.json, 4–6 real requests with expected answers): the full check would then run those instead of a model-drafted suite.
  • A spec.yaml with trigger phrases and assertions — a behaviour contract for CI; `skilltest init` writes a template.

Guard findings · 8

  • high Dangerous commands cmd-destructive-fs INSTALLATION.md:280
    Destructive filesystem command (wipes root/home/drive) (detector / deny-list definition)
    ./verify.sh "testuser" "'; rm -rf /*; echo '"  # Should reject code injection
    detector
Medium and low: 7
  • medium Secrets in code secret-labelled-token config-template.yaml:50
    Labelled token / key literal (vendor format unknown — verify it is not a live credential)
    #     secretKey: "dGhp…2V5"
  • medium Dangerous commands cmd-shell-rc INSTALLATION.md:145
    Writes to a shell startup file
    echo "source ~/.openclaw-otp-config.sh" >> ~/.bashrc
  • medium Broad scope meta-agent-memory-dump memory/README.md
    Agent memory / workspace files bundled with the skill (1) — likely a workspace dump with personal data or tokens
    memory/README.md
  • low Secrets in code secret-labelled-token config-template.yaml:33
    Labelled token / key literal (vendor format unknown — verify it is not a live credential) (placeholder value)
    secretKey: "YOUR…ERE"
    placeholder
  • low Secrets in code secret-password-literal config-template.yaml:50
    Hard-coded password / key literal (may be an example)
    #     secretKey: "dGhp…2V5"
  • low Secrets in code secret-password-literal docs/plans/2025-01-31-yubikey-support-design.md:38
    Hard-coded password / key literal (may be an example)
    secretKey: "base…ing="     # new
  • low Secrets in code secret-password-literal SKILL.md:115
    Hard-coded password / key literal (may be an example)
    secretKey: "base…ret"

Files scanned: 20. Evidence is masked. Grey chips explain why severity was lowered.

Against the Agent Skills spec

✓ No remarks against the Agent Skills spec

Process rating: all ten parameters 58/100

  • 0Result and completion. Does not say what the result is
  • 0Inputs and preconditions. Does not say what the process needs to start
  • 0Progress reporting. Says nothing while it works
  • 20When it triggers. No condition that starts the skill
  • 50Failures and branches. 0 branches, has a failure section
  • 100Tools and files. No external tools needed
  • 100Steps. 24 steps
  • 100Consistency. Name and required fields are in place
  • 100Execution cost. Instruction body is 755 tokens
  • 100Running it twice. Mutating operations check current state

Everything here is measured from the skill text rather than judged by a model, so the numbers are checkable. A parameter weighs more when it is a more common reason for the process to stall.

Quality signals

  • +5Description has no quoted example phrases that should trigger the skill
  • +4Description does not say when NOT to use the skill (false activations)
  • +3Output format is not stated: the model decides each time
  • +1No license
  • +2Single-language instructions
  • +3Description length 288: enough signal without eating the budget
  • +4Structure: 11 headings
  • +3Step-by-step instructions: 24 items
  • +4Has examples (8 code blocks)

Quality base 70; lint remarks subtract, signals add up to 100. Result: 84.