Agent Context System

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill is mostly a local memory template, but its setup flow depends on a missing executable that would modify persistent agent context, so users should review the actual runnable code before using it.

Before installing, verify the missing agent-context executable from a trusted source and inspect it, because the provided wrapper and docs depend on it. If you use the skill, review any session-log or promotion changes before accepting them, and only run the GitHub publishing script after checking what files will be pushed.

Findings (3)

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

Users may be asked to run setup or promotion logic whose actual behavior is not represented in the reviewed artifacts.

Why it was flagged

The init wrapper runs a sibling agent-context executable, but that executable is not included in the provided file manifest or file contents while the docs tell users to run setup/promote commands through it. This creates a provenance and review gap for the code that would modify project agent-context files.

Skill content
exec "$SCRIPT_DIR/../agent-context" init "$@"
Recommendation

Do not run agent-context commands until the executable is included from a trusted, pinned source and reviewed; the package should either include the CLI or remove the wrapper/documentation that depends on it.

What this means

Bad or overly broad notes in the scratchpad could steer future coding agents toward wrong assumptions or unsafe conventions.

Why it was flagged

The skill intentionally creates persistent local memory that is read by future agents and updated over time. This is purpose-aligned, but incorrect or poisoned entries could influence later sessions.

Skill content
Read this file and `.agents.local.md` (if it exists) before starting any task... At session end, append to `.agents.local.md` Session Log
Recommendation

Review proposed scratchpad changes before accepting them, keep .agents.local.md gitignored, and treat it as factual notes rather than trusted new instructions.

What this means

Running this script can publish the current repository contents to GitHub and change repository settings under the user's account.

Why it was flagged

The optional publishing script uses the user's GitHub CLI authentication to create a repository and push the current directory. This is disclosed and user-directed, but it uses account authority and uploads local project contents.

Skill content
gh repo create "$GH_USER/$REPO_NAME" \
    --private \
    --source=. \
    --remote=origin \
    --description "Template: persistent local-only memory for AI coding agents" \
    --push
Recommendation

Run the publishing script only intentionally, after checking git status and verifying that no secrets or private files will be committed and pushed.