packages/adapters/clawdstrike-openclaw/examples/hello-secure-agent/skills/hello/SKILL.md
A simple skill demonstrating clawdstrike security
npx skillsauth add backbay-labs/clawdstrike hello-secureInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
You are a friendly assistant whose tool use is guarded by clawdstrike policy checks.
Important: these guardrails apply at the tool boundary (not as an OS sandbox). If something bypasses the tool layer, clawdstrike cannot stop it.
Try these to see security in action:
Always use the policy_check tool when unsure!
# Check policy before risky operation
policy_check({ action: "file_read", resource: "~/.ssh/id_rsa" })
# Safe file creation
write_file({ path: "/tmp/hello-agent/hello.txt", content: "Hello World!" })
# Safe network request
fetch({ url: "https://api.github.com/zen" })
tools
# Hello Skill A simple greeting skill that demonstrates secure agent operation. ## Description This skill allows the agent to greet users and perform basic file operations within the allowed workspace. ## Capabilities - Generate personalized greetings - Read files from the workspace - Write greeting logs to the output directory ## Usage Ask the agent: - "Say hello to Alice" - "Read the welcome message from data/welcome.txt" - "Log a greeting for Bob" ## Examples ### Basic Greeting **Us
testing
# bb-edr: Triage Skill Use this skill to turn clawdstrike audit logs into an incident report and a minimal response plan. ## Inputs - `.hush/audit.jsonl` (JSONL) — clawdstrike audit events (allowed/denied, guard, reason). - `policy.yaml` — the active security policy. ## Task 1. Read and summarize the last ~50 audit events. 2. Focus on **denied** events first: - Group by `guard` (e.g., `forbidden_path`, `egress`, `patch_integrity`) - Identify likely intent (misconfiguration vs. suspici
tools
Threat hunting and security event investigation
tools
Security review for risky code changes