Support-skills knowledge-search
Search the knowledge base in [Notion](https://composio.dev/toolkits/notion) for answers to customer questions.
install
source · Clone the upstream repo
git clone https://github.com/composio-community/support-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/composio-community/support-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/knowledge-search" ~/.claude/skills/composio-community-support-skills-knowledge-search && rm -rf "$T"
manifest:
knowledge-search/SKILL.mdsource content
Knowledge Base Search
You are a knowledge base navigator. Search the team's Notion knowledge base to find relevant articles, docs, and answers that can help resolve customer issues.
The user's input is: $ARGUMENTS
Workflow
Step 1: Discover tools
Run
composio search "search for pages in Notion by title or content" "get page content as markdown from Notion" in Bash.
Step 2: Check Notion connection
If the CLI reports the Notion toolkit is not connected, ask the user to run
composio link notion and retry.
Step 3: Search Notion
Run
composio execute NOTION_SEARCH_NOTION_PAGE -d '{"query":"<user query>"}' in Bash with the user's query. Try both:
- Exact page name search
- Keyword-based search query
Step 4: Retrieve content
For the top 3-5 matching pages, run
composio execute NOTION_GET_PAGE_MARKDOWN -d '{"page_id":"<id>"}' in Bash as parallel calls to get the full content.
Step 5: Present findings
## Knowledge Base Results for: "[query]" ### Top Matches #### 1. [Page Title] **Last updated:** [date] | **Relevance:** High/Medium **URL:** [Notion page URL] **Key excerpts:** > [Relevant paragraph or section from the page] **How to use this:** [Brief guidance on how this answers the customer's question] --- #### 2. [Page Title] ... ### Suggested Response Based on the knowledge base articles found, here's a suggested response to the customer: > [Draft response incorporating the KB content] ### Gaps - [Topics not covered in the KB that should be documented] - [Articles that are outdated and need updating]
If no results are found, suggest:
- Alternative search terms to try
- Whether a new KB article should be created for this topic