SharePoint Automation-2bdbec — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited SharePoint Automation-2bdbec (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Automate SharePoint operations including managing sites, lists, documents, folders, and pages. Integrates with both SharePoint REST API and Microsoft Graph via OneDrive.
Toolkit docs: composio.dev/toolkits/share_point
This skill requires the Rube MCP server connected at https://rube.app/mcp.
Before executing any tools, ensure active connections exist for the share_point and one_drive toolkits. If no connection is active, initiate one via RUBE_MANAGE_CONNECTIONS.
Note: Many OneDrive/SharePoint tools only work with organizational Microsoft 365 accounts (Azure AD/Entra ID). Personal Microsoft accounts are NOT supported.
Retrieve site details and enumerate subsites to discover the SharePoint topology.
Tools:
ONE_DRIVE_GET_SITE_DETAILS -- Get metadata for a specific site by IDONE_DRIVE_LIST_SITE_SUBSITES -- List all subsites of a parent siteKey Parameters:
site_id (required) -- Composite format: hostname,site-collection-guid,web-guid (e.g., "contoso.sharepoint.com,da60e844-...,712a596e-...")Example:
Tool: ONE_DRIVE_GET_SITE_DETAILS
Arguments:
site_id: "contoso.sharepoint.com,2C712604-1370-44E7-A1F5-426573FDA80A,2D2244C3-251A-49EA-93A8-39E1C3A060FE"Create lists, enumerate existing lists, and retrieve list items.
Tools:
SHARE_POINT_LIST_ALL_LISTS -- Retrieve all lists on a site (supports OData filter, select, orderby, top)SHARE_POINT_SHAREPOINT_CREATE_LIST -- Create a new list with a specified templateONE_DRIVE_LIST_SITE_LISTS -- List all lists under a site via Microsoft GraphONE_DRIVE_GET_SHAREPOINT_LIST_ITEMS -- Retrieve items from a specific listKey Parameters for `SHARE_POINT_SHAREPOINT_CREATE_LIST`:
name (required) -- List nametemplate (required) -- Template type: "genericList", "documentLibrary", "tasks", etc.description -- Optional descriptionKey Parameters for `SHARE_POINT_LIST_ALL_LISTS`:
filter -- OData filter, e.g., "Hidden eq false"select -- Properties to return, e.g., "Title,Id"orderby -- Sort expression, e.g., "Title desc"top -- Limit results countExample:
Tool: SHARE_POINT_SHAREPOINT_CREATE_LIST
Arguments:
name: "Project Tasks"
template: "tasks"
description: "Task tracking for Q1 deliverables"Create folders, list files within folders, and navigate the document library.
Tools:
SHARE_POINT_SHAREPOINT_CREATE_FOLDER -- Create a new folder in a document librarySHARE_POINT_LIST_FILES_IN_FOLDER -- List files within a folder by server-relative URLSHARE_POINT_GET_FOLDER_BY_SERVER_RELATIVE_URL -- Get folder metadata by pathKey Parameters for `SHARE_POINT_SHAREPOINT_CREATE_FOLDER`:
folder_name (required) -- Name of the folder to createdocument_library -- Target library (default: "Shared Documents")relative_path -- Additional path within the libraryKey Parameters for `SHARE_POINT_LIST_FILES_IN_FOLDER`:
folder_name (required) -- Server-relative URL, e.g., "/Shared Documents"select -- Comma-separated properties, e.g., "Name,ServerRelativeUrl,Length"top -- Limit results countorderby -- Sort expression, e.g., "Name desc"Example:
Tool: SHARE_POINT_LIST_FILES_IN_FOLDER
Arguments:
folder_name: "/Shared Documents/Reports"
select: "Name,ServerRelativeUrl,Length"
top: 50Use Keyword Query Language (KQL) to search documents, list items, and other content across the site.
Tool: SHARE_POINT_SEARCH_QUERY
Key Parameters:
querytext (required) -- KQL query, e.g., "project report", "FileType:docx", "Author:\"John Doe\""rowlimit -- Max results per request (default ~50, max 500)startrow -- Zero-based offset for paginationselectproperties -- Properties to return, e.g., "Title,Author,Path"refinementfilters -- Narrow results, e.g., "FileType:equals(\"docx\")"Example:
Tool: SHARE_POINT_SEARCH_QUERY
Arguments:
querytext: "IsDocument:1 FileType:pdf"
rowlimit: 25
selectproperties: "Title,Author,Path,LastModifiedTime"Use delta queries to get incremental changes (created, updated, deleted items) without reading the entire list.
Tool: ONE_DRIVE_LIST_SHAREPOINT_LIST_ITEMS_DELTA
Key Parameters:
site_id (required) -- Composite site IDlist_id (required) -- List GUIDtoken -- Omit for initial sync; pass "latest" for empty response with token; pass previous token for changes sinceexpand -- e.g., "fields($select=ColumnA,ColumnB)"top -- Max items per responseRead modern SharePoint Site Pages content including canvas web parts.
Tool: SHARE_POINT_GET_SITE_PAGE_CONTENT
Key Parameters:
page_file_name -- File name with .aspx extension, e.g., "Home.aspx"item_id -- Alternative: list item ID of the pagerender_as -- "raw" (default), "text", or "html"site -- Optional site name scope| Pitfall | Detail |
|---|---|
| Site ID format | Must be composite: hostname,site-collection-guid,web-guid. Incorrect format causes 400 errors. |
| Personal accounts unsupported | ONE_DRIVE_LIST_SITE_LISTS and Graph-based tools only work with organizational M365 accounts, not personal MSA/Outlook.com accounts. |
| OData filter syntax | SharePoint OData filters use specific syntax. Test filters incrementally; unsupported expressions may silently return empty results. |
| Pagination | Use skiptoken for server-side paging in list operations. Incomplete pagination settings can miss results. |
| Folder paths | Must use server-relative URLs (e.g., /Shared Documents) not absolute URLs. |
| Tool Slug | Description |
|---|---|
ONE_DRIVE_GET_SITE_DETAILS | Get metadata for a SharePoint site |
ONE_DRIVE_LIST_SITE_SUBSITES | List subsites of a parent site |
ONE_DRIVE_LIST_SITE_LISTS | List all lists under a site (Graph API) |
ONE_DRIVE_LIST_SHAREPOINT_LIST_ITEMS_DELTA | Track incremental list changes |
ONE_DRIVE_GET_SHAREPOINT_LIST_ITEMS | Retrieve items from a list |
ONE_DRIVE_LIST_DRIVES | List available drives for a user/site/group |
ONE_DRIVE_LIST_SITE_COLUMNS | List column definitions for a site |
SHARE_POINT_LIST_ALL_LISTS | Retrieve all lists on a site (REST API) |
SHARE_POINT_SHAREPOINT_CREATE_LIST | Create a new SharePoint list |
SHARE_POINT_SHAREPOINT_CREATE_FOLDER | Create a folder in a document library |
SHARE_POINT_LIST_FILES_IN_FOLDER | List files in a folder |
SHARE_POINT_SEARCH_QUERY | Search content using KQL |
SHARE_POINT_GET_SITE_PAGE_CONTENT | Retrieve Site Page content |
SHARE_POINT_GET_FOLDER_BY_SERVER_RELATIVE_URL | Get folder metadata by path |
Powered by [Composio](https://composio.dev)
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.