Linkding
Analysis
The skill coherently manages a Linkding bookmark account using a user-provided API token, with no artifact-backed evidence of malicious behavior, but users should notice its account-editing and deletion capabilities.
Findings (4)
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.
cmd_delete() {
api_call DELETE "/api/bookmarks/${1}/"
}The helper directly exposes Linkding mutation operations, including deletion. This matches the bookmark-management purpose, but destructive actions should be user-directed and checked carefully.
LINKDING_URL=$(jq -r '.url // empty' "$CONFIG_FILE") ... curl -sS -X "$method"
The script depends on jq and curl, while the supplied requirements declare no required binaries. This can affect reliable setup and review clarity, but the dependencies are ordinary and purpose-aligned.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
Config: `~/.clawdbot/credentials/linkding/config.json`
{
"url": "https://linkding.example.com",
"apiKey": "your-api-token"
}The skill requires a Linkding API token to access the user's account. This is expected for bookmark management, but it is sensitive account authority and is not reflected in the registry's credential/env-var declarations.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
"notes": "Personal notes", "tag_names": ["tag1", "tag2"]
Bookmark responses can include persistent user content such as personal notes, descriptions, tags, and saved URLs. This is expected for a bookmark manager, but retrieved bookmark content may enter the agent's working context.
