mit einem Klick
cli
When creating Node.js/TypeScript CLI tools
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ü
When creating Node.js/TypeScript CLI tools
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
Use this skill whenever the user wants to merge the main branch into their current branch. Triggers include phrases like "merge main", "mainをマージ", "mainを取り込む", "mainに追従", "sync with main", "mainの変更を取り込みたい", or any request to bring changes from main into a feature/working branch. Always use this skill — do not improvise git commands without it.
Template and notes when creating or updating SKILL.md files under skills/
Perspectives and rules when conducting a code review
Template, notes, and procedure when creating a Pull Request
Rules for Git commits, pushes, and PR creation
When creating, editing, or debugging GitHub Actions workflow YAML files
| name | cli |
| description | When creating Node.js/TypeScript CLI tools |
commander for simple CLIs, yargs for complex ones~/.local/share/<tool-name>/ for persistent datafzf for selection UIs, nvim for editing flowsora for long-running operationsinquirer when user input is requiredchalk or kleur for meaningful color coding--verbose flag for detailed loggingbin field in package.json for CLI entry point#!/usr/bin/env node in entry file"type": "module" for ESM supportversion command or automated versioningnix run .#<tool> if a flake is presentcli/
├── src/
│ ├── index.ts # Entry point
│ ├── commands/ # Command definitions
│ ├── utils/ # Helper functions
│ └── types.ts # Shared types
├── package.json
└── README.md
tsc --noEmit to check typesnpm run build before publishingnpm link locally