원클릭으로
kadai
kadai is a script runner for this project. Discover available actions with kadai list --json, and run them with kadai run <action-id>.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
kadai is a script runner for this project. Discover available actions with kadai list --json, and run them with kadai run <action-id>.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | kadai |
| description | kadai is a script runner for this project. Discover available actions with kadai list --json, and run them with kadai run <action-id>. |
| user-invocable | false |
kadai manages and runs project-specific shell scripts stored in .kadai/actions/.
Important: Always invoke kadai via bunx kadai or npx kadai since it is typically not installed globally. Prefer bunx if available, fall back to npx.
bunx kadai list --json
# or
npx kadai list --json
Returns a JSON array of available actions:
[
{
"id": "database/reset",
"name": "Reset Database",
"emoji": "🗑️",
"description": "Drop and recreate the dev database",
"category": ["database"],
"runtime": "bash",
"confirm": true
}
]
Use --all to include hidden actions: bunx kadai list --json --all (or npx kadai list --json --all)
Always use kadai list --json (via bunx or npx) for the current set of actions — do not hardcode action lists.
bunx kadai run <action-id>
# or
npx kadai run <action-id>
Runs the action and streams stdout/stderr directly. The process exits with the action's exit code. Confirmation prompts are automatically skipped in non-TTY environments.
bunx kadai run hello
bunx kadai run database/reset
# or with npx
npx kadai run hello
npx kadai run database/reset