Execute
Eleven open-source, MIT-licensed skills for AI coding agents — /preflight, /audit, /ship, /remember and more. Plain-Markdown agent guardrails for Claude Code, Codex, Cursor & Hermes. Free layer of SlashStack.
npx -y skills add mverab/slashstack-skills --skill executeAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 18 days oldThe repository was created 18 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Use before beginning any multi-step task with multiple files, tests, or verification steps.
SKILL.md
1.6 KB, as published. Nobody here has run it
Execute
Purpose
Turn multi-step tasks into goals with explicit scope, acceptance criteria, verification commands, and completion expectations.
When to Use
Use before beginning any multi-step task that involves multiple files, tests, or verification steps.
Workflow
- Read the registry: open
.agents/memory/goal-registry.jsonto see active and completed goals. - Define scope: list the file path globs this goal may read or write.
- Set acceptance criteria: describe what "done" looks like in a single sentence.
- List verification commands: the test, build, or lint commands that must pass.
- Declare commit and push expectations: whether the goal requires a commit and/or a push upon completion.
- Check for scope overlaps: if any active goal's scope intersects with yours, report the overlap, name the conflicting goal id, and refuse to start until the conflict is resolved.
- Do the work: edit only files within the declared scope.
- Run verification: execute every command in the verification list and record the pass/fail result.
- Mark complete with evidence: update the goal
statustocompleted, setupdatedAt, and record a brief evidence summary. - Archive stale goals: set
archived: trueon completed goals older than 30 days.
Output
If complete: updated goal entry with status: completed, updatedAt, and
an evidence summary.
If abandoned: updated goal entry with status: abandoned, updatedAt, and
a reason.