Readeck
Analysis
This is a simple Readeck API instruction skill; it uses a Readeck API key and can add, list, update, or delete bookmarks, which is disclosed and aligned with its purpose.
Findings (3)
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 Entry ```bash curl -X DELETE "$READECK_URL/api/bookmarks/$ID" \ -H "Authorization: Bearer $READECK_API_KEY" ```
The skill documents a destructive Readeck API operation. Deleting bookmarks is consistent with 'managing bookmarks,' but it can remove user data if the wrong ID is used.
Source: unknown Homepage: none
The artifact has limited provenance information. This is a minor note because there is no code or install step, only runtime instructions.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Configure Readeck access via: - Request parameters: `url` and `apiKey` - Environment variables: `READECK_URL` and `READECK_API_KEY`
The skill uses a bearer API key for the user's Readeck account. This is expected for the integration, but users should recognize that the key grants account access for the documented bookmark operations.
