home / skills / trpc-group / trpc-agent-go / demo-skill
This skill demonstrates loading and running commands in an isolated workspace to showcase skill_load and SkillLoadMode for safe experimentation.
npx playbooks add skill trpc-group/trpc-agent-go --skill demo-skillReview the files below or copy the command above to add this skill to your agents.
---
name: demo-skill
description: A tiny skill used by the skillloadmode example.
---
# Demo Skill
This skill exists only to demonstrate `skill_load` and SkillLoadMode.
You can load this skill with `skill_load` and then run commands with `skill_run`
inside an isolated workspace.
This skill demonstrates loading and executing a minimal agent skill using SkillLoadMode. It provides a tiny, self-contained example that shows how to load the skill with skill_load and run commands with skill_run inside an isolated workspace. It is intended as a teaching and testing aid rather than a production component.
The skill exposes a minimal command surface that the loader recognizes and initializes in SkillLoadMode. After loading, you can invoke skill_run to execute commands inside an isolated workspace created by the framework. The skill performs no external side effects and is designed to validate load/run flows and workspace isolation behavior.
Does this skill perform any network or file system changes?
No. The demo is designed to avoid external side effects and runs inside an isolated workspace.
Can I extend this skill for my own tests?
Yes. Use it as a lightweight template and replace or extend internals to match your test scenarios.