ワンクリックで
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