revol-guide-creator
PassAudited by ClawScan on May 1, 2026.
Overview
This skill appears to be a coherent local documentation helper that creates and updates project guide files, with the main caution that those files may influence future agent context.
This looks safe to use as a local project documentation helper. Before running it, confirm the project root path and avoid force-overwrite unless intended. Review the generated guide and pitfalls files because future agents may use them as project context.
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.
If run against the wrong project directory, especially with force enabled, existing guide/start documentation could be replaced.
The initialization helper writes project documentation files and has a force-overwrite option. This is disclosed and aligned with the skill's purpose, but users should choose the target root carefully.
parser.add_argument("--force", action="store_true", help="强制覆盖已有文件") ... with open(path, "w", encoding="utf-8") as f: f.write(content)Run the scripts only against the intended project root, review prompts before overwriting, and avoid --force unless replacing existing documentation is intended.
Future agent sessions may rely on guide documents; incorrect or prompt-like project notes could steer later work if not reviewed.
The generated pitfalls documentation is intended to become reusable agent context and development constraints, so stale or inappropriate content in those files could influence future agent behavior.
**用途**:经验教训沉淀,AI 可直接作为开发约束使用。
Review generated and updated guide files before using context recovery, keep project guidance accurate, and avoid storing secrets or instructions that should not affect future agent behavior.
