ワンクリックで
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 |