원클릭으로
create-google-task
Create a Google Task via the IFTTT JSON webhook
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create a Google Task via the IFTTT JSON webhook
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Capture notes into your daily journal using the jrnl CLI
Create a git commit using the message format below
Split working tree changes into up to five atomic commits, each with a message generated using the git-commit skill
Use Bun's shell API ($ from "bun") when writing or editing scripts that run shell commands in src/. Use when adding or changing subprocess/shell usage under src/, or when the user asks for shell execution in this project. Prefer Bun Shell over child_process or execSync.
Polish text by refining clarity, coherence, and conciseness
Add GitHub Actions workflow for publishing Rust crates using trusted publishing (OIDC). Use when setting up automated crate publishing, configuring crates.io trusted publishing, or when the user mentions crate publishing workflow.
| name | create-google-task |
| description | Create a Google Task via the IFTTT JSON webhook |
Create a Google Task by POSTing JSON to the IFTTT Maker webhook.
https://maker.ifttt.com/trigger/task/json/with/key/{IFTTT_MAKER_TASK_KEY}
Replace {IFTTT_MAKER_TASK_KEY} with the real key before calling the URL. Never
commit or hardcode the key in the skill or repo.
$env:IFTTT_MAKER_TASK_KEY (PowerShell) or $IFTTT_MAKER_TASK_KEY.{
"title": "Task title here - one line",
"notes": "Optional detailed notes\nCan include line breaks",
"due": "2026-07-25T23:59:59Z"
}
| Field | Required | Notes |
|---|---|---|
title | yes | Single-line task title |
notes | no | Detail text; \n allowed for line breaks |
due | no | ISO 8601 UTC datetime (e.g. ...T23:59:59Z) |
Omit optional fields when unused. Do not send empty strings for them.
Use PowerShell. Example with all fields:
$key = $env:IFTTT_MAKER_TASK_KEY
if (-not $key) { throw "IFTTT_MAKER_TASK_KEY is not set" }
$body = @{
title = "Task title here - one line"
notes = "Optional detailed notes`nCan include line breaks"
due = "2026-07-25T23:59:59Z"
} | ConvertTo-Json
Invoke-RestMethod `
-Method Post `
-Uri "https://maker.ifttt.com/trigger/task/json/with/key/$key" `
-ContentType "application/json" `
-Body $body
Title only:
$body = @{ title = "Buy milk" } | ConvertTo-Json
Invoke-RestMethod -Method Post -Uri "https://maker.ifttt.com/trigger/task/json/with/key/$key" -ContentType "application/json" -Body $body
title (and notes / due if relevant) when the user request is ambiguousdue; if the user gives a local date/time, convert and state the value used