From sharepoint
Resolve the right SharePoint site, library, and folder before file work. Use when the user needs to find the right site context, browse a known site, inspect document libraries, or narrow the correct folder before fetching or editing a file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sharepoint:sharepoint-site-discoveryThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the main job is locating the right SharePoint site, drive, or folder before file analysis or editing.
Use this skill when the main job is locating the right SharePoint site, drive, or folder before file analysis or editing.
search(query="...") for keyword search.search(query=None, hostname=..., site_path=..., folder_path=...) for browse mode.get_site(...) and list_site_drives(...) when the user knows the site but not the right library.get_site(...).list_site_drives(...) to inspect the site-scoped document libraries.search(query=None, hostname=..., site_path=..., folder_path=...) and inspect the immediate children.search(query="..."), then narrow with hostname, site_path, or folder_path when the scope is known.url, site, drive, and folder context so later fetch, update_file, or upload_file calls use the resolved destination instead of a guessed path.url or the exact site and folder context that should be reused.npx claudepluginhub robinebers/converted-plugins --plugin sharepointGuides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.
Synthesizes the current conversation into a structured spec (PRD) and publishes it to the project issue tracker with a ready-for-agent label, without interviewing the user.