ワンクリックで
notion-token-api
Read Notion pages, blocks, and child pages through the Notion API using the provided integration token.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Read Notion pages, blocks, and child pages through the Notion API using the provided integration token.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Drive a headed Chromium via the agent-browser CLI — open/click/type/hover/scroll/screenshot/snapshot/eval/pdf/network-route. Use this for any web interaction; no native browser tool is exposed.
Search, install, and verify Debian or Ubuntu packages with apt-get in the container.
Search the web using DuckDuckGo. No API key required. Supports instant answers and HTML scraping modes. Privacy-focused search alternative.
Control the Linux desktop GUI using xdotool, wmctrl, dogtail, and scrot. Provides a window list, an accessibility-tree viewer (with coordinates) for finding buttons and text fields, a thin xdotool wrapper for actuating them, and a launcher helper that enables accessibility for Electron/Chromium apps.
This skill should be used when users need to search the web for information, find current content, look up news articles, search for images, or find videos. It uses DuckDuckGo's search API to return results in clean, formatted output (text, markdown, or JSON). Use for research, fact-checking, finding recent information, or gathering web resources.
Placeholder task skill.
| name | notion-token-api |
| description | Read Notion pages, blocks, and child pages through the Notion API using the provided integration token. |
| metadata | {"clawdbot":{"emoji":"📝","requires":{"env":["NOTION_API_TOKEN"]}}} |
Use the provided NOTION_API_TOKEN. Do not create a new integration, write tokens to disk, or request additional credentials.
python3 - <<'PY'
import json, os, urllib.request
headers = {
"Authorization": f"Bearer {os.environ['NOTION_API_TOKEN']}",
"Notion-Version": "2022-06-28",
"Content-Type": "application/json",
}
req = urllib.request.Request(
"https://api.notion.com/v1/search",
headers=headers,
data=json.dumps({"page_size": 100}).encode(),
method="POST",
)
print(json.dumps(json.load(urllib.request.urlopen(req, timeout=60)), indent=2, ensure_ascii=False))
PY
If the task gives you an exported Notion snapshot, read that file and preserve the supplied page ids in outputs.