원클릭으로
kimaki-inject
Inject prompts into existing Discord channels to trigger OpenCode sessions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Inject prompts into existing Discord channels to trigger OpenCode sessions
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Gmail inbox automation with pattern rules, AI triage, and Discord notifications
Analyze OpenCode token usage and estimate costs on OpenRouter
Control OpenCode agents from Discord via Kimaki CLI
Google Workspace CLI for Gmail, Calendar, Drive, Contacts, Sheets, and Docs
Schedule recurring tasks on macOS using launchd plists
| name | kimaki-inject |
| description | Inject prompts into existing Discord channels to trigger OpenCode sessions |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","workflow":"automation","platform":"any","requires":"kimaki","homepage":"https://kimaki.xyz","repository":"https://github.com/remorses/kimaki"} |
Send prompts to Discord channels, create sessions, manage threads, and trigger AI-powered workflows using the Kimaki CLI.
# Run via npx (no install needed)
npx -y kimaki@latest [command]
# Or install globally
npm install -g kimaki
For scheduling recurring tasks on macOS, see: macos-task-scheduler
# Send prompt to channel (creates new thread)
npx -y kimaki@latest send --channel CHANNEL_ID --prompt "Your prompt"
# Continue existing thread
npx -y kimaki@latest send --thread THREAD_ID --prompt "Follow-up"
# Continue existing session
npx -y kimaki@latest send --session SESSION_ID --prompt "Prompt"
| Option | Description |
|---|---|
-c, --channel | Discord channel ID |
-p, --prompt | Message/prompt content |
-d, --project | Project directory |
-n, --name | Thread name (optional) |
--thread | Continue existing thread |
--session | Continue existing session |
--notify-only | Create notification thread without starting AI session |
--wait | Wait for completion |
--worktree | Create git worktree |
--model | Specify model (format: provider/model) |
--agent | Specify agent type |
Use --notify-only to create a notification thread without starting an AI session. Useful for scheduled tasks:
npx -y kimaki@latest send --channel CHANNEL_ID --prompt "Daily brief ready" --notify-only
The user replies to the thread when ready to run the task.
npx -y kimaki@latest session list
npx -y kimaki@latest session list --project /path/to/project
npx -y kimaki@latest session list --json
npx -y kimaki@latest session read SESSION_ID
npx -y kimaki@latest upload-to-discord file1.md --session SESSION_ID
npx -y kimaki@latest tunnel --port 3000
npx -y kimaki@latest tunnel --port 3000 --tunnel-id my-app
npx -y kimaki@latest project list
npx -y kimaki@latest project list --json
npx -y kimaki@latest upgrade
# Default model
npx -y kimaki@latest send --channel 123 --prompt "Hello"
# Specific model
npx -y kimaki@latest send --channel 123 --prompt "Hello" --model anthropic/claude-3-5-sonnet-20241022
# With worktree
npx -y kimaki@latest send --channel 123 --prompt "Add feature" --worktree my-feature
# Wait for response
npx -y kimaki@latest send --channel 123 --prompt "Run tests" --wait