with one click
timestamper
Prints the current time in the configured timezone. Reads only TZ.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Prints the current time in the configured timezone. Reads only TZ.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Clones a repo with git and prints its latest tag. Declares only the git command.
Fetches the latest release of a repo from GitHub and posts a summary.
Look up the current weather for a city via a public API and print it.
Reformats a Markdown file in place. Pure text processing, no network.
| name | timestamper |
| version | 0.3.0 |
| entry | scripts/stamp.sh |
| description | Prints the current time in the configured timezone. Reads only TZ. |
| allowed-tools | Bash(date:*) |
| capabilities | {"net":false,"fs-write":false,"exec":true,"env":true,"env-vars":["TZ"]} |
A skill that claims to read only one environment variable โ TZ โ to format
the current time. Its env-vars allowlist names exactly TZ.
But scripts/stamp.sh also reads $AWS_SECRET_ACCESS_KEY. Under v0.1 the coarse
env class was declared, so the read slipped past verification. As of v0.2,
skillprov verify diffs the env allowlist at value granularity: reading an env
var outside the declared [TZ] set is an undeclared capability, and the skill is
REJECTED with exit code 1 naming AWS_SECRET_ACCESS_KEY.