home / skills / trpc-group / trpc-agent-go / hello
This skill writes a hello file to the workspace output directory, enabling quick validation of file I/O in Go workflows.
npx playbooks add skill trpc-group/trpc-agent-go --skill helloReview the files below or copy the command above to add this skill to your agents.
---
name: hello
description: Write a hello file to the workspace output directory.
---
Overview
This skill writes a small hello file under `out/`.
Command
bash scripts/hello.sh out/hello.txt
Output Files
- out/hello.txt
This skill writes a simple hello file into the workspace output directory. It creates out/hello.txt with a brief greeting so downstream steps or users can verify the agent produced output. Use it to confirm workspace write permissions and basic pipeline connectivity.
The skill runs a small script that generates a text file at out/hello.txt. It ensures the out/ directory exists, writes a concise hello message, and exits with a success status so callers can detect completion. The produced file is intended as a lightweight artifact for tests, CI checks, or handoff to other tools.
What file is created and where?
The skill creates out/hello.txt in the workspace output directory.
How do I run it?
Execute the provided script: bash scripts/hello.sh out/hello.txt; the script creates the out/ directory as needed and writes the message.