Agent Skills
› xuiltul/animaworks
› notion-tool
notion-tool
GitHubNotion API 集成工具,提供页面和数据库的搜索、获取、创建及更新功能。通过 CLI 执行,支持工作区搜索、内容读取、数据查询及元数据管理,需预先配置 API Token。
Trigger Scenarios
需要搜索 Notion 页面或数据库时
需要获取 Notion 页面元数据或正文内容时
需要创建或更新 Notion 页面及数据库时
Install
npx skills add xuiltul/animaworks --skill notion-tool -g -y
SKILL.md
Frontmatter
{
"name": "notion-tool",
"tags": [
"productivity",
"notion",
"external"
],
"description": "Notion連携ツール。ページ・データベースの検索・取得・作成・更新をAPIで行う。 Use when: Notionページ編集、データベース行の追加、ワークスペースの検索・取得が必要なとき。"
}
Notion ツール
Notion API 経由でページ・データベースの検索・取得・作成・更新を行う外部ツール。
呼び出し方法
Bash: animaworks-tool notion <サブコマンド> [引数] で実行
アクション一覧
search — ワークスペース検索
animaworks-tool notion search [検索ワード] -j
get_page — ページメタデータ取得
animaworks-tool notion get-page PAGE_ID -j
get_page_content — ページ本文取得
animaworks-tool notion get-page-content PAGE_ID -j
get_database — データベースメタデータ取得
animaworks-tool notion get-database DATABASE_ID -j
query — データベースクエリ
animaworks-tool notion query DATABASE_ID [--filter JSON] [--sorts JSON] [-n 10] -j
filter: Notion API フィルタ JSON(任意)sorts: ソート条件の配列(任意)
create_page — ページ作成
animaworks-tool notion create-page --parent-page-id ID --properties JSON -j
parent_page_idまたはparent_database_idのいずれかが必須children: ページ本文ブロック配列(任意)
update_page — ページ更新
animaworks-tool notion update-page PAGE_ID --properties JSON -j
create_database — データベース作成
animaworks-tool notion create-database --parent-page-id ID --title "名前" --properties JSON -j
CLI使用法
animaworks-tool notion search [検索ワード] -j
animaworks-tool notion get-page PAGE_ID -j
animaworks-tool notion get-page-content PAGE_ID -j
animaworks-tool notion get-database DATABASE_ID -j
animaworks-tool notion query DATABASE_ID [--filter JSON] [--sorts JSON] [-n 10] -j
animaworks-tool notion create-page --parent-page-id ID --properties JSON -j
animaworks-tool notion update-page PAGE_ID --properties JSON -j
animaworks-tool notion create-database --parent-page-id ID --title "名前" --properties JSON -j
注意事項
- Notion API Token は credentials に事前設定が必要
- ページ/データベースの ID はハイフン付き・なしどちらも可
- properties の構造は Notion API のスキーマに従う
Version History
- 140e43b Current 2026-07-25 09:13


