lianggeskills

PassAudited by ClawScan on May 1, 2026.

Overview

This looks like a benign personal task and encouragement assistant, with expected local task memory and scheduled reminder behavior.

This skill appears suitable if you want a proactive personal task assistant. Expect it to keep local task state and send periodic working-hours reminders; avoid storing secrets in task text and verify the publisher/source if you require stronger provenance.

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

Task details you give the assistant may remain in its local memory file until changed or deleted by the skill.

Why it was flagged

The skill stores task titles, blockers, and status locally for reuse across interactions.

Skill content
def save_memory(self):
    with open("task_memory.json", "w", encoding="utf-8") as f:
        json.dump(self.memory, f, ensure_ascii=False, indent=2)
Recommendation

Avoid putting highly sensitive secrets in task titles or blocker descriptions, and review/clear task_memory.json if needed.

What this means

You may receive automatic progress reports or check-in messages without asking each time.

Why it was flagged

The code defines scheduled actions that can proactively message the user during working hours.

Skill content
@action("timer_10_min") ... self.send_message_to_user(self.command_status_check())
@action("timer_1_hour") ... self.send_message_to_user("🦞 亮哥,现在有什么需要帮忙的?链上Alpha或者AI动态需要我梳理吗?")
Recommendation

Install only if you want proactive reminders, and disable or edit the timer actions if they are too intrusive.

What this means

You have less provenance information for verifying who authored or maintains the code.

Why it was flagged

The registry metadata does not provide an upstream source or homepage, even though the package includes executable Python files.

Skill content
Source: unknown
Homepage: none
Code file presence: 2 code file(s): core_logic.py, __init__.py
Recommendation

Review the included files before installing and prefer a known publisher or source repository if provenance is important.