ccf-events

PassAudited by ClawScan on May 13, 2026.

Overview

This skill appears to query public CCF event and resource pages as described, with only low-risk notes around external web requests and optional Puppeteer setup.

This skill looks reasonable for querying public CCF events. Be aware that your CCF search keywords or interests may be sent to CCF sites, and do not run the optional Puppeteer/npm setup unless you understand and need the browser automation dependency.

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.

What this means

When invoked, the skill may contact CCF web services to fetch event data.

Why it was flagged

The skill instructs the agent to make external web requests to CCF endpoints, which is expected for an event-querying skill and is openly documented.

Skill content
curl -s -X POST "https://conf.ccf.org.cn/conf/v2/index/meeting/list.do" ... -d '{"pageNo":1,"pageSize":50,"signupTimeState":"0","sortType":"0"}'
Recommendation

Use it for CCF-related queries and expect network access to the listed CCF domains.

What this means

Search terms or interest keywords you provide may be included in requests to CCF resource pages.

Why it was flagged

User-provided search keywords may be sent to the CCF digital library, but the instructions explicitly require URL encoding and keep the request within the skill's stated purpose.

Skill content
按用户输入的关键词检索(必须编码) ... --data-urlencode "searWord=${USER_KEYWORD}"
Recommendation

Avoid putting private or sensitive personal information into search keywords.

What this means

If you run the optional setup commands, npm may install third-party Puppeteer code and related browser tooling.

Why it was flagged

The package includes optional Puppeteer setup scripts and an npm dependency even though the registry lists no install spec. This is not shown as auto-executed, but users should notice it before running npm setup commands.

Skill content
"scripts": { "setup:puppeteer": "node scripts/ensure_puppeteer.js --install" }, "dependencies": { "puppeteer": "^24.15.0" }
Recommendation

Only run the Puppeteer setup if you need browser automation, and prefer exact pinned installs or reviewed lockfiles.