init
This commit is contained in:
commit
ec53fcbe95
1905 changed files with 513762 additions and 0 deletions
15
tools/RemoteTriggerTool/prompt.ts
Normal file
15
tools/RemoteTriggerTool/prompt.ts
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
export const REMOTE_TRIGGER_TOOL_NAME = 'RemoteTrigger'
|
||||
|
||||
export const DESCRIPTION =
|
||||
'Manage scheduled remote Claude Code agents (triggers) via the claude.ai CCR API. Auth is handled in-process — the token never reaches the shell.'
|
||||
|
||||
export const PROMPT = `Call the claude.ai remote-trigger API. Use this instead of curl — the OAuth token is added automatically in-process and never exposed.
|
||||
|
||||
Actions:
|
||||
- list: GET /v1/code/triggers
|
||||
- get: GET /v1/code/triggers/{trigger_id}
|
||||
- create: POST /v1/code/triggers (requires body)
|
||||
- update: POST /v1/code/triggers/{trigger_id} (requires body, partial update)
|
||||
- run: POST /v1/code/triggers/{trigger_id}/run
|
||||
|
||||
The response is the raw JSON from the API.`
|
||||
Loading…
Add table
Add a link
Reference in a new issue