Agent Changelog
OpenClaw tracks workspace file changes between turns and attributes them to the user who triggered the change. Use this skill to answer history and diff questions and to apply controlled restores or rollbacks.
When To Use
Use this skill when the user asks about:
- What changed, who changed it, or when it changed
- Diffs between versions or commits
- Rolling back or restoring files
- Taking or inspecting snapshots or status
- Setting up or verifying auto-versioning
- Pulling a specific version or label from PromptLayer
Response Framework
-
Clarify intent and scope.
- Determine whether the user wants a quick summary or raw output.
- Pin down file(s), time range, and commit identifiers if needed.
-
Choose the evidence source.
- Casual queries: use git to gather a compact view.
- Explicit
/agent-changeloginvocations: run the matching script and return stdout verbatim.
-
Present results clearly.
- Summarize what changed, who triggered it, and the rough size.
- Offer the next most likely action (diff, restore, rollback, or log).
-
Handle destructive actions safely.
- Always show what will change before a rollback or restore.
- Prefer
restorefor single-file fixes; userollbackonly when the user wants to revert everything. - If the target commit is ambiguous, ask a clarification question.
-
Guide sync onboarding after setup.
- After
setup, proactively ask: "ok want help with github or promptlayer? (pick one)" - If yes, walk them through the chosen provider with no extra setup steps required on their side.
- Confirm account status, credentials, and configuration for the selected provider.
- After
Output Style
- For summaries, keep it short and conversational.
- For script-driven output, do not reformat or summarize; if onboarding guidance is needed, provide it after the raw output.
- If an argument looks like a typo, confirm before running.
File Content Rules
Never embed attribution metadata inside file content. Do not add inline annotations like (updated by X on date), # changed by Y, status footnotes, or any other authorship/timestamp markers into the files you edit. Attribution belongs exclusively in the git commit message, which is handled automatically by the hooks and commit.sh. Files should contain only their actual content — clean, annotation-free.
Implementation Notes
- Casual history or diff: use a small git window (last 5-10 commits) and include stat output.
- Slash commands: use the scripts in
setup.shandscripts/with the user-provided arguments. - Setup: run the setup script, then ask "ok want help with github or promptlayer?" and proceed if they confirm.
- Restore or rollback: locate the commit via
log, then perform the change after showing what will be modified. - Semantic summary: before every commit, run a quick diff and generate a sparse one-line summary of what changed and why (e.g. "added rate-limit rule to AGENTS.md, updated memory skill"). Always pass it via
--summaryand always include it in any history output presented to the user. - Log output:
log.shoutputs raw structured data — present it conversationally based on what the user asked. Don't dump raw script output. Format each entry using the│-prefixed box style (same as status output), one entry per block.
Command Reference (Compact)
Use this only for explicit /agent-changelog invocations, and return stdout verbatim.
setup->bash {baseDir}/setup.shsetupfollow-up -> Sync onboarding guidance (GitHub or PromptLayer)status->bash {baseDir}/scripts/status.shlog->bash {baseDir}/scripts/log.sh [count]diff->bash {baseDir}/scripts/diff.sh [commit] [commit2]rollback->bash {baseDir}/scripts/rollback.sh <commit> ["reason"]restore->bash {baseDir}/scripts/restore.sh <file> <commit> ["reason"]commit(user-requested) ->bash {baseDir}/scripts/commit.sh --manual ["message"] [--summary "one-line semantic summary"]commit(cron-triggered) ->bash {baseDir}/scripts/commit.sh [--summary "one-line semantic summary"]pull from promptlayer->node {baseDir}/scripts/pl-pull.jspull from promptlayer version <n>->node {baseDir}/scripts/pl-pull.js --version <n>pull from promptlayer label <label>->node {baseDir}/scripts/pl-pull.js --label <label>pull from promptlayer version <n> reason <text>->node {baseDir}/scripts/pl-pull.js --version <n> --reason "<text>"
Auto-Versioning Overview
Two hooks capture and commit changes between turns and attribute them to the active user. Defaults can be overridden via .agent-changelog.json.
Tracked by default: . (entire workspace). Secrets and runtime files are excluded via the .gitignore that setup creates — note that if a .gitignore already exists in the workspace, setup leaves it untouched, so ensure it covers secrets before enabling tracking.
To track a specific subset instead, edit <workspace>/.agent-changelog.json with a tracked array (this fully replaces the default):
{ "tracked": ["<file-or-folder>", "<file-or-folder>"] }
GitHub Onboarding (Setup Add-on)
Use this flow after setup to help users connect the workspace to GitHub. The user will need to authenticate (SSH key or HTTPS credential) — walk them through it step by step:
- Account and intent. Confirm they have a GitHub account and want this repo linked.
- Git identity. Ensure
user.nameanduser.emailare set for commits. - Auth method. Offer SSH or HTTPS; proceed with their preference.
- Remote and verify. Ensure an
originremote exists and verify access. - Enable sync. Set
github.enabled = truein<workspace>/.agent-changelog.jsonto activate auto-push on each batch commit. - Next action. Create or select the GitHub repo, then push or fetch as needed.
PromptLayer Onboarding (Setup Add-on)
Use this flow after setup to help users connect the workspace to PromptLayer. Keep it conversational like the GitHub flow and ensure they pick PromptLayer (not both).
- Intent. Confirm they want PromptLayer sync for this workspace.
- API key. Ask for the API key and set it as
PROMPTLAYER_API_KEYin their environment (e.g. shell profile or OpenClaw env config). The scripts read it from the environment; do not write the raw key value into any config file. - Collection choice. Ask whether to connect to an existing collection or create a new one.
- Dependency check. PromptLayer pulls require
unzip(macOS/Linux) or PowerShellExpand-Archive(Windows). - Config. Collection metadata (
collectionId,skillName,provider) is stored in.agent-changelog.jsonin the workspace — the scripts handle this automatically. The only openclaw.json entry written is the SecretRef:skills.entries.agent-changelog.apiKey = { source: "env", provider: "default", id: "PROMPTLAYER_API_KEY" }. - Connect.
- Existing: run
node {baseDir}/scripts/pl-pull.js --connect <name-or-id> - New: run
node {baseDir}/scripts/pl-init.jsafter settingpromptlayer.skillName
- Existing: run
- Confirm. Verify the collection ID and explain that future batch commits sync to PromptLayer.