Weibo TrendNote AI PC
PassAudited by ClawScan on May 1, 2026.
Overview
The skill appears to do what it says, but it writes to a fixed Windows/Obsidian setup and can add recurring jobs, so users should verify paths and scheduling before use.
Before installing, confirm that C:\Users\Intel is the intended Windows profile, verify the Obsidian vault/note settings, and make sure the local summarize and notesmd-cli helpers are trusted. Run the one-time command first, and only enable install-crons if you deliberately want recurring automation.
Findings (5)
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.
Running the skill can change an Obsidian note in the configured vault.
The skill uses an external notesmd-cli command to append generated content to an Obsidian note. This matches the stated purpose, but it is still a local user-data mutation.
cmd = [NOTESMD_BIN, "create", note, "--content", content, "--append"]
Confirm the target vault, note path, and notesmd-cli binary before running, especially before enabling automation.
If the local summarize helper is missing, replaced, or configured to an unexpected executable, the skill may fail or run unintended local code.
The bundled code depends on a separate local summarize executable, and the path can be configured through the environment. This is purpose-aligned but requires the user to trust the local helper.
SUMMARIZE_BIN = os.environ.get("SUMMARIZE_BIN", r"C:\\Users\\Intel\\AppData\\Roaming\\npm\\summarize.CMD")Install helper tools from trusted sources and verify SUMMARIZE_BIN and NOTESMD_BIN if using env.ps1 overrides.
On a different Windows account, the skill could target the wrong local profile or fail due to permissions.
The script forces notesmd-cli to use a specific Windows profile and creates notesmd configuration there if absent. No credential access is shown, but the fixed profile path should match the intended user.
os.environ["APPDATA"] = r"C:\\Users\\Intel\\AppData\\Roaming" os.environ["USERPROFILE"] = r"C:\\Users\\Intel"
Use this only on the intended Windows profile or adjust the environment/configuration paths before running.
External trend text and generated summaries may be stored long-term in your notes.
Generated Markdown based on public Weibo trend data is persisted into an Obsidian note. This is the intended behavior, but it can become part of future note search or agent context.
if write_to_obsidian("\n\n---\n\n" + md):Keep the target note separate from sensitive knowledge bases if future agents will read Obsidian notes automatically.
If enabled, the skill can continue fetching, summarizing, and flushing results on a schedule.
The install-crons mode registers recurring OpenClaw jobs. SKILL.md says to use this only after explicit user request, so this is disclosed persistence rather than hidden background behavior.
openclaw_run("cron", "add", "--name", "weibo-trendnote-aipc-fetch-5m", "--cron", "*/5 * * * *", "--tz", CRON_TZ, "--session", "isolated", "--message", msg_fetch)Start with the one-time run, and only run install-crons if you want ongoing automation; check OpenClaw cron list/remove commands to manage it.
