원클릭으로
cli
When creating Node.js/TypeScript CLI tools
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
When creating Node.js/TypeScript CLI tools
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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