home / skills / trpc-group / trpc-agent-go / write-ok
This skill writes a deterministic OK file to out/ok.txt to enable downstream validation and workflow progression.
npx playbooks add skill trpc-group/trpc-agent-go --skill write-okReview the files below or copy the command above to add this skill to your agents.
---
name: write-ok
description: Write a deterministic OK file to out/ok.txt.
---
Overview
This skill writes the text "OK" to a stable output file so downstream steps can validate it.
Command
Run the script below from the skill root:
bash scripts/write_ok.sh
Output Files
- out/ok.txt
This skill writes a deterministic OK file to out/ok.txt so downstream steps can detect a successful run. It provides a single, stable output that automated pipelines and checks can rely on. The behavior is minimal and reproducible across environments.
Running the provided script from the skill root executes a simple write operation that places the text "OK" into out/ok.txt. The script creates the out directory if needed and overwrites any existing ok.txt to ensure deterministic results. Downstream processes can read or assert the presence and content of out/ok.txt to validate completion.
How do I run the skill?
Execute bash scripts/write_ok.sh from the skill root; it will write out/ok.txt.
What exactly is written to the file?
The script writes the two-character string "OK" (without quotes) into out/ok.txt.
Will the script overwrite an existing file?
Yes. The script creates or overwrites out/ok.txt to guarantee deterministic output.