mit einem Klick
laststance-publish-skill
Publish skill to registry
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Publish skill to registry
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
| name | laststance-publish-skill |
| description | Publish skill to registry |
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.
Create a GitHub PR for completed work, then run coderabbit-resolver through review, CI, merge, and cleanup. Use when: the user asks for PR creation followed by CodeRabbit resolution. Keywords: create PR, CodeRabbit, merge.
Secure pnpm GitHub Actions CI
Live onboarding tour of newly implemented code. Combines /deep-trace, the vscode-debug-mcp bridge, and playwright-cli to run the target app in a debug session, drive the UI, pause at curated breakpoints inside the new code, and narrate "this modal is the newly created one" — mapping every UI moment to the exact file:line. Use when the user wants to understand where and how AI-written feature code executes in the running application ("どの UI / どのロジックで動くのか分からない", "オンボーディングして", "/feature-tour").
Screenshot UI defect lint
Debug Claude Code plugins
Record a web or Electron-renderer flow as an annotated video with playwright-cli, then extract frames to confirm how it actually looks. Use when the user points at a flow to capture — "record that part", "あそこの部分", "この一連の動作", "動作確認して録画して", QA-ing a screen's motion/behavior, or proving a web / Electron-renderer interaction works on video. For analyzing a clip you were handed or generic cross-surface motion verification, use the `video` skill; for native macOS chrome (menu / tray / dock / traffic-lights) use computer-use — playwright cannot see those.