role-aware-context-slimming-733ff3 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited role-aware-context-slimming-733ff3 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Domain: context-management Trigger: When an agent declares omitClaudeMd or runs as an Explore/Plan helper, slim the context before handing it to runAgent. Source Pattern: Distilled from reviewed context, compaction, and memory-governance patterns.
Use the omitClaudeMd flag (and the tengu_slim_subagent_claudemd feature gate) to strip claudeMd from the user context unless an override was explicitly provided. For read-only helpers such as Explore or Plan, drop the gitStatus entry from the system context because it is stale and bloats the payload. Always compute new context objects instead of mutating the originals so other agents can still read the full metadata set.
claudeMd when agentDefinition.omitClaudeMd is true, no user override is present, and the feature flag allows it, so you do not throw away intentional user context edits.userContextNoClaudeMd by destructuring the base context and omitting claudeMd before assigning resolvedUserContext.gitStatus from resolvedSystemContext any time agentDefinition.agentType is Explore or Plan, while leaving other system keys intact.When the CLI launches an Explore subagent, apply this skill to create resolvedUserContext without claudeMd and resolvedSystemContext without gitStatus, saving dozens of tokens and preventing stale git information from confusing the helper.
claudeMd even though the caller supplied an override user context; that override often carries explicit corrections or clarifications.gitStatus for Explore/Plan agents, which bloats the prompt with stale files and slows down the API call.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.