Agent Tab Title

PassAudited by ClawScan on May 14, 2026.

Overview

This skill appears to do what it claims: it locally patches OpenClaw’s Control UI tab title, though users should notice that it modifies the installed UI file.

This skill is reasonable to install if you want a local OpenClaw UI tab-title patch. Before running it, confirm that the target path is your intended OpenClaw Control UI index.html, understand that it modifies an installed package file, and keep the backup so you can undo the change.

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

Running the skill changes the installed OpenClaw Control UI file on the local machine, affecting the UI served from that installation.

Why it was flagged

The script directly rewrites the resolved OpenClaw Control UI index.html file. This is expected for the skill's purpose, but it is still a local application-file mutation.

Skill content
awk -v snippet_file="$TMP_SNIPPET" ... "$INDEX_FILE" > "${INDEX_FILE}.tmp" && mv "${INDEX_FILE}.tmp" "$INDEX_FILE"
Recommendation

Run it only when you intend to patch that local OpenClaw installation, verify the resolved or supplied target path, and keep the generated .bak file for rollback.

What this means

The local Control UI page will run an additional script that reads the active agent name or ID from the page and changes the tab title.

Why it was flagged

The patch injects JavaScript that runs in the local Control UI page and updates the browser tab title. The code is simple, disclosed, and does not show network access or credential handling.

Skill content
setInterval(tick, 200); ... document.title = next;
Recommendation

Review the injected snippet if desired, refresh the browser after applying, and use `bash scripts/apply.sh --uninstall` if the UI behaves unexpectedly.