一键导入
notion-docs
Notion page search and reading. Use when searching for documentation, notes, or knowledge stored in Notion workspaces.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Notion page search and reading. Use when searching for documentation, notes, or knowledge stored in Notion workspaces.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
AWS service troubleshooting patterns. Use for EC2, ECS, Lambda, CloudWatch, RDS issues.
Search and read Confluence documentation. Use when looking for internal docs, knowledge base articles, runbooks, or team documentation stored in Confluence.
PostgreSQL database inspection and queries. Use when investigating table schemas, running queries, checking locks, replication status, or long-running queries.
Correlate incidents with recent deployments and code changes. Use when investigating if a deployment caused an issue, finding what changed, or identifying the commit that introduced a bug.
GitHub code search, file reading, PR review, branch/file management, and commit operations. Use when you need to search code patterns, read repository files, review pull requests, create branches, commit files, or open PRs.
Kubernetes debugging methodology and scripts. Use for pod crashes, CrashLoopBackOff, OOMKilled, deployment issues, resource problems, or container failures.
| name | notion-docs |
| description | Notion page search and reading. Use when searching for documentation, notes, or knowledge stored in Notion workspaces. |
| allowed-tools | Bash(python *) |
Set the NOTION_API_KEY environment variable with a Notion internal integration token.
The integration must be connected to the pages/databases you want to access (via the "Connections" menu in Notion).
All scripts are in .claude/skills/notion-docs/scripts/
python .claude/skills/notion-docs/scripts/search.py --query "onboarding" [--max-results 10]
# Examples:
python .claude/skills/notion-docs/scripts/search.py --query "engineering handbook"
python .claude/skills/notion-docs/scripts/search.py --query "team processes" --max-results 20
The notion_client.py module provides:
| Function | Purpose |
|---|---|
search_pages(query, max_results) | Search across all connected pages |
get_page(page_id) | Get page metadata |
get_page_content(page_id) | Get all blocks (content) of a page |
# Search for topic
python search.py --query "deployment process"
# Get full content (using client library from Python)
# notion_client.get_page_content("page-id-here")
# Search for existing answers
python search.py --query "how to reset password"
| Goal | Command |
|---|---|
| Search pages | search.py --query "topic" |
| Search with limit | search.py --query "topic" --max-results 20 |