What problem does it solve?
This Skill solves the problem of discovering and managing Knowns documentation by providing a unified CLI to view, search, create, and update docs.
Core Features & Use Cases
- View and search docs across the Knowns workspace.
- Create docs with required metadata (title, description, tags) and organize in folders.
- Update content and metadata for existing docs.
- Use case: quickly locate a pattern doc and update its description to reflect new guidance.
Quick Start
Use the kn-doc skill to list docs with mcp__knowns__list_docs({})
View a doc in smart mode with mcp__knowns__get_doc({ "path": "<path>", "smart": true })
Search docs with mcp__knowns__search_docs({ "query": "<query>" })
Create a doc with mcp__knowns__create_doc({ "title": "<title>", "description": "<brief description>", "tags": ["tag1","tag2"], "folder": "guides" })
Update content with mcp__knowns__update_doc({ "path": "<path>", "content": "new content" })
Update metadata with mcp__knowns__update_doc({ "path": "<path>", "title": "New Title", "description": "Updated description", "tags": ["new","tags"] })
Validate after changes with mcp__knowns__validate({ "scope": "docs" })