my-work-start-helper

PassAudited by ClawScan on May 10, 2026.

Overview

This skill clearly describes a work-start Git sync workflow, but users should know it will run Git commands that can change the current repository state.

This looks like a straightforward helper for starting work, not a malicious skill. Before installing or using it, understand that saying the trigger phrase may cause Git stash, pull --rebase, and stash pop operations in the current project. Use it only when you are in the correct repository and comfortable handling possible Git conflicts.

Findings (1)

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 run in the wrong folder or at the wrong time, it could change the working tree, rebase local commits, or leave the repository with conflicts that need manual repair.

Why it was flagged

The skill instructs the agent to run Git commands that modify the current repository state. This is disclosed and matches the stated purpose, but it can affect local work or produce conflicts.

Skill content
stash → pull --rebase → stash pop ... git stash push ... git pull --rebase ... git stash pop
Recommendation

Only invoke this skill in the intended Git project, review the repository status first, and be prepared to resolve rebase or stash-pop conflicts manually.