home / skills / trpc-group / trpc-agent-go / envdump
This skill dumps basic system and environment information to out/env.txt to aid debugging and auditing.
npx playbooks add skill trpc-group/trpc-agent-go --skill envdumpReview the files below or copy the command above to add this skill to your agents.
---
name: envdump
description: Dump basic environment info to out/env.txt.
metadata:
{ "openclaw": { "requires": { "bins": ["bash"] } } }
---
Overview
This skill collects basic system/environment info and writes it to `out/`.
Command
bash scripts/envdump.sh out/env.txt
Output Files
- out/env.txt
This skill collects basic system and runtime environment information and writes it to out/env.txt. It is designed as a lightweight diagnostic tool to capture OS, shell, path, and common tool versions. Run it before debugging or packaging to get a reproducible snapshot of the environment. The output is a single plain-text file suitable for sharing or attaching to issue reports.
The skill executes a small shell script that probes common environment data points and redirects the consolidated output into out/env.txt. It gathers details such as kernel/version info, shell identity, PATH, locale, Go version, and presence/version of common tools. The script is idempotent and overwrites the destination file each run to ensure the snapshot is current. No external network access is required; it only reads local system state and writes the text file.
What exactly does the script record?
It captures core environment details such as OS release, kernel, shell, PATH, locale, Go toolchain version, and availability of common developer tools.
Is any sensitive information recorded?
The script targets general system metadata, but PATH or environment variables might reveal usernames or custom paths; review the file before sharing publicly.