Install
$ agentstack add skill-tkellogg-open-strix-skill-acquisition Open-source listing — not yet scanned by AgentStack. Follow the source repository for install instructions.
Security review
⚠ Flagged1 finding(s); flagged for manual review. · v0.1.0 How review works →
- • Prompt-injection patterns
- • Secret / credential exfiltration
- • Dangerous shell & filesystem operations
- • Untrusted network calls
- • Known-malicious package signatures
- high Destructive filesystem operation.
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Skill Acquisition
You help users discover and install agent skills from the ecosystem. There are three main sources:
- ClawHub — Public skill registry (clawhub.ai) with vector search, versioning, and moderation
- Skillflag — CLI tools that bundle their own skills via
--skill list/export - GitHub/Raw — Skills as folders in git repos (SKILL.md + supporting files)
When to Use This Skill
USE when:
- User asks to find/discover/search for skills or capabilities
- User wants to install a skill from ClawHub or a CLI tool
- User asks "is there a skill for X?"
- User wants to package/publish a local skill
- User asks about what skills are available
DON'T USE when:
- User wants to CREATE a new skill from scratch (that's skill-creator)
- User wants to modify an existing installed skill (just edit it)
Prerequisites
Both tools run via npx — no global install needed, just npm:
# ClawHub CLI (primary discovery tool)
npx clawhub --help
# Skillflag installer (for CLI-bundled skills)
npx skillflag --help
Discovery — Finding Skills
1. ClawHub Search (best for general discovery)
ClawHub uses vector search (OpenAI embeddings), so natural language queries work:
# Search by description
npx clawhub search "manage docker containers"
npx clawhub search "git workflow automation"
# Browse latest/trending
npx clawhub explore # newest 25
npx clawhub explore --sort trending # trending now
npx clawhub explore --sort downloads # most popular
# Machine-readable output
npx clawhub explore --json
npx clawhub search "kubernetes" --json
2. Skillflag Discovery (for CLI tools you already have)
Any skillflag-compliant CLI tool bundles its own skills:
# List skills a tool provides
--skill list
# See what a skill contains
--skill show
# JSON metadata (includes digest for integrity)
--skill list --json
Known skillflag-compliant tools:
acpx— ACP coding agent delegation- Check any CLI you install:
--skill list(won't break if unsupported)
3. GitHub Search (for skills not on ClawHub)
# Search GitHub for SKILL.md files
gh search code "filename:SKILL.md" --limit 20
# The openclaw/skills repo archives ALL ClawHub skills
# Browse: https://github.com/openclaw/skills/tree/main/skills
Evaluation — Before Installing
Always evaluate before installing:
# Inspect without installing (ClawHub)
npx clawhub inspect # metadata + description
npx clawhub inspect --files # list all files in the skill
npx clawhub inspect --file SKILL.md # read the actual skill content
# Inspect a skillflag export
--skill show # read SKILL.md content
--skill export | tar -tf - # list files without installing
Evaluation checklist:
- Read the SKILL.md — does it do what you need?
- Check required env vars / bins (
metadata.openclaw.requires) - Check file count and what's included (scripts? templates?)
- For ClawHub skills: check install count, version history, last update
- For GitHub skills: check repo stars, recent activity, author reputation
Installation — Getting Skills In Place
From ClawHub
# Install to your skills directory
npx clawhub install --workdir "$(pwd)" --dir skills
From Skillflag CLI Tools
# Into a custom directory (open-strix agents)
--skill export | npx skillflag install --dest ./skills
From GitHub / Raw
# Clone just the skill directory
git clone --depth 1 /tmp/skill-source
cp -r /tmp/skill-source/skills/ ./skills/
rm -rf /tmp/skill-source
After Installing
Verify the skill appears in your prompt. Skills in skills/ are automatically loaded.
Wrapping — Adapting Skills for Your Agent
Raw skills from ClawHub/skillflag may need wrapping. The pattern:
When to Wrap
- Skill assumes capabilities your agent doesn't have (e.g., coding ability)
- Skill needs context about WHEN to use it (delegation logic)
- Skill's SKILL.md is a CLI reference but you need behavioral guidance
- Multiple related skills should be combined into one coherent capability
Wrapping Pattern
Create a wrapper skill that:
- Has its own
SKILL.mdwith behavioral instructions (when/how to use) - Includes the original skill as a reference doc (e.g.,
-reference.md) - Adds any agent-specific context (delegation, reporting, error handling)
skills/my-capability/
SKILL.md -reference.md <- original skill content (CLI/API reference)
Example: wrap acpx into a coding skill — SKILL.md teaches delegation behavior, acpx-reference.md has the full CLI reference.
Publishing — Sharing Skills
# Login (GitHub OAuth)
npx clawhub login
# Publish a skill directory
npx clawhub publish ./skills/my-skill \
--slug my-skill \
--name "My Skill" \
--version 1.0.0 \
--tags latest \
--changelog "Initial release"
Requirements:
- SKILL.md must have
nameanddescriptionin frontmatter - Only text-based files (no binaries), max 50MB
- Published under MIT-0 (free use, no attribution required)
Security Notes
- ClawHub has moderation and security analysis
- Skillflag exports are tar streams with path traversal protection
- Always
inspectbefore installing from unknown sources - Skills may include scripts — review them before granting execution
References
/.open_strix_builtin_skills/skill-acquisition/clawhub-reference.md— Full ClawHub CLI reference/.open_strix_builtin_skills/skill-acquisition/skillflag-reference.md— Skillflag specification and integration guide- ClawHub — Browse skills in the browser
- Agent Skills Spec — The standard format
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: tkellogg
- Source: tkellogg/open-strix
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.