DNFM周本进度追踪
Analysis
This skill appears to be a local DNFM progress tracker that only updates its own JSON state files, with a small data-loss caveat around its automatic reset behavior.
Findings (2)
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.
if weekday == refresh_day and now.hour >= refresh_hour:
data["progress"][key] = {"done": 0, "total": config["total"]}
data["last_reset"][key] = now.strftime("%Y-%m-%d")
save_progress(data)The reset logic writes a last_reset date but does not check it before resetting, so every invocation after 6 AM on a refresh day can overwrite that event's progress back to zero.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
PROGRESS_FILE = "/root/.openclaw/workspace/dnfm-tracker/progress.json" CONFIG_FILE = "/root/.openclaw/workspace/dnfm-tracker/config.json"
The script stores persistent progress and configuration data in fixed local JSON files, matching the stated tracker purpose.
