Movedone
Analysis
This is a straightforward local Movedone API wrapper, but it uses a full-access bearer token and includes commands that can change or delete your projects and tasks.
Findings (2)
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
### Delete a project
```bash
curl -s -X DELETE "$MOVEDONE_BASE_URL/projects/{project_id}"The skill documents destructive API operations through curl. This is purpose-aligned for a kanban management skill, but incorrect use could delete user project data.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
The base URL and bearer token provide full access to your local Movedone HTTP API, so keep them secret
The skill requires an API bearer token with full local Movedone access. This is disclosed and expected for the integration, but it is sensitive authority.
