skills/notion-execute-task/SKILL.md
# Execute Task from Notion Board ## Trigger When the user points at a Notion board card and says "do it", "execute this", "work on this", or similar. Also when referencing a task by name from a known Notion database. ## Inputs 1. **Notion page/card** — the task to execute (required) 2. **Database** — the Notion database it belongs to (required, can be inferred from context) ## Control Center Schema (Quick Reference) Database ID: `32b9a1fd-a351-8064-9375-dc9a8f839d7a` Data source: `collection:
npx skillsauth add razbakov/skills skills/notion-execute-taskInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When the user points at a Notion board card and says "do it", "execute this", "work on this", or similar. Also when referencing a task by name from a known Notion database.
Database ID: 32b9a1fd-a351-8064-9375-dc9a8f839d7a
Data source: collection://32b9a1fd-a351-809d-bd4d-000b0d579048
| Property | Type | Values | |----------|------|--------| | Name | title | — | | Status | status | To do, Need input, In progress, To review, Done | | Project | select | WeDance, ikigai, razbakov.com, sdtv, smm-manager, facts-collector, montuno-club, dancegods, dancegodscompany, brievcase, voice-assistant, tasks-dashboard, call-agent, skill-mix, cv, web100, ai-study-group | | Priority | select | 🔴 High, 🟡 Medium, 🟢 Low | | GTD Type | select | Action, Content Idea, Reference, Someday, Rule | | Source | select | Telegram, Manual, Daily Review, Agent, Bookmark | | Telegram ID | number | message ID | | Due Date | date | any | | Effort | select | S, M, L |
Fetch the Notion page to understand:
<mention-page> links)## S3 Analysis section, read the Tension, Driver, and Requirement. Use the Requirement to scope your work — it defines what "done" looks like. Use Response Options as guidance for which approach to take (pick the most appropriate one). If S3 Analysis is missing, add it before starting work (see Step 1.5).notion-fetch(page_id, include_discussions: true)
notion-get-comments(page_id, include_all_blocks: true)
If comments exist, treat them as additional requirements or corrections that must be addressed in this execution.
If the page does NOT contain a ## S3 Analysis section, generate and add one before proceeding:
notion-update-page(page_id, command: "update_content", content_updates: [{
old_str: "<end of existing content>",
new_str: "<existing content>\n\n---\n\n## S3 Analysis\n\n### Tension\n[1-2 sentences]\n\n### Driver\n| Conditions | Effect | Relevance |\n|------------|--------|----------|\n| [facts] | [consequences] | [why it matters] |\n\n### Requirement\n> [who] needs [conditions] so that [outcomes]\n\n### Response Options\n- [ ] [option A]\n- [ ] [option B]\n- [ ] [defer/skip]"
}])
Use the card title, content, project, and GTD type to infer appropriate Tension, Driver, and Requirement. Connect the Relevance to the mission/OKRs.
notion-update-page(page_id, command: "update_properties", properties: { "Status": "In progress" })
If any properties are empty, infer and set them:
notion-update-page(page_id, command: "update_properties", properties: { ... })
Do whatever the card describes. This varies — could be:
Track progress with TaskCreate/TaskUpdate during execution.
Autonomy-first principle: Agents should be as autonomous as possible. Make decisions, pick reasonable defaults, and keep moving. Only use "Need input" when genuinely blocked — when the task requires a decision that could go fundamentally different directions and guessing wrong would waste significant effort.
When to set "Need input":
When NOT to set "Need input":
When setting "Need input", add a ## Questions section to the Notion page listing specific, answerable questions. Don't ask vague questions — be concrete about what you need to proceed.
If the task produced markdown files (research, blog posts, plans, etc.):
Append a ## Result section to the card with:
notion-update-page(page_id, command: "update_content", content_updates: [{
old_str: "<end of existing content>",
new_str: "<existing content>\n\n---\n\n## Result\n\n..."
}])
If the card has a Telegram ID, react with the GTD emoji:
cd ~/.config/telegram && uvx --python python3 --from telethon python3 -c "
import asyncio,json,os;from pathlib import Path;from telethon import TelegramClient;from telethon.tl.functions.messages import SendReactionRequest;from telethon.tl.types import ReactionEmoji
async def m():
c=TelegramClient(str(Path.home()/'.config/telegram/session'),int(os.environ['TELEGRAM_API_ID']),os.environ['TELEGRAM_API_HASH']);await c.start();me=await c.get_me()
await c(SendReactionRequest(peer=me.id,msg_id=<TELEGRAM_ID>,reaction=[ReactionEmoji(emoticon='<EMOJI>')]))
s=json.loads((Path.home()/'Projects/ikigai/inbox/.telegram-reactions.json').read_text());s['<TELEGRAM_ID>']='<EMOJI>'
(Path.home()/'Projects/ikigai/inbox/.telegram-reactions.json').write_text(json.dumps(s,indent=2)+chr(10));await c.disconnect()
asyncio.run(m())
"
Before moving to "To review", verify there are no unresolved threads — on Notion OR GitHub:
8a. Check Notion discussions:
notion-get-comments(page_id, include_all_blocks: true)
8b. Check GitHub PR reviews (if work produced a PR):
gh pr view <PR_NUMBER> --json reviewThreads --jq '.reviewThreads[] | select(.isResolved == false)'
If there are unresolved threads on either platform:
Do NOT set "To review" if any discussion thread remains unresolved — Notion or GitHub. The user should never receive a "To review" task with open feedback — that means the agent didn't finish the job.
The work is done and all discussions are resolved. Needs human review before marking complete. Never set to "Done" — that's the user's call after review.
notion-update-page(page_id, command: "update_properties", properties: { "Status": "To review" })
## Questions section on the page.tools
--- name: handoff description: Get an agent past a browser/UI wall it can't (or must not) cross on its own — a login-gated dashboard, a CAPTCHA, a 2FA prompt, an API that keeps rejecting the write, or an irreversible click that policy says a human must make. This skill is an ESCALATION LADDER, not a first move: it tells you to try the automated browser surfaces FIRST (Chrome-in-Claude, computer-use, an autonomous browser sub-agent) and only fall back to the Handoff app — a wrapper browser that h
documentation
Summarize one or more YouTube videos from their links. Use this whenever the user pastes a youtube.com or youtu.be URL (or several) and wants to know what it's about — phrasings like "summarize to telegram", "tldr these videos", "what do these say", "summary of this talk", or just dropping links with no instruction at all. Fetches each video's real transcript via yt-dlp (not the page text, which never contains the transcript), cleans the captions, and writes a per-video summary. Default delivery is Telegram; honor any other surface the user names ("to my notes", "just here in chat", "email it"). Trigger even when the user only pastes bare links — bare YouTube links almost always mean "tell me what's in these".
data-ai
Daily Digest — Chief-of-Staff role consolidates the six top-managers into one Telegram message to the Commander, instead of six. Implements the protocol from agent-proactivity.md.
development
Seed a new or empty Instagram account with a 9-post grid (3×3) so the profile looks established the moment a new visitor lands. Designed for festivals, new businesses, product launches, conferences, communities — any time an empty IG profile would hurt conversion from external traffic (QR scans, flyer drops, cross-promo). Generates assets via /image-from-gemini (per content-publishing rules — never HTML), writes captions with hashtag sets, and outputs a posting order + cadence plan. Trigger generously: phrases like '9 posts for instagram', 'fill my IG', 'starter grid', 'launch grid', 'instagram seed', '9-post grid', 'IG account not to look empty', 'first instagram posts', 'feed bootstrap', '3x3 grid', 'instagram launch content'. Even if the user mentions only one piece (just the images, just the captions, just the order), use this skill — the grid only works as an integrated bundle.