Issue Register

PassAudited by ClawScan on May 14, 2026.

Overview

This instruction-only skill is aligned with registering issues in WizNote, but it will create, read, and update persistent collaboration notes, so users should verify the project and overview configuration before use.

Before installing, populate and verify config.md, especially the project name, category path, and overview docGuid. Use the skill only for projects where you are comfortable letting the agent create and update WizNote collaboration notes, and consider narrowing overview searches to the intended project path if you maintain multiple issue registers.

Findings (4)

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

Using the skill will create or modify notes in WizNote, including the overview note.

Why it was flagged

The skill instructs the agent to create and update WizNote collaboration notes. This is expected for an issue-register skill, but it is still write authority over a user's note account.

Skill content
result = api.create_collaboration_note(title, blocks, category)
api.update_collaboration_note(result['docGuid'], blocks)
Recommendation

Use it only when you intend the agent to write to WizNote, and confirm the project path and overview document before relying on it.

What this means

The agent may act with the user's existing WizNote permissions to create, search, read, and update issue notes.

Why it was flagged

The skill depends on WizNote account permissions through another skill/API. The artifacts do not show credential capture or token handling, but users should recognize that their configured WizNote authority may be used.

Skill content
使用 wiznote 技能创建协作笔记
Recommendation

Ensure the connected WizNote account has appropriate permissions and sharing settings for the project notes.

What this means

Issue details, owners, severity, and status can be copied into a persistent overview note that may be visible to collaborators.

Why it was flagged

The skill reads persistent issue notes and reuses their contents to regenerate an overview. This is purpose-aligned, but note contents may be aggregated and persisted.

Skill content
逐个读取问题笔记内容,提取状态、严重程度、负责人等
Recommendation

Avoid entering secrets or unrelated sensitive information, and verify who can access the collaboration and overview notes.

What this means

If the account has multiple projects using the same title prefix, the overview could accidentally include or summarize the wrong issue notes.

Why it was flagged

The overview update searches by the issue title prefix and does not explicitly limit the search to the configured project/category path, so unrelated issue notes with the same prefix could be included in the regenerated overview.

Skill content
读取所有已登记问题笔记(通过搜索 `【问题登记】` 获取列表)
Recommendation

Constrain searches to the intended project/category path and fill in the correct overview docGuid in config.md before use.