Interview Coach

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

The skill may create a local folder in your home directory to store its interview-coaching data.

Why it was flagged

The skill instructs the agent to run a local shell command on first use. The command is simple, scoped to creating the skill's own data directory, and consistent with the stated purpose.

Skill content
On first message, create data directory:

```bash
mkdir -p ~/.openclaw/interview-coach
```
Recommendation

Only install if you are comfortable with the skill creating and using ~/.openclaw/interview-coach/; no elevated permissions are indicated.

What this means

Your interview targets, practice history, saved answers, and feedback may remain on the local device across sessions.

Why it was flagged

The skill keeps persistent local records about the user's interview goals, practice answers, scores, and improvement areas. This is purpose-aligned and clearly disclosed, but users should notice that personal career-preparation data will be saved.

Skill content
All data stored under `~/.openclaw/interview-coach/`:

- `profile.json` — user profile, target role, stats
- `history.json` — past practice sessions and scores
- `weak_areas.json` — areas needing improvement
- `saved_answers.json` — user's best answers saved
Recommendation

Review or delete ~/.openclaw/interview-coach/ if you no longer want the skill to retain your interview-preparation history.