Project Summary

PassAudited by ClawScan on May 1, 2026.

Overview

This instruction-only skill coherently summarizes a project by reading local codebase files and using read-only listing/search commands.

This skill appears safe for its stated purpose. Use it in the project you want summarized, and check the output for private repository details before copying it elsewhere.

Findings (1)

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

The agent may inspect and summarize local project files, which could reveal private implementation details if the output is shared.

Why it was flagged

The skill documents local shell commands to enumerate project files and detect languages. These commands are read-only and purpose-aligned, but they do give the agent broad visibility into the current directory tree.

Skill content
find . -type f -not -path '*/node_modules/*' -not -path '*/.git/*' ... | sed 's/.*\\.//' | sort | uniq -c | sort -rn | head -10
Recommendation

Invoke this skill only from the intended project directory and review the generated summary before sharing it outside your workspace.