Openskills openskills-e2e-test-runbook
Run deterministic OpenSkills end-to-end validation across runtime tests and example agents, then report tool calls, activation behavior, and regressions.
install
source · Clone the upstream repo
git clone https://github.com/Geeksfino/openskills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Geeksfino/openskills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.cursor/skills/openskills-e2e-test-runbook" ~/.claude/skills/geeksfino-openskills-openskills-e2e-test-runbook && rm -rf "$T"
manifest:
.cursor/skills/openskills-e2e-test-runbook/SKILL.mdsource content
OpenSkills E2E Test Runbook
Use this skill for confidence checks before merging runtime, tooling, or example-agent changes.
Test Layers
- Runtime regression tests
- Sandbox-focused tests
- Example-agent behavior checks
- Optional binding smoke tests
Baseline Commands
cargo test -p openskills-runtime
Example-agent checks (from example directories):
npm install npm start "What skills are available?" npm start "Create a new skill called 'note-taker'."
E2E Expectations
- Skills discover successfully.
- Skill activation occurs for matching prompts.
- Tool calls align with intent (activation, file reads/writes, script runs).
- No unexpected sandbox failures.
Reporting Format
- What was run
- What passed
- What failed
- Repro command for each failure
- Suggested next fix