/SKILL.md
Use when the user wants to create, organize, search, move, archive, or append Notion pages, including beautified documents created from Markdown or structured JSON under planned nested page paths.
npx skillsauth add 75002425/notion-helper notion-helperInstall 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.
Secure Notion integration tool with zero external dependencies (pure Node.js built-in modules) for reliable Notion workspace management.
Recommended global install:
npx skills add 75002425/notion-helper -g
Re-run the same command to upgrade notion-helper. skills will detect the existing installation and update it to the latest version.
IMPORTANT: This section defines how AI agents should use this skill. Prefer the built-in scripts over custom Notion code.
All scripts are located in this skill's scripts/ directory. Run them with node from that directory.
create_structured_* scripts.The design layer supports these document types:
noteresearchmeeting-notesdecision-logweekly-reportknowledge-cardplanreportAliases such as meeting, decision, weekly_report, and knowledge_card are also accepted.
The Markdown create scripts accept optional flags after the required positional arguments:
--type
--summary
--status
--owner
--updated-at
--tags
--icon
--cover
Example:
node scripts/create_note_from_file.js "Weekly Memory Review" "/absolute/path/to/review.md" --type weekly-report --tags memory,openclaw --owner Codex --updated-at 2026-03-11
node scripts/inspect_tree.js --max-depth 3 --keyword "memory"
node scripts/ensure_path.js "Research/OpenClaw"
node scripts/create_note.js "title" "markdown content" --type note
node scripts/create_note_from_file.js "title" "/absolute/path/to/file.md" --type research
---
doc_type: weekly-report
summary: Durable memory work progressed this week.
status: Draft
owner: Codex
updated_at: 2026-03-11
tags: memory, openclaw
---
node scripts/create_note_in_path.js "Research/OpenClaw" "title" "markdown content" --type note
node scripts/create_note_from_file_in_path.js "Research/OpenClaw" "title" "/absolute/path/to/file.md" --type decision-log
node scripts/create_structured_note_from_file.js "/absolute/path/to/spec.json"
node scripts/create_structured_note_from_file_in_path.js "Research/OpenClaw" "/absolute/path/to/spec.json"
titledoc_typeiconcoversummarystatusownerupdated_attagskey_findingsdecisionopen_questionssectionsrisksnext_actionsreferencesappendixnode scripts/search.js "keyword"
node scripts/append.js "page-id-or-title" "markdown content"
node scripts/move_page.js "page-id-or-title" "Research/OpenClaw"
node scripts/delete_page.js "page-id-or-title"
Research/OpenClaw plus a descriptive page title over Research/Memory/OpenClaw/Skill Survey.inspect_tree.js if the target path is not already obvious.create_note_from_file_in_path.js with --type.create_structured_note_from_file.js or create_structured_note_from_file_in_path.js.notion_api.js directly for ordinary use.OK on success. Check for that in the command output.ntn_)Windows (PowerShell):
[System.Environment]::SetEnvironmentVariable('NOTION_API_KEY', 'your_api_key', 'User')
Linux / Mac:
echo 'export NOTION_API_KEY="your_api_key"' >> ~/.bashrc
source ~/.bashrc
On the Notion page: click ... -> Add connections -> select your integration -> confirm.
Only authorized pages and their sub-pages can be accessed by the API.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------
tools
A CLI tool for making authenticated requests to the X (Twitter) API. Use this skill when you need to post tweets, reply, quote, search, read posts, manage followers, send DMs, upload media, or interact with any X API v2 endpoint.