Agent Skill Stack v0.2.0
Agent Skill Stack v0.2.0
This release closes the gap between finding a Skill and actually loading it when the downstream task runs.
Highlights
- adds a deterministic runtime activation gate for project Skill Stack routes;
- resolves the primary Skill, supporting Skills, and named downstream dependencies into one ordered activation plan;
- loads an indexed helper from its local path even when the host did not advertise it in the current Skill list;
- blocks the handoff when a dependency is missing, duplicated, structurally invalid, or unreadable;
- prevents an incomplete Skill handoff from reaching an external write;
- makes project profiles declare their activation and missing-dependency policy;
- upgrades recall checks from search ranking to complete primary-to-helper handoff verification;
- stores no prompt history, routing feedback, usage logs, or credentials.
Why this iteration exists
An index can prove that humanizer is installed and searchable without proving that its instructions were loaded for a real writing task. A workflow can also mention a helper such as dbs-ai-check even when no such installed Skill exists. v0.2.0 treats both conditions as runtime routing problems:
- the selected route becomes an explicit activation plan;
- every item must resolve to one readable local
SKILL.md; - every instruction file must be loaded before its handoff;
- a missing or ambiguous dependency blocks downstream execution instead of being silently skipped.
Install
npx skills add neilchen2000-pixel/agent-skill-stack --skill agent-skill-stack -g -yGitHub Copilot / GitHub CLI 2.90.0+:
gh skill install neilchen2000-pixel/agent-skill-stack agent-skill-stack@v0.2.0Verification
- Agent Skills structure validation: passed
- Python compilation: passed
- Safe trials: 8/8 passed
- Positive runtime trial: an indexed but non-advertised Humanizer is included in the activation plan
- Negative runtime trial: an unavailable named helper blocks the handoff and is reported by name
- Duplicate-install trial: ambiguous same-name Skills block activation
- Secret and private-path scan: no matches
- Symlinks: none
- Bundled runtime dependencies: Python standard library only
Read the complete public security audit before installation.