en un clic
cli
When creating Node.js/TypeScript CLI tools
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
When creating Node.js/TypeScript CLI tools
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
| 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 locallyUse 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