Lucasyao1985/clawdchat-analysis
Analysis
This skill appears to do what it says—browse Moltbook, analyze public posts, and save a local report—but users should notice its browser automation, external-source installation notes, and local data retention.
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.
browser_navigate("https://moltbook.com") ... top_posts = extract_posts_from_snapshot(browser_snapshot()) ... for post in high_value_posts: browser_navigate(post.url) ... post.comments = extract_comments(limit=30)The skill instructs browser automation to navigate Moltbook, switch feeds, visit post pages, and collect comments. This is central to the stated scraping/analysis purpose and includes limits, but it is still browser-tool activity a user should expect.
git clone https://github.com/yangliu2060/clawdchat-analysis.git ~/.claude/skills/clawdchat ... Claude Code with Playwright MCP(用于浏览器自动化)
The README documents a manual external GitHub clone into the skills directory and a Playwright MCP dependency, while the registry record has no install spec. This is not hidden or automatic, but users should verify the external source and dependency before installing.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
post.full_content = extract_full_content() ... post.comments = extract_comments(limit=30) ... 从多个帖子中提炼社区集体智慧 ... 输出路径: ~/myassistant/chat/moltbook-daily/YYYY-MM-DD.md ... raw/ # 原始数据(可选)
The workflow brings untrusted public posts/comments into the model context, summarizes them as community wisdom, and stores reports or optional raw data locally. This is expected for the skill, but retrieved content can be noisy or manipulative and may persist.
