skills/laststance-publish-skill/SKILL.md
Publish skill to registry
npx skillsauth add laststance/skills laststance-publish-skillInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When running this skill in Codex, translate Claude Code-only primitives before acting: AskUserQuestion -> chat/request_user_input, TodoWrite -> update_plan, Task/TaskCreate/TeamCreate/SendMessage -> spawn_agent/send_input/wait_agent when available and allowed, and EnterPlanMode/ExitPlanMode -> a concise chat plan plus explicit approval.
Resolve Read/Write/Edit/Bash/WebSearch/WebFetch to Codex file/shell/web tools, and map ~/.claude/... paths to ~/.agents/... or ~/.codex/... unless the task explicitly targets Claude Code.
When running this skill in Cursor Agent, translate Claude Code-only primitives before acting: AskUserQuestion -> AskQuestion; TodoWrite -> Cursor TodoWrite or an equivalent checklist; Task/TaskCreate/TeamCreate/SendMessage/multi-agent flows -> Cursor Task (subagents), parallel Tasks, or run_in_background when allowed (TeamCreate/SendMessage may have no exact match); EnterPlanMode/ExitPlanMode -> Plan mode (SwitchMode / CreatePlan) plus explicit user approval.
Resolve Read/Write/Edit/StrReplace/Bash/web/search/MCP via Cursor Composer or Agent equivalents. MCP names written as mcp__server__tool typically map to call_mcp_tool with configured server identifiers. Map ~/.claude/... to ~/.cursor/skills/, .cursor/skills/, and .cursor/rules/ unless the task explicitly targets Claude Code.
Publish a tested skill to the laststance/skills repository for distribution via npx skills add.
~/laststance/skillsSKILL.md with frontmatter (name, description)mkdir -p ~/laststance/skills/skills/<name>
cp -r ~/.claude/skills/<name>/* ~/laststance/skills/skills/<name>/
Only copy files needed for the skill (SKILL.md + supporting files). Do NOT copy test artifacts or local-only files.
Sections A–C maintain alphabetical order; D is a count.
A. Install commands — Add to the specific skill install list:
npx skills add laststance/skills --skill <name>
B. Available Skills table — Add row in alphabetical position:
| [<name>](skills/<name>/) | <description> | <dependencies or —> |
Dependencies format:
—[Name](url) (recommended)[Name](url) **(required)**C. Usage examples — Add entry in alphabetical position:
/<name> <typical-args> # Short description
D. Skills count badge — bump the skill count in the shields.io badge near the top of the README:
img.shields.io/badge/skills-<N>-2563EB
<N> = total skill count after this publish: ls ~/laststance/skills/skills/*/SKILL.md | wc -l.
cd ~/laststance/skills
git add skills/<name>/ README.md
git commit -m "$(cat <<'EOF'
feat: add <name> skill — <short description>
EOF
)"
git push
~/laststance/skills/skills/<name>/skills-<N>)feat: add <name> skill formatOnce merged, install via CLI to create symlinks across all AI tools:
npx skills add laststance/skills
# or specific skill:
npx skills add laststance/skills --skill <name>
This installs to ~/.agents/skills/<name>/ and creates symlinks in ~/.claude/skills/, ~/.codex/skills/, ~/.vscode/skills/, etc. The hand-created original in ~/.claude/skills/ is replaced by the symlink.
testing
Cited research briefs
development
Daily coding habit prompts JP
development
React core deep-dive JP
data-ai
Copy last agent reply