Developer Interview Simulator

PassAudited by VirusTotal on May 11, 2026.

Overview

Type: OpenClaw Skill Name: developer-interview-simulator Version: 1.0.2 The developer-interview-simulator skill is a legitimate tool for mock technical interviews, managing user progress and profiles locally in `~/.openclaw/developer-interview-simulator/`. It explicitly prohibits external network calls and focuses on parsing user-provided CVs or standard technical questions from `reference.md`. The use of `exec` is limited to a single `mkdir` command for initial setup, and the logic aligns strictly with its stated purpose of interview preparation.

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

Your interview practice history and selected CV-derived details may be saved locally and reused in later sessions.

Why it was flagged

The skill stores persistent local profile, interview history, weak areas, saved answers, and optionally extracted CV details for future interview tailoring.

Skill content
Storage: `~/.openclaw/developer-interview-simulator/` only... `profile.json` ... `cv_skills`, `cv_projects` ... `history.json` ... `saved_answers.json`
Recommendation

Only provide or save CV details you are comfortable keeping locally, and delete the skill directory if you want to reset or remove stored practice data.

What this means

The skill may create a local folder for its own saved data.

Why it was flagged

The skill describes a shell command to create its local data directory. This is limited, disclosed, and purpose-aligned, but it is still a local command.

Skill content
On first message, ensure data directory exists:

```bash
mkdir -p ~/.openclaw/developer-interview-simulator
```
Recommendation

Allow the setup only if you are comfortable with the skill creating this local directory; it should not need to run other commands.