Qoder CLI skill

AdvisoryAudited by Static analysis on Apr 30, 2026.

Overview

No suspicious patterns detected.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

If used carelessly, the agent could let Qoder modify project files or use tools without the normal interactive permission prompts.

Why it was flagged

The skill documents a non-interactive mode that bypasses Qoder CLI permission checks while performing code-changing tasks, without a clear requirement for user approval or tool limits.

Skill content
# Yolo mode (skip permissions) ... qodercli --yolo -p 'Make the changes'
Recommendation

Use `--yolo` only after explicit user consent, and prefer scoped options such as a specific working directory, `--max-turns`, `--allowed-tools`, and `--disallowed-tools`.

What this means

Qoder CLI actions may run under the user's Qoder account and may consume account privileges or quota in contexts where other participants can influence the task.

Why it was flagged

The skill relies on a personal access token inherited from the user environment, including shared/group sessions, while the registry metadata declares no primary credential or required environment variable.

Skill content
QODER_PERSONAL_ACCESS_TOKEN ... In any session type, the environment variable is inherited from the shell
Recommendation

Confirm which account token is available before use, avoid exposing it in shared sessions, and revoke or scope the token if it is no longer needed.

What this means

The safety of the skill depends heavily on the installed `qodercli` binary, which is outside this artifact review.

Why it was flagged

The skill does not install code itself, but it delegates to a local external binary whose provenance is not established by the provided artifacts.

Skill content
Source: unknown; Homepage: none; Required binaries: qodercli; No install spec
Recommendation

Install `qodercli` only from an official source, keep it updated, and verify which binary is on your PATH before enabling the skill.

What this means

A stale or overly broad subagent definition could influence later coding tasks or retain unsafe tool permissions.

Why it was flagged

The instructions describe persistent user-level subagent definitions that can affect future Qoder tasks across projects.

Skill content
~/.qoder/agents/<agentName>.md - User-level (all projects) ... Subagents ... own context windows and tool permissions
Recommendation

Review user-level agent files periodically, keep tool permissions minimal, and prefer project-level agents when behavior should not apply globally.