Self Improving To Expertpack

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a purpose-aligned local converter, but it packages persistent local learning files for reuse, so users should review the generated ExpertPack before sharing or publishing it.

Use this only on workspaces you intend to export. After conversion, inspect the generated ExpertPack for private information, secrets that the simple redaction patterns may not catch, and instructions you do not want future agents to follow. If PyYAML is needed, install it from a trusted, preferably pinned source.

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.

What this means

Private or stale agent learnings could be preserved and reused in future contexts, especially if the generated pack is committed or published.

Why it was flagged

The skill intentionally converts accumulated agent learnings and promoted instruction files into a persistent retrieval pack, which may later influence agents or expose private workspace knowledge if shared.

Skill content
Migrates the .learnings/ directory ... and any promoted content from workspace files into ExpertPack's portable format with multi-layer retrieval, context tiers
Recommendation

Review the generated files for private data, obsolete instructions, and unsafe guidance before using, committing, or publishing the ExpertPack.

What this means

The tool may fail until PyYAML is installed, and an unpinned manual package install relies on the user's package source and environment.

Why it was flagged

The script has a runtime PyYAML dependency, but the supplied requirements only declare python3 and there is no pinned install spec.

Skill content
import yaml ... print("Error: pyyaml required. Install with: pip install pyyaml", file=sys.stderr)
Recommendation

Install PyYAML from a trusted package index, preferably with a pinned version in a controlled environment.