[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-letta-notion":3,"mdc-4hy7mo-key":33,"related-org-letta-notion":1947,"related-repo-letta-notion":2110},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"notion","manage Notion pages and databases","Notion API for creating and managing pages, databases, and blocks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"letta","Letta","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fletta.png","letta-ai",[13,16,19],{"name":14,"slug":4,"type":15},"Notion","tag",{"name":17,"slug":18,"type":15},"Knowledge Management","knowledge-management",{"name":20,"slug":21,"type":15},"API Development","api-development",127,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills","2026-07-13T06:24:07.395296",null,20,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"A shared repository for skills. Intended to be used with Letta Code, Claude Code, Codex CLI, and other agents that support skills.","https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fskills\u002Ftree\u002FHEAD\u002Ftools\u002Fnotion","---\nname: notion\ndescription: Notion API for creating and managing pages, databases, and blocks.\nhomepage: https:\u002F\u002Fdevelopers.notion.com\n\n---\n\n# notion\n\nUse the Notion API to create\u002Fread\u002Fupdate pages, data sources (databases), and blocks.\n\n## Setup\n\n1. Create an integration at https:\u002F\u002Fnotion.so\u002Fmy-integrations\n2. Copy the API key (starts with `ntn_` or `secret_`)\n3. Store it:\n\n```bash\nmkdir -p ~\u002F.config\u002Fnotion\necho \"ntn_your_key_here\" > ~\u002F.config\u002Fnotion\u002Fapi_key\n```\n\n4. Share target pages\u002Fdatabases with your integration (click \"...\" → \"Connect to\" → your integration name)\n\n## API Basics\n\nAll requests need:\n\n```bash\nNOTION_KEY=$(cat ~\u002F.config\u002Fnotion\u002Fapi_key)\ncurl -X GET \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002F...\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\"\n```\n\n> **Note:** The `Notion-Version` header is required. This skill uses `2025-09-03` (latest). In this version, databases are called \"data sources\" in the API.\n\n## Common Operations\n\n**Search for pages and data sources:**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fsearch\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\": \"page title\"}'\n```\n\n**Get page:**\n\n```bash\ncurl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n```\n\n**Get page content (blocks):**\n\n```bash\ncurl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n```\n\n**Create page in a data source:**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"properties\": {\n      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n    }\n  }'\n```\n\n**Query a data source (database):**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\u002F{data_source_id}\u002Fquery\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n  }'\n```\n\n**Create a data source (database):**\n\n```bash\ncurl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"page_id\": \"xxx\"},\n    \"title\": [{\"text\": {\"content\": \"My Database\"}}],\n    \"properties\": {\n      \"Name\": {\"title\": {}},\n      \"Status\": {\"select\": {\"options\": [{\"name\": \"Todo\"}, {\"name\": \"Done\"}]}},\n      \"Date\": {\"date\": {}}\n    }\n  }'\n```\n\n**Update page properties:**\n\n```bash\ncurl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}}}'\n```\n\n**Add blocks to page:**\n\n```bash\ncurl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"children\": [\n      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n    ]\n  }'\n```\n\n## Property Types\n\nCommon property formats for database items:\n\n- **Title:** `{\"title\": [{\"text\": {\"content\": \"...\"}}]}`\n- **Rich text:** `{\"rich_text\": [{\"text\": {\"content\": \"...\"}}]}`\n- **Select:** `{\"select\": {\"name\": \"Option\"}}`\n- **Multi-select:** `{\"multi_select\": [{\"name\": \"A\"}, {\"name\": \"B\"}]}`\n- **Date:** `{\"date\": {\"start\": \"2024-01-15\", \"end\": \"2024-01-16\"}}`\n- **Checkbox:** `{\"checkbox\": true}`\n- **Number:** `{\"number\": 42}`\n- **URL:** `{\"url\": \"https:\u002F\u002F...\"}`\n- **Email:** `{\"email\": \"a@b.com\"}`\n- **Relation:** `{\"relation\": [{\"id\": \"page_id\"}]}`\n\n## Key Differences in 2025-09-03\n\n- **Databases → Data Sources:** Use `\u002Fdata_sources\u002F` endpoints for queries and retrieval\n- **Two IDs:** Each database now has both a `database_id` and a `data_source_id`\n  - Use `database_id` when creating pages (`parent: {\"database_id\": \"...\"}`)\n  - Use `data_source_id` when querying (`POST \u002Fv1\u002Fdata_sources\u002F{id}\u002Fquery`)\n- **Search results:** Databases return as `\"object\": \"data_source\"` with their `data_source_id`\n- **Parent in responses:** Pages show `parent.data_source_id` alongside `parent.database_id`\n- **Finding the data_source_id:** Search for the database, or call `GET \u002Fv1\u002Fdata_sources\u002F{data_source_id}`\n\n## Notes\n\n- Page\u002Fdatabase IDs are UUIDs (with or without dashes)\n- The API cannot set database view filters — that's UI-only\n- Rate limit: ~3 requests\u002Fsecond average, with `429 rate_limited` responses using `Retry-After`\n- Append block children: up to 100 children per request, up to two levels of nesting in a single append request\n- Payload size limits: up to 1000 block elements and 500KB overall\n- Use `is_inline: true` when creating data sources to embed them in pages\n",{"data":34,"body":36},{"name":4,"description":6,"homepage":35},"https:\u002F\u002Fdevelopers.notion.com",{"type":37,"children":38},"root",[39,46,52,59,104,174,183,189,194,343,374,380,388,524,532,609,617,694,702,888,896,1050,1058,1252,1260,1392,1400,1561,1567,1572,1727,1733,1881,1887,1941],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":4},"text",{"type":40,"tag":47,"props":48,"children":49},"p",{},[50],{"type":45,"value":51},"Use the Notion API to create\u002Fread\u002Fupdate pages, data sources (databases), and blocks.",{"type":40,"tag":53,"props":54,"children":56},"h2",{"id":55},"setup",[57],{"type":45,"value":58},"Setup",{"type":40,"tag":60,"props":61,"children":62},"ol",{},[63,77,99],{"type":40,"tag":64,"props":65,"children":66},"li",{},[67,69],{"type":45,"value":68},"Create an integration at ",{"type":40,"tag":70,"props":71,"children":75},"a",{"href":72,"rel":73},"https:\u002F\u002Fnotion.so\u002Fmy-integrations",[74],"nofollow",[76],{"type":45,"value":72},{"type":40,"tag":64,"props":78,"children":79},{},[80,82,89,91,97],{"type":45,"value":81},"Copy the API key (starts with ",{"type":40,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":45,"value":88},"ntn_",{"type":45,"value":90}," or ",{"type":40,"tag":83,"props":92,"children":94},{"className":93},[],[95],{"type":45,"value":96},"secret_",{"type":45,"value":98},")",{"type":40,"tag":64,"props":100,"children":101},{},[102],{"type":45,"value":103},"Store it:",{"type":40,"tag":105,"props":106,"children":111},"pre",{"className":107,"code":108,"language":109,"meta":110,"style":110},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","mkdir -p ~\u002F.config\u002Fnotion\necho \"ntn_your_key_here\" > ~\u002F.config\u002Fnotion\u002Fapi_key\n","bash","",[112],{"type":40,"tag":83,"props":113,"children":114},{"__ignoreMap":110},[115,138],{"type":40,"tag":116,"props":117,"children":120},"span",{"class":118,"line":119},"line",1,[121,127,133],{"type":40,"tag":116,"props":122,"children":124},{"style":123},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[125],{"type":45,"value":126},"mkdir",{"type":40,"tag":116,"props":128,"children":130},{"style":129},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[131],{"type":45,"value":132}," -p",{"type":40,"tag":116,"props":134,"children":135},{"style":129},[136],{"type":45,"value":137}," ~\u002F.config\u002Fnotion\n",{"type":40,"tag":116,"props":139,"children":141},{"class":118,"line":140},2,[142,148,154,159,164,169],{"type":40,"tag":116,"props":143,"children":145},{"style":144},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[146],{"type":45,"value":147},"echo",{"type":40,"tag":116,"props":149,"children":151},{"style":150},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[152],{"type":45,"value":153}," \"",{"type":40,"tag":116,"props":155,"children":156},{"style":129},[157],{"type":45,"value":158},"ntn_your_key_here",{"type":40,"tag":116,"props":160,"children":161},{"style":150},[162],{"type":45,"value":163},"\"",{"type":40,"tag":116,"props":165,"children":166},{"style":150},[167],{"type":45,"value":168}," >",{"type":40,"tag":116,"props":170,"children":171},{"style":129},[172],{"type":45,"value":173}," ~\u002F.config\u002Fnotion\u002Fapi_key\n",{"type":40,"tag":60,"props":175,"children":177},{"start":176},4,[178],{"type":40,"tag":64,"props":179,"children":180},{},[181],{"type":45,"value":182},"Share target pages\u002Fdatabases with your integration (click \"...\" → \"Connect to\" → your integration name)",{"type":40,"tag":53,"props":184,"children":186},{"id":185},"api-basics",[187],{"type":45,"value":188},"API Basics",{"type":40,"tag":47,"props":190,"children":191},{},[192],{"type":45,"value":193},"All requests need:",{"type":40,"tag":105,"props":195,"children":197},{"className":107,"code":196,"language":109,"meta":110,"style":110},"NOTION_KEY=$(cat ~\u002F.config\u002Fnotion\u002Fapi_key)\ncurl -X GET \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002F...\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\"\n",[198],{"type":40,"tag":83,"props":199,"children":200},{"__ignoreMap":110},[201,230,266,297,321],{"type":40,"tag":116,"props":202,"children":203},{"class":118,"line":119},[204,210,215,220,225],{"type":40,"tag":116,"props":205,"children":207},{"style":206},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[208],{"type":45,"value":209},"NOTION_KEY",{"type":40,"tag":116,"props":211,"children":212},{"style":150},[213],{"type":45,"value":214},"=$(",{"type":40,"tag":116,"props":216,"children":217},{"style":123},[218],{"type":45,"value":219},"cat",{"type":40,"tag":116,"props":221,"children":222},{"style":129},[223],{"type":45,"value":224}," ~\u002F.config\u002Fnotion\u002Fapi_key",{"type":40,"tag":116,"props":226,"children":227},{"style":150},[228],{"type":45,"value":229},")\n",{"type":40,"tag":116,"props":231,"children":232},{"class":118,"line":140},[233,238,243,248,252,257,261],{"type":40,"tag":116,"props":234,"children":235},{"style":123},[236],{"type":45,"value":237},"curl",{"type":40,"tag":116,"props":239,"children":240},{"style":129},[241],{"type":45,"value":242}," -X",{"type":40,"tag":116,"props":244,"children":245},{"style":129},[246],{"type":45,"value":247}," GET",{"type":40,"tag":116,"props":249,"children":250},{"style":150},[251],{"type":45,"value":153},{"type":40,"tag":116,"props":253,"children":254},{"style":129},[255],{"type":45,"value":256},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002F...",{"type":40,"tag":116,"props":258,"children":259},{"style":150},[260],{"type":45,"value":163},{"type":40,"tag":116,"props":262,"children":263},{"style":206},[264],{"type":45,"value":265}," \\\n",{"type":40,"tag":116,"props":267,"children":269},{"class":118,"line":268},3,[270,275,279,284,289,293],{"type":40,"tag":116,"props":271,"children":272},{"style":129},[273],{"type":45,"value":274},"  -H",{"type":40,"tag":116,"props":276,"children":277},{"style":150},[278],{"type":45,"value":153},{"type":40,"tag":116,"props":280,"children":281},{"style":129},[282],{"type":45,"value":283},"Authorization: Bearer ",{"type":40,"tag":116,"props":285,"children":286},{"style":206},[287],{"type":45,"value":288},"$NOTION_KEY",{"type":40,"tag":116,"props":290,"children":291},{"style":150},[292],{"type":45,"value":163},{"type":40,"tag":116,"props":294,"children":295},{"style":206},[296],{"type":45,"value":265},{"type":40,"tag":116,"props":298,"children":299},{"class":118,"line":176},[300,304,308,313,317],{"type":40,"tag":116,"props":301,"children":302},{"style":129},[303],{"type":45,"value":274},{"type":40,"tag":116,"props":305,"children":306},{"style":150},[307],{"type":45,"value":153},{"type":40,"tag":116,"props":309,"children":310},{"style":129},[311],{"type":45,"value":312},"Notion-Version: 2025-09-03",{"type":40,"tag":116,"props":314,"children":315},{"style":150},[316],{"type":45,"value":163},{"type":40,"tag":116,"props":318,"children":319},{"style":206},[320],{"type":45,"value":265},{"type":40,"tag":116,"props":322,"children":324},{"class":118,"line":323},5,[325,329,333,338],{"type":40,"tag":116,"props":326,"children":327},{"style":129},[328],{"type":45,"value":274},{"type":40,"tag":116,"props":330,"children":331},{"style":150},[332],{"type":45,"value":153},{"type":40,"tag":116,"props":334,"children":335},{"style":129},[336],{"type":45,"value":337},"Content-Type: application\u002Fjson",{"type":40,"tag":116,"props":339,"children":340},{"style":150},[341],{"type":45,"value":342},"\"\n",{"type":40,"tag":344,"props":345,"children":346},"blockquote",{},[347],{"type":40,"tag":47,"props":348,"children":349},{},[350,356,358,364,366,372],{"type":40,"tag":351,"props":352,"children":353},"strong",{},[354],{"type":45,"value":355},"Note:",{"type":45,"value":357}," The ",{"type":40,"tag":83,"props":359,"children":361},{"className":360},[],[362],{"type":45,"value":363},"Notion-Version",{"type":45,"value":365}," header is required. This skill uses ",{"type":40,"tag":83,"props":367,"children":369},{"className":368},[],[370],{"type":45,"value":371},"2025-09-03",{"type":45,"value":373}," (latest). In this version, databases are called \"data sources\" in the API.",{"type":40,"tag":53,"props":375,"children":377},{"id":376},"common-operations",[378],{"type":45,"value":379},"Common Operations",{"type":40,"tag":47,"props":381,"children":382},{},[383],{"type":40,"tag":351,"props":384,"children":385},{},[386],{"type":45,"value":387},"Search for pages and data sources:",{"type":40,"tag":105,"props":389,"children":391},{"className":107,"code":390,"language":109,"meta":110,"style":110},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fsearch\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"query\": \"page title\"}'\n",[392],{"type":40,"tag":83,"props":393,"children":394},{"__ignoreMap":110},[395,428,455,478,501],{"type":40,"tag":116,"props":396,"children":397},{"class":118,"line":119},[398,402,406,411,415,420,424],{"type":40,"tag":116,"props":399,"children":400},{"style":123},[401],{"type":45,"value":237},{"type":40,"tag":116,"props":403,"children":404},{"style":129},[405],{"type":45,"value":242},{"type":40,"tag":116,"props":407,"children":408},{"style":129},[409],{"type":45,"value":410}," POST",{"type":40,"tag":116,"props":412,"children":413},{"style":150},[414],{"type":45,"value":153},{"type":40,"tag":116,"props":416,"children":417},{"style":129},[418],{"type":45,"value":419},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fsearch",{"type":40,"tag":116,"props":421,"children":422},{"style":150},[423],{"type":45,"value":163},{"type":40,"tag":116,"props":425,"children":426},{"style":206},[427],{"type":45,"value":265},{"type":40,"tag":116,"props":429,"children":430},{"class":118,"line":140},[431,435,439,443,447,451],{"type":40,"tag":116,"props":432,"children":433},{"style":129},[434],{"type":45,"value":274},{"type":40,"tag":116,"props":436,"children":437},{"style":150},[438],{"type":45,"value":153},{"type":40,"tag":116,"props":440,"children":441},{"style":129},[442],{"type":45,"value":283},{"type":40,"tag":116,"props":444,"children":445},{"style":206},[446],{"type":45,"value":288},{"type":40,"tag":116,"props":448,"children":449},{"style":150},[450],{"type":45,"value":163},{"type":40,"tag":116,"props":452,"children":453},{"style":206},[454],{"type":45,"value":265},{"type":40,"tag":116,"props":456,"children":457},{"class":118,"line":268},[458,462,466,470,474],{"type":40,"tag":116,"props":459,"children":460},{"style":129},[461],{"type":45,"value":274},{"type":40,"tag":116,"props":463,"children":464},{"style":150},[465],{"type":45,"value":153},{"type":40,"tag":116,"props":467,"children":468},{"style":129},[469],{"type":45,"value":312},{"type":40,"tag":116,"props":471,"children":472},{"style":150},[473],{"type":45,"value":163},{"type":40,"tag":116,"props":475,"children":476},{"style":206},[477],{"type":45,"value":265},{"type":40,"tag":116,"props":479,"children":480},{"class":118,"line":176},[481,485,489,493,497],{"type":40,"tag":116,"props":482,"children":483},{"style":129},[484],{"type":45,"value":274},{"type":40,"tag":116,"props":486,"children":487},{"style":150},[488],{"type":45,"value":153},{"type":40,"tag":116,"props":490,"children":491},{"style":129},[492],{"type":45,"value":337},{"type":40,"tag":116,"props":494,"children":495},{"style":150},[496],{"type":45,"value":163},{"type":40,"tag":116,"props":498,"children":499},{"style":206},[500],{"type":45,"value":265},{"type":40,"tag":116,"props":502,"children":503},{"class":118,"line":323},[504,509,514,519],{"type":40,"tag":116,"props":505,"children":506},{"style":129},[507],{"type":45,"value":508},"  -d",{"type":40,"tag":116,"props":510,"children":511},{"style":150},[512],{"type":45,"value":513}," '",{"type":40,"tag":116,"props":515,"children":516},{"style":129},[517],{"type":45,"value":518},"{\"query\": \"page title\"}",{"type":40,"tag":116,"props":520,"children":521},{"style":150},[522],{"type":45,"value":523},"'\n",{"type":40,"tag":47,"props":525,"children":526},{},[527],{"type":40,"tag":351,"props":528,"children":529},{},[530],{"type":45,"value":531},"Get page:",{"type":40,"tag":105,"props":533,"children":535},{"className":107,"code":534,"language":109,"meta":110,"style":110},"curl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n",[536],{"type":40,"tag":83,"props":537,"children":538},{"__ignoreMap":110},[539,563,590],{"type":40,"tag":116,"props":540,"children":541},{"class":118,"line":119},[542,546,550,555,559],{"type":40,"tag":116,"props":543,"children":544},{"style":123},[545],{"type":45,"value":237},{"type":40,"tag":116,"props":547,"children":548},{"style":150},[549],{"type":45,"value":153},{"type":40,"tag":116,"props":551,"children":552},{"style":129},[553],{"type":45,"value":554},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}",{"type":40,"tag":116,"props":556,"children":557},{"style":150},[558],{"type":45,"value":163},{"type":40,"tag":116,"props":560,"children":561},{"style":206},[562],{"type":45,"value":265},{"type":40,"tag":116,"props":564,"children":565},{"class":118,"line":140},[566,570,574,578,582,586],{"type":40,"tag":116,"props":567,"children":568},{"style":129},[569],{"type":45,"value":274},{"type":40,"tag":116,"props":571,"children":572},{"style":150},[573],{"type":45,"value":153},{"type":40,"tag":116,"props":575,"children":576},{"style":129},[577],{"type":45,"value":283},{"type":40,"tag":116,"props":579,"children":580},{"style":206},[581],{"type":45,"value":288},{"type":40,"tag":116,"props":583,"children":584},{"style":150},[585],{"type":45,"value":163},{"type":40,"tag":116,"props":587,"children":588},{"style":206},[589],{"type":45,"value":265},{"type":40,"tag":116,"props":591,"children":592},{"class":118,"line":268},[593,597,601,605],{"type":40,"tag":116,"props":594,"children":595},{"style":129},[596],{"type":45,"value":274},{"type":40,"tag":116,"props":598,"children":599},{"style":150},[600],{"type":45,"value":153},{"type":40,"tag":116,"props":602,"children":603},{"style":129},[604],{"type":45,"value":312},{"type":40,"tag":116,"props":606,"children":607},{"style":150},[608],{"type":45,"value":342},{"type":40,"tag":47,"props":610,"children":611},{},[612],{"type":40,"tag":351,"props":613,"children":614},{},[615],{"type":45,"value":616},"Get page content (blocks):",{"type":40,"tag":105,"props":618,"children":620},{"className":107,"code":619,"language":109,"meta":110,"style":110},"curl \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\"\n",[621],{"type":40,"tag":83,"props":622,"children":623},{"__ignoreMap":110},[624,648,675],{"type":40,"tag":116,"props":625,"children":626},{"class":118,"line":119},[627,631,635,640,644],{"type":40,"tag":116,"props":628,"children":629},{"style":123},[630],{"type":45,"value":237},{"type":40,"tag":116,"props":632,"children":633},{"style":150},[634],{"type":45,"value":153},{"type":40,"tag":116,"props":636,"children":637},{"style":129},[638],{"type":45,"value":639},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren",{"type":40,"tag":116,"props":641,"children":642},{"style":150},[643],{"type":45,"value":163},{"type":40,"tag":116,"props":645,"children":646},{"style":206},[647],{"type":45,"value":265},{"type":40,"tag":116,"props":649,"children":650},{"class":118,"line":140},[651,655,659,663,667,671],{"type":40,"tag":116,"props":652,"children":653},{"style":129},[654],{"type":45,"value":274},{"type":40,"tag":116,"props":656,"children":657},{"style":150},[658],{"type":45,"value":153},{"type":40,"tag":116,"props":660,"children":661},{"style":129},[662],{"type":45,"value":283},{"type":40,"tag":116,"props":664,"children":665},{"style":206},[666],{"type":45,"value":288},{"type":40,"tag":116,"props":668,"children":669},{"style":150},[670],{"type":45,"value":163},{"type":40,"tag":116,"props":672,"children":673},{"style":206},[674],{"type":45,"value":265},{"type":40,"tag":116,"props":676,"children":677},{"class":118,"line":268},[678,682,686,690],{"type":40,"tag":116,"props":679,"children":680},{"style":129},[681],{"type":45,"value":274},{"type":40,"tag":116,"props":683,"children":684},{"style":150},[685],{"type":45,"value":153},{"type":40,"tag":116,"props":687,"children":688},{"style":129},[689],{"type":45,"value":312},{"type":40,"tag":116,"props":691,"children":692},{"style":150},[693],{"type":45,"value":342},{"type":40,"tag":47,"props":695,"children":696},{},[697],{"type":40,"tag":351,"props":698,"children":699},{},[700],{"type":45,"value":701},"Create page in a data source:",{"type":40,"tag":105,"props":703,"children":705},{"className":107,"code":704,"language":109,"meta":110,"style":110},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"database_id\": \"xxx\"},\n    \"properties\": {\n      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n    }\n  }'\n",[706],{"type":40,"tag":83,"props":707,"children":708},{"__ignoreMap":110},[709,741,768,791,814,830,839,848,857,866,875],{"type":40,"tag":116,"props":710,"children":711},{"class":118,"line":119},[712,716,720,724,728,733,737],{"type":40,"tag":116,"props":713,"children":714},{"style":123},[715],{"type":45,"value":237},{"type":40,"tag":116,"props":717,"children":718},{"style":129},[719],{"type":45,"value":242},{"type":40,"tag":116,"props":721,"children":722},{"style":129},[723],{"type":45,"value":410},{"type":40,"tag":116,"props":725,"children":726},{"style":150},[727],{"type":45,"value":153},{"type":40,"tag":116,"props":729,"children":730},{"style":129},[731],{"type":45,"value":732},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages",{"type":40,"tag":116,"props":734,"children":735},{"style":150},[736],{"type":45,"value":163},{"type":40,"tag":116,"props":738,"children":739},{"style":206},[740],{"type":45,"value":265},{"type":40,"tag":116,"props":742,"children":743},{"class":118,"line":140},[744,748,752,756,760,764],{"type":40,"tag":116,"props":745,"children":746},{"style":129},[747],{"type":45,"value":274},{"type":40,"tag":116,"props":749,"children":750},{"style":150},[751],{"type":45,"value":153},{"type":40,"tag":116,"props":753,"children":754},{"style":129},[755],{"type":45,"value":283},{"type":40,"tag":116,"props":757,"children":758},{"style":206},[759],{"type":45,"value":288},{"type":40,"tag":116,"props":761,"children":762},{"style":150},[763],{"type":45,"value":163},{"type":40,"tag":116,"props":765,"children":766},{"style":206},[767],{"type":45,"value":265},{"type":40,"tag":116,"props":769,"children":770},{"class":118,"line":268},[771,775,779,783,787],{"type":40,"tag":116,"props":772,"children":773},{"style":129},[774],{"type":45,"value":274},{"type":40,"tag":116,"props":776,"children":777},{"style":150},[778],{"type":45,"value":153},{"type":40,"tag":116,"props":780,"children":781},{"style":129},[782],{"type":45,"value":312},{"type":40,"tag":116,"props":784,"children":785},{"style":150},[786],{"type":45,"value":163},{"type":40,"tag":116,"props":788,"children":789},{"style":206},[790],{"type":45,"value":265},{"type":40,"tag":116,"props":792,"children":793},{"class":118,"line":176},[794,798,802,806,810],{"type":40,"tag":116,"props":795,"children":796},{"style":129},[797],{"type":45,"value":274},{"type":40,"tag":116,"props":799,"children":800},{"style":150},[801],{"type":45,"value":153},{"type":40,"tag":116,"props":803,"children":804},{"style":129},[805],{"type":45,"value":337},{"type":40,"tag":116,"props":807,"children":808},{"style":150},[809],{"type":45,"value":163},{"type":40,"tag":116,"props":811,"children":812},{"style":206},[813],{"type":45,"value":265},{"type":40,"tag":116,"props":815,"children":816},{"class":118,"line":323},[817,821,825],{"type":40,"tag":116,"props":818,"children":819},{"style":129},[820],{"type":45,"value":508},{"type":40,"tag":116,"props":822,"children":823},{"style":150},[824],{"type":45,"value":513},{"type":40,"tag":116,"props":826,"children":827},{"style":129},[828],{"type":45,"value":829},"{\n",{"type":40,"tag":116,"props":831,"children":833},{"class":118,"line":832},6,[834],{"type":40,"tag":116,"props":835,"children":836},{"style":129},[837],{"type":45,"value":838},"    \"parent\": {\"database_id\": \"xxx\"},\n",{"type":40,"tag":116,"props":840,"children":842},{"class":118,"line":841},7,[843],{"type":40,"tag":116,"props":844,"children":845},{"style":129},[846],{"type":45,"value":847},"    \"properties\": {\n",{"type":40,"tag":116,"props":849,"children":851},{"class":118,"line":850},8,[852],{"type":40,"tag":116,"props":853,"children":854},{"style":129},[855],{"type":45,"value":856},"      \"Name\": {\"title\": [{\"text\": {\"content\": \"New Item\"}}]},\n",{"type":40,"tag":116,"props":858,"children":860},{"class":118,"line":859},9,[861],{"type":40,"tag":116,"props":862,"children":863},{"style":129},[864],{"type":45,"value":865},"      \"Status\": {\"select\": {\"name\": \"Todo\"}}\n",{"type":40,"tag":116,"props":867,"children":869},{"class":118,"line":868},10,[870],{"type":40,"tag":116,"props":871,"children":872},{"style":129},[873],{"type":45,"value":874},"    }\n",{"type":40,"tag":116,"props":876,"children":878},{"class":118,"line":877},11,[879,884],{"type":40,"tag":116,"props":880,"children":881},{"style":129},[882],{"type":45,"value":883},"  }",{"type":40,"tag":116,"props":885,"children":886},{"style":150},[887],{"type":45,"value":523},{"type":40,"tag":47,"props":889,"children":890},{},[891],{"type":40,"tag":351,"props":892,"children":893},{},[894],{"type":45,"value":895},"Query a data source (database):",{"type":40,"tag":105,"props":897,"children":899},{"className":107,"code":898,"language":109,"meta":110,"style":110},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\u002F{data_source_id}\u002Fquery\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n  }'\n",[900],{"type":40,"tag":83,"props":901,"children":902},{"__ignoreMap":110},[903,935,962,985,1008,1023,1031,1039],{"type":40,"tag":116,"props":904,"children":905},{"class":118,"line":119},[906,910,914,918,922,927,931],{"type":40,"tag":116,"props":907,"children":908},{"style":123},[909],{"type":45,"value":237},{"type":40,"tag":116,"props":911,"children":912},{"style":129},[913],{"type":45,"value":242},{"type":40,"tag":116,"props":915,"children":916},{"style":129},[917],{"type":45,"value":410},{"type":40,"tag":116,"props":919,"children":920},{"style":150},[921],{"type":45,"value":153},{"type":40,"tag":116,"props":923,"children":924},{"style":129},[925],{"type":45,"value":926},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\u002F{data_source_id}\u002Fquery",{"type":40,"tag":116,"props":928,"children":929},{"style":150},[930],{"type":45,"value":163},{"type":40,"tag":116,"props":932,"children":933},{"style":206},[934],{"type":45,"value":265},{"type":40,"tag":116,"props":936,"children":937},{"class":118,"line":140},[938,942,946,950,954,958],{"type":40,"tag":116,"props":939,"children":940},{"style":129},[941],{"type":45,"value":274},{"type":40,"tag":116,"props":943,"children":944},{"style":150},[945],{"type":45,"value":153},{"type":40,"tag":116,"props":947,"children":948},{"style":129},[949],{"type":45,"value":283},{"type":40,"tag":116,"props":951,"children":952},{"style":206},[953],{"type":45,"value":288},{"type":40,"tag":116,"props":955,"children":956},{"style":150},[957],{"type":45,"value":163},{"type":40,"tag":116,"props":959,"children":960},{"style":206},[961],{"type":45,"value":265},{"type":40,"tag":116,"props":963,"children":964},{"class":118,"line":268},[965,969,973,977,981],{"type":40,"tag":116,"props":966,"children":967},{"style":129},[968],{"type":45,"value":274},{"type":40,"tag":116,"props":970,"children":971},{"style":150},[972],{"type":45,"value":153},{"type":40,"tag":116,"props":974,"children":975},{"style":129},[976],{"type":45,"value":312},{"type":40,"tag":116,"props":978,"children":979},{"style":150},[980],{"type":45,"value":163},{"type":40,"tag":116,"props":982,"children":983},{"style":206},[984],{"type":45,"value":265},{"type":40,"tag":116,"props":986,"children":987},{"class":118,"line":176},[988,992,996,1000,1004],{"type":40,"tag":116,"props":989,"children":990},{"style":129},[991],{"type":45,"value":274},{"type":40,"tag":116,"props":993,"children":994},{"style":150},[995],{"type":45,"value":153},{"type":40,"tag":116,"props":997,"children":998},{"style":129},[999],{"type":45,"value":337},{"type":40,"tag":116,"props":1001,"children":1002},{"style":150},[1003],{"type":45,"value":163},{"type":40,"tag":116,"props":1005,"children":1006},{"style":206},[1007],{"type":45,"value":265},{"type":40,"tag":116,"props":1009,"children":1010},{"class":118,"line":323},[1011,1015,1019],{"type":40,"tag":116,"props":1012,"children":1013},{"style":129},[1014],{"type":45,"value":508},{"type":40,"tag":116,"props":1016,"children":1017},{"style":150},[1018],{"type":45,"value":513},{"type":40,"tag":116,"props":1020,"children":1021},{"style":129},[1022],{"type":45,"value":829},{"type":40,"tag":116,"props":1024,"children":1025},{"class":118,"line":832},[1026],{"type":40,"tag":116,"props":1027,"children":1028},{"style":129},[1029],{"type":45,"value":1030},"    \"filter\": {\"property\": \"Status\", \"select\": {\"equals\": \"Active\"}},\n",{"type":40,"tag":116,"props":1032,"children":1033},{"class":118,"line":841},[1034],{"type":40,"tag":116,"props":1035,"children":1036},{"style":129},[1037],{"type":45,"value":1038},"    \"sorts\": [{\"property\": \"Date\", \"direction\": \"descending\"}]\n",{"type":40,"tag":116,"props":1040,"children":1041},{"class":118,"line":850},[1042,1046],{"type":40,"tag":116,"props":1043,"children":1044},{"style":129},[1045],{"type":45,"value":883},{"type":40,"tag":116,"props":1047,"children":1048},{"style":150},[1049],{"type":45,"value":523},{"type":40,"tag":47,"props":1051,"children":1052},{},[1053],{"type":40,"tag":351,"props":1054,"children":1055},{},[1056],{"type":45,"value":1057},"Create a data source (database):",{"type":40,"tag":105,"props":1059,"children":1061},{"className":107,"code":1060,"language":109,"meta":110,"style":110},"curl -X POST \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"parent\": {\"page_id\": \"xxx\"},\n    \"title\": [{\"text\": {\"content\": \"My Database\"}}],\n    \"properties\": {\n      \"Name\": {\"title\": {}},\n      \"Status\": {\"select\": {\"options\": [{\"name\": \"Todo\"}, {\"name\": \"Done\"}]}},\n      \"Date\": {\"date\": {}}\n    }\n  }'\n",[1062],{"type":40,"tag":83,"props":1063,"children":1064},{"__ignoreMap":110},[1065,1097,1124,1147,1170,1185,1193,1201,1208,1216,1224,1232,1240],{"type":40,"tag":116,"props":1066,"children":1067},{"class":118,"line":119},[1068,1072,1076,1080,1084,1089,1093],{"type":40,"tag":116,"props":1069,"children":1070},{"style":123},[1071],{"type":45,"value":237},{"type":40,"tag":116,"props":1073,"children":1074},{"style":129},[1075],{"type":45,"value":242},{"type":40,"tag":116,"props":1077,"children":1078},{"style":129},[1079],{"type":45,"value":410},{"type":40,"tag":116,"props":1081,"children":1082},{"style":150},[1083],{"type":45,"value":153},{"type":40,"tag":116,"props":1085,"children":1086},{"style":129},[1087],{"type":45,"value":1088},"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fdata_sources",{"type":40,"tag":116,"props":1090,"children":1091},{"style":150},[1092],{"type":45,"value":163},{"type":40,"tag":116,"props":1094,"children":1095},{"style":206},[1096],{"type":45,"value":265},{"type":40,"tag":116,"props":1098,"children":1099},{"class":118,"line":140},[1100,1104,1108,1112,1116,1120],{"type":40,"tag":116,"props":1101,"children":1102},{"style":129},[1103],{"type":45,"value":274},{"type":40,"tag":116,"props":1105,"children":1106},{"style":150},[1107],{"type":45,"value":153},{"type":40,"tag":116,"props":1109,"children":1110},{"style":129},[1111],{"type":45,"value":283},{"type":40,"tag":116,"props":1113,"children":1114},{"style":206},[1115],{"type":45,"value":288},{"type":40,"tag":116,"props":1117,"children":1118},{"style":150},[1119],{"type":45,"value":163},{"type":40,"tag":116,"props":1121,"children":1122},{"style":206},[1123],{"type":45,"value":265},{"type":40,"tag":116,"props":1125,"children":1126},{"class":118,"line":268},[1127,1131,1135,1139,1143],{"type":40,"tag":116,"props":1128,"children":1129},{"style":129},[1130],{"type":45,"value":274},{"type":40,"tag":116,"props":1132,"children":1133},{"style":150},[1134],{"type":45,"value":153},{"type":40,"tag":116,"props":1136,"children":1137},{"style":129},[1138],{"type":45,"value":312},{"type":40,"tag":116,"props":1140,"children":1141},{"style":150},[1142],{"type":45,"value":163},{"type":40,"tag":116,"props":1144,"children":1145},{"style":206},[1146],{"type":45,"value":265},{"type":40,"tag":116,"props":1148,"children":1149},{"class":118,"line":176},[1150,1154,1158,1162,1166],{"type":40,"tag":116,"props":1151,"children":1152},{"style":129},[1153],{"type":45,"value":274},{"type":40,"tag":116,"props":1155,"children":1156},{"style":150},[1157],{"type":45,"value":153},{"type":40,"tag":116,"props":1159,"children":1160},{"style":129},[1161],{"type":45,"value":337},{"type":40,"tag":116,"props":1163,"children":1164},{"style":150},[1165],{"type":45,"value":163},{"type":40,"tag":116,"props":1167,"children":1168},{"style":206},[1169],{"type":45,"value":265},{"type":40,"tag":116,"props":1171,"children":1172},{"class":118,"line":323},[1173,1177,1181],{"type":40,"tag":116,"props":1174,"children":1175},{"style":129},[1176],{"type":45,"value":508},{"type":40,"tag":116,"props":1178,"children":1179},{"style":150},[1180],{"type":45,"value":513},{"type":40,"tag":116,"props":1182,"children":1183},{"style":129},[1184],{"type":45,"value":829},{"type":40,"tag":116,"props":1186,"children":1187},{"class":118,"line":832},[1188],{"type":40,"tag":116,"props":1189,"children":1190},{"style":129},[1191],{"type":45,"value":1192},"    \"parent\": {\"page_id\": \"xxx\"},\n",{"type":40,"tag":116,"props":1194,"children":1195},{"class":118,"line":841},[1196],{"type":40,"tag":116,"props":1197,"children":1198},{"style":129},[1199],{"type":45,"value":1200},"    \"title\": [{\"text\": {\"content\": \"My Database\"}}],\n",{"type":40,"tag":116,"props":1202,"children":1203},{"class":118,"line":850},[1204],{"type":40,"tag":116,"props":1205,"children":1206},{"style":129},[1207],{"type":45,"value":847},{"type":40,"tag":116,"props":1209,"children":1210},{"class":118,"line":859},[1211],{"type":40,"tag":116,"props":1212,"children":1213},{"style":129},[1214],{"type":45,"value":1215},"      \"Name\": {\"title\": {}},\n",{"type":40,"tag":116,"props":1217,"children":1218},{"class":118,"line":868},[1219],{"type":40,"tag":116,"props":1220,"children":1221},{"style":129},[1222],{"type":45,"value":1223},"      \"Status\": {\"select\": {\"options\": [{\"name\": \"Todo\"}, {\"name\": \"Done\"}]}},\n",{"type":40,"tag":116,"props":1225,"children":1226},{"class":118,"line":877},[1227],{"type":40,"tag":116,"props":1228,"children":1229},{"style":129},[1230],{"type":45,"value":1231},"      \"Date\": {\"date\": {}}\n",{"type":40,"tag":116,"props":1233,"children":1235},{"class":118,"line":1234},12,[1236],{"type":40,"tag":116,"props":1237,"children":1238},{"style":129},[1239],{"type":45,"value":874},{"type":40,"tag":116,"props":1241,"children":1243},{"class":118,"line":1242},13,[1244,1248],{"type":40,"tag":116,"props":1245,"children":1246},{"style":129},[1247],{"type":45,"value":883},{"type":40,"tag":116,"props":1249,"children":1250},{"style":150},[1251],{"type":45,"value":523},{"type":40,"tag":47,"props":1253,"children":1254},{},[1255],{"type":40,"tag":351,"props":1256,"children":1257},{},[1258],{"type":45,"value":1259},"Update page properties:",{"type":40,"tag":105,"props":1261,"children":1263},{"className":107,"code":1262,"language":109,"meta":110,"style":110},"curl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fpages\u002F{page_id}\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}}}'\n",[1264],{"type":40,"tag":83,"props":1265,"children":1266},{"__ignoreMap":110},[1267,1299,1326,1349,1372],{"type":40,"tag":116,"props":1268,"children":1269},{"class":118,"line":119},[1270,1274,1278,1283,1287,1291,1295],{"type":40,"tag":116,"props":1271,"children":1272},{"style":123},[1273],{"type":45,"value":237},{"type":40,"tag":116,"props":1275,"children":1276},{"style":129},[1277],{"type":45,"value":242},{"type":40,"tag":116,"props":1279,"children":1280},{"style":129},[1281],{"type":45,"value":1282}," PATCH",{"type":40,"tag":116,"props":1284,"children":1285},{"style":150},[1286],{"type":45,"value":153},{"type":40,"tag":116,"props":1288,"children":1289},{"style":129},[1290],{"type":45,"value":554},{"type":40,"tag":116,"props":1292,"children":1293},{"style":150},[1294],{"type":45,"value":163},{"type":40,"tag":116,"props":1296,"children":1297},{"style":206},[1298],{"type":45,"value":265},{"type":40,"tag":116,"props":1300,"children":1301},{"class":118,"line":140},[1302,1306,1310,1314,1318,1322],{"type":40,"tag":116,"props":1303,"children":1304},{"style":129},[1305],{"type":45,"value":274},{"type":40,"tag":116,"props":1307,"children":1308},{"style":150},[1309],{"type":45,"value":153},{"type":40,"tag":116,"props":1311,"children":1312},{"style":129},[1313],{"type":45,"value":283},{"type":40,"tag":116,"props":1315,"children":1316},{"style":206},[1317],{"type":45,"value":288},{"type":40,"tag":116,"props":1319,"children":1320},{"style":150},[1321],{"type":45,"value":163},{"type":40,"tag":116,"props":1323,"children":1324},{"style":206},[1325],{"type":45,"value":265},{"type":40,"tag":116,"props":1327,"children":1328},{"class":118,"line":268},[1329,1333,1337,1341,1345],{"type":40,"tag":116,"props":1330,"children":1331},{"style":129},[1332],{"type":45,"value":274},{"type":40,"tag":116,"props":1334,"children":1335},{"style":150},[1336],{"type":45,"value":153},{"type":40,"tag":116,"props":1338,"children":1339},{"style":129},[1340],{"type":45,"value":312},{"type":40,"tag":116,"props":1342,"children":1343},{"style":150},[1344],{"type":45,"value":163},{"type":40,"tag":116,"props":1346,"children":1347},{"style":206},[1348],{"type":45,"value":265},{"type":40,"tag":116,"props":1350,"children":1351},{"class":118,"line":176},[1352,1356,1360,1364,1368],{"type":40,"tag":116,"props":1353,"children":1354},{"style":129},[1355],{"type":45,"value":274},{"type":40,"tag":116,"props":1357,"children":1358},{"style":150},[1359],{"type":45,"value":153},{"type":40,"tag":116,"props":1361,"children":1362},{"style":129},[1363],{"type":45,"value":337},{"type":40,"tag":116,"props":1365,"children":1366},{"style":150},[1367],{"type":45,"value":163},{"type":40,"tag":116,"props":1369,"children":1370},{"style":206},[1371],{"type":45,"value":265},{"type":40,"tag":116,"props":1373,"children":1374},{"class":118,"line":323},[1375,1379,1383,1388],{"type":40,"tag":116,"props":1376,"children":1377},{"style":129},[1378],{"type":45,"value":508},{"type":40,"tag":116,"props":1380,"children":1381},{"style":150},[1382],{"type":45,"value":513},{"type":40,"tag":116,"props":1384,"children":1385},{"style":129},[1386],{"type":45,"value":1387},"{\"properties\": {\"Status\": {\"select\": {\"name\": \"Done\"}}}}",{"type":40,"tag":116,"props":1389,"children":1390},{"style":150},[1391],{"type":45,"value":523},{"type":40,"tag":47,"props":1393,"children":1394},{},[1395],{"type":40,"tag":351,"props":1396,"children":1397},{},[1398],{"type":45,"value":1399},"Add blocks to page:",{"type":40,"tag":105,"props":1401,"children":1403},{"className":107,"code":1402,"language":109,"meta":110,"style":110},"curl -X PATCH \"https:\u002F\u002Fapi.notion.com\u002Fv1\u002Fblocks\u002F{page_id}\u002Fchildren\" \\\n  -H \"Authorization: Bearer $NOTION_KEY\" \\\n  -H \"Notion-Version: 2025-09-03\" \\\n  -H \"Content-Type: application\u002Fjson\" \\\n  -d '{\n    \"children\": [\n      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n    ]\n  }'\n",[1404],{"type":40,"tag":83,"props":1405,"children":1406},{"__ignoreMap":110},[1407,1438,1465,1488,1511,1526,1534,1542,1550],{"type":40,"tag":116,"props":1408,"children":1409},{"class":118,"line":119},[1410,1414,1418,1422,1426,1430,1434],{"type":40,"tag":116,"props":1411,"children":1412},{"style":123},[1413],{"type":45,"value":237},{"type":40,"tag":116,"props":1415,"children":1416},{"style":129},[1417],{"type":45,"value":242},{"type":40,"tag":116,"props":1419,"children":1420},{"style":129},[1421],{"type":45,"value":1282},{"type":40,"tag":116,"props":1423,"children":1424},{"style":150},[1425],{"type":45,"value":153},{"type":40,"tag":116,"props":1427,"children":1428},{"style":129},[1429],{"type":45,"value":639},{"type":40,"tag":116,"props":1431,"children":1432},{"style":150},[1433],{"type":45,"value":163},{"type":40,"tag":116,"props":1435,"children":1436},{"style":206},[1437],{"type":45,"value":265},{"type":40,"tag":116,"props":1439,"children":1440},{"class":118,"line":140},[1441,1445,1449,1453,1457,1461],{"type":40,"tag":116,"props":1442,"children":1443},{"style":129},[1444],{"type":45,"value":274},{"type":40,"tag":116,"props":1446,"children":1447},{"style":150},[1448],{"type":45,"value":153},{"type":40,"tag":116,"props":1450,"children":1451},{"style":129},[1452],{"type":45,"value":283},{"type":40,"tag":116,"props":1454,"children":1455},{"style":206},[1456],{"type":45,"value":288},{"type":40,"tag":116,"props":1458,"children":1459},{"style":150},[1460],{"type":45,"value":163},{"type":40,"tag":116,"props":1462,"children":1463},{"style":206},[1464],{"type":45,"value":265},{"type":40,"tag":116,"props":1466,"children":1467},{"class":118,"line":268},[1468,1472,1476,1480,1484],{"type":40,"tag":116,"props":1469,"children":1470},{"style":129},[1471],{"type":45,"value":274},{"type":40,"tag":116,"props":1473,"children":1474},{"style":150},[1475],{"type":45,"value":153},{"type":40,"tag":116,"props":1477,"children":1478},{"style":129},[1479],{"type":45,"value":312},{"type":40,"tag":116,"props":1481,"children":1482},{"style":150},[1483],{"type":45,"value":163},{"type":40,"tag":116,"props":1485,"children":1486},{"style":206},[1487],{"type":45,"value":265},{"type":40,"tag":116,"props":1489,"children":1490},{"class":118,"line":176},[1491,1495,1499,1503,1507],{"type":40,"tag":116,"props":1492,"children":1493},{"style":129},[1494],{"type":45,"value":274},{"type":40,"tag":116,"props":1496,"children":1497},{"style":150},[1498],{"type":45,"value":153},{"type":40,"tag":116,"props":1500,"children":1501},{"style":129},[1502],{"type":45,"value":337},{"type":40,"tag":116,"props":1504,"children":1505},{"style":150},[1506],{"type":45,"value":163},{"type":40,"tag":116,"props":1508,"children":1509},{"style":206},[1510],{"type":45,"value":265},{"type":40,"tag":116,"props":1512,"children":1513},{"class":118,"line":323},[1514,1518,1522],{"type":40,"tag":116,"props":1515,"children":1516},{"style":129},[1517],{"type":45,"value":508},{"type":40,"tag":116,"props":1519,"children":1520},{"style":150},[1521],{"type":45,"value":513},{"type":40,"tag":116,"props":1523,"children":1524},{"style":129},[1525],{"type":45,"value":829},{"type":40,"tag":116,"props":1527,"children":1528},{"class":118,"line":832},[1529],{"type":40,"tag":116,"props":1530,"children":1531},{"style":129},[1532],{"type":45,"value":1533},"    \"children\": [\n",{"type":40,"tag":116,"props":1535,"children":1536},{"class":118,"line":841},[1537],{"type":40,"tag":116,"props":1538,"children":1539},{"style":129},[1540],{"type":45,"value":1541},"      {\"object\": \"block\", \"type\": \"paragraph\", \"paragraph\": {\"rich_text\": [{\"text\": {\"content\": \"Hello\"}}]}}\n",{"type":40,"tag":116,"props":1543,"children":1544},{"class":118,"line":850},[1545],{"type":40,"tag":116,"props":1546,"children":1547},{"style":129},[1548],{"type":45,"value":1549},"    ]\n",{"type":40,"tag":116,"props":1551,"children":1552},{"class":118,"line":859},[1553,1557],{"type":40,"tag":116,"props":1554,"children":1555},{"style":129},[1556],{"type":45,"value":883},{"type":40,"tag":116,"props":1558,"children":1559},{"style":150},[1560],{"type":45,"value":523},{"type":40,"tag":53,"props":1562,"children":1564},{"id":1563},"property-types",[1565],{"type":45,"value":1566},"Property Types",{"type":40,"tag":47,"props":1568,"children":1569},{},[1570],{"type":45,"value":1571},"Common property formats for database items:",{"type":40,"tag":1573,"props":1574,"children":1575},"ul",{},[1576,1592,1607,1622,1637,1652,1667,1682,1697,1712],{"type":40,"tag":64,"props":1577,"children":1578},{},[1579,1584,1586],{"type":40,"tag":351,"props":1580,"children":1581},{},[1582],{"type":45,"value":1583},"Title:",{"type":45,"value":1585}," ",{"type":40,"tag":83,"props":1587,"children":1589},{"className":1588},[],[1590],{"type":45,"value":1591},"{\"title\": [{\"text\": {\"content\": \"...\"}}]}",{"type":40,"tag":64,"props":1593,"children":1594},{},[1595,1600,1601],{"type":40,"tag":351,"props":1596,"children":1597},{},[1598],{"type":45,"value":1599},"Rich text:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1602,"children":1604},{"className":1603},[],[1605],{"type":45,"value":1606},"{\"rich_text\": [{\"text\": {\"content\": \"...\"}}]}",{"type":40,"tag":64,"props":1608,"children":1609},{},[1610,1615,1616],{"type":40,"tag":351,"props":1611,"children":1612},{},[1613],{"type":45,"value":1614},"Select:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1617,"children":1619},{"className":1618},[],[1620],{"type":45,"value":1621},"{\"select\": {\"name\": \"Option\"}}",{"type":40,"tag":64,"props":1623,"children":1624},{},[1625,1630,1631],{"type":40,"tag":351,"props":1626,"children":1627},{},[1628],{"type":45,"value":1629},"Multi-select:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1632,"children":1634},{"className":1633},[],[1635],{"type":45,"value":1636},"{\"multi_select\": [{\"name\": \"A\"}, {\"name\": \"B\"}]}",{"type":40,"tag":64,"props":1638,"children":1639},{},[1640,1645,1646],{"type":40,"tag":351,"props":1641,"children":1642},{},[1643],{"type":45,"value":1644},"Date:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1647,"children":1649},{"className":1648},[],[1650],{"type":45,"value":1651},"{\"date\": {\"start\": \"2024-01-15\", \"end\": \"2024-01-16\"}}",{"type":40,"tag":64,"props":1653,"children":1654},{},[1655,1660,1661],{"type":40,"tag":351,"props":1656,"children":1657},{},[1658],{"type":45,"value":1659},"Checkbox:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1662,"children":1664},{"className":1663},[],[1665],{"type":45,"value":1666},"{\"checkbox\": true}",{"type":40,"tag":64,"props":1668,"children":1669},{},[1670,1675,1676],{"type":40,"tag":351,"props":1671,"children":1672},{},[1673],{"type":45,"value":1674},"Number:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1677,"children":1679},{"className":1678},[],[1680],{"type":45,"value":1681},"{\"number\": 42}",{"type":40,"tag":64,"props":1683,"children":1684},{},[1685,1690,1691],{"type":40,"tag":351,"props":1686,"children":1687},{},[1688],{"type":45,"value":1689},"URL:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1692,"children":1694},{"className":1693},[],[1695],{"type":45,"value":1696},"{\"url\": \"https:\u002F\u002F...\"}",{"type":40,"tag":64,"props":1698,"children":1699},{},[1700,1705,1706],{"type":40,"tag":351,"props":1701,"children":1702},{},[1703],{"type":45,"value":1704},"Email:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1707,"children":1709},{"className":1708},[],[1710],{"type":45,"value":1711},"{\"email\": \"a@b.com\"}",{"type":40,"tag":64,"props":1713,"children":1714},{},[1715,1720,1721],{"type":40,"tag":351,"props":1716,"children":1717},{},[1718],{"type":45,"value":1719},"Relation:",{"type":45,"value":1585},{"type":40,"tag":83,"props":1722,"children":1724},{"className":1723},[],[1725],{"type":45,"value":1726},"{\"relation\": [{\"id\": \"page_id\"}]}",{"type":40,"tag":53,"props":1728,"children":1730},{"id":1729},"key-differences-in-2025-09-03",[1731],{"type":45,"value":1732},"Key Differences in 2025-09-03",{"type":40,"tag":1573,"props":1734,"children":1735},{},[1736,1754,1818,1841,1865],{"type":40,"tag":64,"props":1737,"children":1738},{},[1739,1744,1746,1752],{"type":40,"tag":351,"props":1740,"children":1741},{},[1742],{"type":45,"value":1743},"Databases → Data Sources:",{"type":45,"value":1745}," Use ",{"type":40,"tag":83,"props":1747,"children":1749},{"className":1748},[],[1750],{"type":45,"value":1751},"\u002Fdata_sources\u002F",{"type":45,"value":1753}," endpoints for queries and retrieval",{"type":40,"tag":64,"props":1755,"children":1756},{},[1757,1762,1764,1770,1772,1778],{"type":40,"tag":351,"props":1758,"children":1759},{},[1760],{"type":45,"value":1761},"Two IDs:",{"type":45,"value":1763}," Each database now has both a ",{"type":40,"tag":83,"props":1765,"children":1767},{"className":1766},[],[1768],{"type":45,"value":1769},"database_id",{"type":45,"value":1771}," and a ",{"type":40,"tag":83,"props":1773,"children":1775},{"className":1774},[],[1776],{"type":45,"value":1777},"data_source_id",{"type":40,"tag":1573,"props":1779,"children":1780},{},[1781,1800],{"type":40,"tag":64,"props":1782,"children":1783},{},[1784,1786,1791,1793,1799],{"type":45,"value":1785},"Use ",{"type":40,"tag":83,"props":1787,"children":1789},{"className":1788},[],[1790],{"type":45,"value":1769},{"type":45,"value":1792}," when creating pages (",{"type":40,"tag":83,"props":1794,"children":1796},{"className":1795},[],[1797],{"type":45,"value":1798},"parent: {\"database_id\": \"...\"}",{"type":45,"value":98},{"type":40,"tag":64,"props":1801,"children":1802},{},[1803,1804,1809,1811,1817],{"type":45,"value":1785},{"type":40,"tag":83,"props":1805,"children":1807},{"className":1806},[],[1808],{"type":45,"value":1777},{"type":45,"value":1810}," when querying (",{"type":40,"tag":83,"props":1812,"children":1814},{"className":1813},[],[1815],{"type":45,"value":1816},"POST \u002Fv1\u002Fdata_sources\u002F{id}\u002Fquery",{"type":45,"value":98},{"type":40,"tag":64,"props":1819,"children":1820},{},[1821,1826,1828,1834,1836],{"type":40,"tag":351,"props":1822,"children":1823},{},[1824],{"type":45,"value":1825},"Search results:",{"type":45,"value":1827}," Databases return as ",{"type":40,"tag":83,"props":1829,"children":1831},{"className":1830},[],[1832],{"type":45,"value":1833},"\"object\": \"data_source\"",{"type":45,"value":1835}," with their ",{"type":40,"tag":83,"props":1837,"children":1839},{"className":1838},[],[1840],{"type":45,"value":1777},{"type":40,"tag":64,"props":1842,"children":1843},{},[1844,1849,1851,1857,1859],{"type":40,"tag":351,"props":1845,"children":1846},{},[1847],{"type":45,"value":1848},"Parent in responses:",{"type":45,"value":1850}," Pages show ",{"type":40,"tag":83,"props":1852,"children":1854},{"className":1853},[],[1855],{"type":45,"value":1856},"parent.data_source_id",{"type":45,"value":1858}," alongside ",{"type":40,"tag":83,"props":1860,"children":1862},{"className":1861},[],[1863],{"type":45,"value":1864},"parent.database_id",{"type":40,"tag":64,"props":1866,"children":1867},{},[1868,1873,1875],{"type":40,"tag":351,"props":1869,"children":1870},{},[1871],{"type":45,"value":1872},"Finding the data_source_id:",{"type":45,"value":1874}," Search for the database, or call ",{"type":40,"tag":83,"props":1876,"children":1878},{"className":1877},[],[1879],{"type":45,"value":1880},"GET \u002Fv1\u002Fdata_sources\u002F{data_source_id}",{"type":40,"tag":53,"props":1882,"children":1884},{"id":1883},"notes",[1885],{"type":45,"value":1886},"Notes",{"type":40,"tag":1573,"props":1888,"children":1889},{},[1890,1895,1900,1919,1924,1929],{"type":40,"tag":64,"props":1891,"children":1892},{},[1893],{"type":45,"value":1894},"Page\u002Fdatabase IDs are UUIDs (with or without dashes)",{"type":40,"tag":64,"props":1896,"children":1897},{},[1898],{"type":45,"value":1899},"The API cannot set database view filters — that's UI-only",{"type":40,"tag":64,"props":1901,"children":1902},{},[1903,1905,1911,1913],{"type":45,"value":1904},"Rate limit: ~3 requests\u002Fsecond average, with ",{"type":40,"tag":83,"props":1906,"children":1908},{"className":1907},[],[1909],{"type":45,"value":1910},"429 rate_limited",{"type":45,"value":1912}," responses using ",{"type":40,"tag":83,"props":1914,"children":1916},{"className":1915},[],[1917],{"type":45,"value":1918},"Retry-After",{"type":40,"tag":64,"props":1920,"children":1921},{},[1922],{"type":45,"value":1923},"Append block children: up to 100 children per request, up to two levels of nesting in a single append request",{"type":40,"tag":64,"props":1925,"children":1926},{},[1927],{"type":45,"value":1928},"Payload size limits: up to 1000 block elements and 500KB overall",{"type":40,"tag":64,"props":1930,"children":1931},{},[1932,1933,1939],{"type":45,"value":1785},{"type":40,"tag":83,"props":1934,"children":1936},{"className":1935},[],[1937],{"type":45,"value":1938},"is_inline: true",{"type":45,"value":1940}," when creating data sources to embed them in pages",{"type":40,"tag":1942,"props":1943,"children":1944},"style",{},[1945],{"type":45,"value":1946},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1948,"total":2109},[1949,1967,1982,1994,2006,2020,2032,2043,2055,2071,2082,2094],{"slug":1950,"name":1950,"fn":1951,"description":1952,"org":1953,"tags":1954,"stars":1964,"repoUrl":1965,"updatedAt":1966},"acquiring-skills","discover and install agent skills","Discover and install skills from Hermes, ClawHub, GitHub, and other registries. Load this skill whenever a user asks for a capability you don't already have — image generation, social media, email, calendar, finance, DevOps, search, browser automation, etc.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1955,1958,1961],{"name":1956,"slug":1957,"type":15},"Agents","agents",{"name":1959,"slug":1960,"type":15},"Automation","automation",{"name":1962,"slug":1963,"type":15},"GitHub","github",2831,"https:\u002F\u002Fgithub.com\u002Fletta-ai\u002Fletta-code","2026-07-13T06:22:58.45767",{"slug":1968,"name":1969,"fn":1970,"description":1971,"org":1972,"tags":1973,"stars":1964,"repoUrl":1965,"updatedAt":1981},"context-doctor","Context Doctor","repair system prompt and memory degradation","Identify and repair degradation in system prompt, external memory, and skills preventing you from following instructions or remembering information as well as you should.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1974,1975,1978],{"name":1956,"slug":1957,"type":15},{"name":1976,"slug":1977,"type":15},"AI Context","ai-context",{"name":1979,"slug":1980,"type":15},"Debugging","debugging","2026-07-13T06:22:50.151002",{"slug":1983,"name":1983,"fn":1984,"description":1985,"org":1986,"tags":1987,"stars":1964,"repoUrl":1965,"updatedAt":1993},"converting-mcps-to-skills","connect MCP servers to create skills","Connect to MCP (Model Context Protocol) servers and create skills for repeated use. Load when a user wants to use an MCP server, connect to external tools via MCP, or when they mention MCP, model context protocol, or specific MCP servers.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1988,1989,1990],{"name":1956,"slug":1957,"type":15},{"name":1959,"slug":1960,"type":15},{"name":1991,"slug":1992,"type":15},"MCP","mcp","2026-07-13T06:23:37.646079",{"slug":1995,"name":1995,"fn":1996,"description":1997,"org":1998,"tags":1999,"stars":1964,"repoUrl":1965,"updatedAt":2005},"creating-mods","create and edit Letta Code mods","Creates and edits trusted local Letta Code mods, including tools, slash commands, local-only model providers, lifecycle\u002Fturn events, scoped conversation helpers, panels, and capability-gated behavior. Use when asked to make a mod, add an agent-callable tool, add a slash command, add a local provider\u002Fmodel adapter, transform turns, react to app events, or add lightweight mod UI outside the dedicated \u002Fstatusline flow.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2000,2001,2002],{"name":1956,"slug":1957,"type":15},{"name":1959,"slug":1960,"type":15},{"name":2003,"slug":2004,"type":15},"Coding","coding","2026-07-23T05:42:38.133565",{"slug":2007,"name":2007,"fn":2008,"description":2009,"org":2010,"tags":2011,"stars":1964,"repoUrl":1965,"updatedAt":2019},"creating-skills","create and update agent skills","Guide for creating effective skills. This skill should be used when users want to create a new skill (or update an existing skill) that extends Letta Code's capabilities with specialized knowledge, workflows, or tool integrations.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2012,2013,2016],{"name":1956,"slug":1957,"type":15},{"name":2014,"slug":2015,"type":15},"Documentation","documentation",{"name":2017,"slug":2018,"type":15},"Plugin Development","plugin-development","2026-07-13T06:22:56.998659",{"slug":2021,"name":2021,"fn":2022,"description":2023,"org":2024,"tags":2025,"stars":1964,"repoUrl":1965,"updatedAt":2031},"customizing-commands","create and manage Letta slash commands","Creates, edits, and enables Letta Code mod-provided slash commands. Use when the user asks to add a custom \u002Fcommand, slash command, command shortcut, scoped conversation-backed command, or command-driven panel behavior.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2026,2027,2028],{"name":1956,"slug":1957,"type":15},{"name":1959,"slug":1960,"type":15},{"name":2029,"slug":2030,"type":15},"CLI","cli","2026-07-13T06:23:18.266798",{"slug":2033,"name":2033,"fn":2034,"description":2035,"org":2036,"tags":2037,"stars":1964,"repoUrl":1965,"updatedAt":2042},"customizing-statusline","customize Letta Code statusline mods","Creates, edits, and migrates Letta Code statusline mods. Use when handling the \u002Fstatusline command or continuing work started by \u002Fstatusline.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2038,2039],{"name":2029,"slug":2030,"type":15},{"name":2040,"slug":2041,"type":15},"Engineering","engineering","2026-07-13T06:23:27.465985",{"slug":2044,"name":2044,"fn":2045,"description":2046,"org":2047,"tags":2048,"stars":1964,"repoUrl":1965,"updatedAt":2054},"dispatching-coding-agents","dispatch stateless coding agents","Dispatch stateless coding agents (Claude Code or Codex) via Bash. Use when you're stuck, need a second opinion, or need parallel research on a hard problem. They have no memory — you must provide all context.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2049,2050,2051],{"name":1956,"slug":1957,"type":15},{"name":2003,"slug":2004,"type":15},{"name":2052,"slug":2053,"type":15},"Multi-Agent","multi-agent","2026-07-26T05:46:56.388845",{"slug":2056,"name":2056,"fn":2057,"description":2058,"org":2059,"tags":2060,"stars":1964,"repoUrl":1965,"updatedAt":2070},"editing-letta-code-desktop-preferences","edit Letta Code Desktop preferences","Edits Letta Code Desktop (LCD) preferences by safely reading and updating ~\u002F.letta\u002Fdesktop_preferences.json. Use only when the user asks to change current Desktop\u002FLCD settings such as theme, default working directory, remote access preference, or remote environment name via the preferences JSON.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2061,2064,2067],{"name":2062,"slug":2063,"type":15},"Configuration","configuration",{"name":2065,"slug":2066,"type":15},"Desktop","desktop",{"name":2068,"slug":2069,"type":15},"Themes","themes","2026-07-13T06:23:41.407811",{"slug":2072,"name":2072,"fn":2073,"description":2074,"org":2075,"tags":2076,"stars":1964,"repoUrl":1965,"updatedAt":2081},"finding-agents","locate and manage agents on server","Find other agents on the same server. Use when the user asks about other agents, wants to migrate memory from another agent, or needs to find an agent by name or tags.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2077,2078],{"name":1956,"slug":1957,"type":15},{"name":2079,"slug":2080,"type":15},"Management","management","2026-07-16T06:02:17.297841",{"slug":2083,"name":2083,"fn":2084,"description":2085,"org":2086,"tags":2087,"stars":1964,"repoUrl":1965,"updatedAt":2093},"generating-mod-envs","generate Letta mod learning environments","Generates and reviews mod learning env JSON files for Letta Code local mods. Use when asked to teach, learn, or optimize a mod behavior; create, draft, validate, improve, or explain envs for `\u002Fmods learn --env`; or design evaluation scenarios, memory fixtures, requiredResultMarkers, requiredTraceMarkers, negative controls, and candidate diversity hints.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2088,2089,2092],{"name":1956,"slug":1957,"type":15},{"name":2090,"slug":2091,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2062,"slug":2063,"type":15},"2026-07-13T06:23:08.838181",{"slug":2095,"name":2095,"fn":2096,"description":2097,"org":2098,"tags":2099,"stars":1964,"repoUrl":1965,"updatedAt":2108},"image-generation","generate images from text prompts","Generate images from text prompts (and optionally edit\u002Fremix input images). Use when the user asks to create, generate, draw, render, or edit an image, illustration, logo, icon, diagram, or photo.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2100,2103,2106],{"name":2101,"slug":2102,"type":15},"Creative","creative",{"name":2104,"slug":2105,"type":15},"Graphics","graphics",{"name":2107,"slug":2095,"type":15},"Image Generation","2026-07-13T06:23:06.189403",69,{"items":2111,"total":2221},[2112,2126,2141,2160,2171,2192,2202],{"slug":2113,"name":2113,"fn":2114,"description":2115,"org":2116,"tags":2117,"stars":22,"repoUrl":23,"updatedAt":2125},"1password","manage secrets with 1Password CLI","Set up and use 1Password CLI (op). Use when installing the CLI, enabling desktop app integration, signing in (single or multi-account), or reading\u002Finjecting\u002Frunning secrets via op.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2118,2121,2122],{"name":2119,"slug":2120,"type":15},"Authentication","authentication",{"name":2029,"slug":2030,"type":15},{"name":2123,"slug":2124,"type":15},"Security","security","2026-07-13T06:24:39.504387",{"slug":2127,"name":2127,"fn":2128,"description":2129,"org":2130,"tags":2131,"stars":22,"repoUrl":23,"updatedAt":2140},"agent-slack","automate Slack messaging and workflows","Slack automation CLI — read\u002Fsend\u002Fsearch messages, browse threads and channels, manage channels, download attachments, look up users, and run workflows.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2132,2133,2134,2137],{"name":1959,"slug":1960,"type":15},{"name":2029,"slug":2030,"type":15},{"name":2135,"slug":2136,"type":15},"Messaging","messaging",{"name":2138,"slug":2139,"type":15},"Slack","slack","2026-07-13T06:23:51.908511",{"slug":2142,"name":2142,"fn":2143,"description":2144,"org":2145,"tags":2146,"stars":22,"repoUrl":23,"updatedAt":2159},"ai-news","fetch and summarize AI news","Fetch and summarize recent AI news from curated RSS feeds (Hugging Face, VentureBeat, The Verge, OpenAI, Anthropic, DeepMind, etc.) and YouTube channels (Yannic Kilcher, Two Minute Papers, AI Explained, etc.). Also fetches full transcripts for specific YouTube videos. Use when the user asks about recent AI news, what's happened in AI lately, summaries of AI research or product announcements, or wants a digest of what's going on in the AI space.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2147,2150,2153,2156],{"name":2148,"slug":2149,"type":15},"Communications","communications",{"name":2151,"slug":2152,"type":15},"LLM","llm",{"name":2154,"slug":2155,"type":15},"Research","research",{"name":2157,"slug":2158,"type":15},"Summarization","summarization","2026-07-13T06:24:20.520223",{"slug":2161,"name":2161,"fn":2162,"description":2163,"org":2164,"tags":2165,"stars":22,"repoUrl":23,"updatedAt":2170},"creating-letta-code-channels","build and debug Letta Code channels","Builds and debugs Letta Code channels, including first-party channel adapters and dynamic user channel plugins under ~\u002F.letta\u002Fchannels. Use when adding Telegram, WhatsApp, Bluesky, Slack, Discord, or custom channel support; testing channel routing, pairing, MessageChannel, runtime dependencies, or channel plugin manifests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2166,2167,2168,2169],{"name":1956,"slug":1957,"type":15},{"name":20,"slug":21,"type":15},{"name":2135,"slug":2136,"type":15},{"name":2138,"slug":2139,"type":15},"2026-07-13T06:25:55.843495",{"slug":2172,"name":2172,"fn":2173,"description":2174,"org":2175,"tags":2176,"stars":22,"repoUrl":23,"updatedAt":2191},"datadog","query Datadog observability data","Query Datadog observability data (logs, metrics, monitors, dashboards, hosts) via direct API. Use when investigating production issues, checking monitors, searching logs, or accessing Datadog data.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2177,2179,2182,2185,2188],{"name":2178,"slug":2172,"type":15},"Datadog",{"name":2180,"slug":2181,"type":15},"Logs","logs",{"name":2183,"slug":2184,"type":15},"Metrics","metrics",{"name":2186,"slug":2187,"type":15},"Monitoring","monitoring",{"name":2189,"slug":2190,"type":15},"Observability","observability","2026-07-13T06:24:27.990605",{"slug":2193,"name":2193,"fn":2194,"description":2195,"org":2196,"tags":2197,"stars":22,"repoUrl":23,"updatedAt":2201},"discord","automate Discord server and channel tasks","Discord automation CLI — send\u002Fread\u002Fsearch messages, manage channels and servers, react, create threads, pin messages, and look up users.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2198,2199,2200],{"name":1959,"slug":1960,"type":15},{"name":2029,"slug":2030,"type":15},{"name":2135,"slug":2136,"type":15},"2026-07-13T06:24:26.62387",{"slug":2203,"name":2203,"fn":2204,"description":2205,"org":2206,"tags":2207,"stars":22,"repoUrl":23,"updatedAt":2220},"doc","create and edit Word documents","Use when the task involves reading, creating, or editing `.docx` documents, especially when formatting or layout fidelity matters; prefer `python-docx` plus the bundled `scripts\u002Frender_docx.py` for visual checks.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[2208,2211,2214,2217],{"name":2209,"slug":2210,"type":15},"Documents","documents",{"name":2212,"slug":2213,"type":15},"DOCX","docx",{"name":2215,"slug":2216,"type":15},"Office","office",{"name":2218,"slug":2219,"type":15},"Word","word","2026-07-13T06:23:44.299568",45]