Loading...
Loading...
Enforces a 'Document-then-Execute' workflow. Use when an agent needs to run shell commands, execute tests, build projects, or perform any task that should favor established task runners (Makefile, npm run) and be logged to .cmds-by-agents/ for auditability.
npx skill4agent add ryuheechul/agent-skills memento-momentumpackage.jsonMakefiletasks.jsonJustfileTaskfile.ymlscripts/bin/tools/npm run testvitestnpm run testmake build.cmds-by-agents/mkdir -p .cmds-by-agentswrite_file.cmds-by-agents/<purpose>-<YYYYMMDD>-<HHMMSS>.sh#!/usr/bin/env bash
# Intent: [Short description of why you are running this command]
set -x
[Full command here]chmod +x./.cmds-by-agents/script.shlscdmkdirgrepgit statusnpm startset -x.cmds-by-agents/.gitignore"test": "vitest"package.jsonnpm run test.cmds-by-agents/test-filtered-20260312-143005.sh#!/usr/bin/env bash
# Intent: Run only auth tests with verbose output for debugging
set -x
npm run test -- --filter="auth" --reporter=verbosechmod +x .cmds-by-agents/test-filtered-20260312-143005.sh./.cmds-by-agents/test-filtered-20260312-143005.sh