skills/stackone-connectors/SKILL.md
Discover StackOne's 200+ connectors and 9,000+ actions across HRIS, ATS, CRM, LMS, ticketing, messaging, documents, IAM, and accounting. Use when user asks "which providers does StackOne support", "what can I do with BambooHR", "recommend an integration for HR", "what actions are available", "how do I call a provider-specific action", or "does StackOne support Workday". Helps choose the right connector and actions for any use case. Do NOT use for building agents (use stackone-agents) or connecting accounts (use stackone-connect).
npx skillsauth add stackonehq/agent-plugins-marketplace stackone-connectorsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Connector availability changes frequently as StackOne adds new providers. Before answering:
https://docs.stackone.com/connectors/introduction for the current connector listNever assume a connector exists or doesn't exist without checking live docs.
Common patterns:
Fetch https://docs.stackone.com/connectors/introduction for the full, current list.
Consult references/category-overview.md for a snapshot of categories and example providers. But always verify against live docs since new connectors are added regularly.
Each connector exposes its own set of provider-specific actions. Action counts vary significantly — Salesforce has 370+ actions, HubSpot has 100+, while smaller providers may have a handful.
To find what's available for a specific provider:
https://docs.stackone.com/connectors/introductionhttps://docs.stackone.com/platform/api-reference/actions/make-an-rpc-call-to-an-actionActions are named {provider}_{operation}_{entity} (e.g., bamboohr_list_employees, salesforce_get_contact).
All actions are executed through StackOne's Actions API:
curl -X POST https://api.stackone.com/actions/rpc \
-H "Authorization: Basic $(echo -n 'YOUR_API_KEY:' | base64)" \
-H "x-account-id: ACCOUNT_ID" \
-H "Content-Type: application/json" \
-d '{
"action": "bamboohr_list_employees"
}'
AI agents typically call actions via the SDK or MCP rather than raw API calls — see the stackone-agents skill for SDK/MCP integration.
Fetch https://docs.stackone.com/platform/api-reference/actions/make-an-rpc-call-to-an-action for the full RPC reference.
npx @modelcontextprotocol/inspector https://api.stackone.com/mcp — test via MCP| Stage | Meaning | Recommendation | |-------|---------|----------------| | GA | Production-ready, fully supported | Safe for production | | Beta | Stable for testing, minor changes possible | OK for non-critical flows | | Preview | Early-stage, expect breaking changes | Development/testing only |
User says: "Which HRIS tools does StackOne support?"
Actions:
https://docs.stackone.com/connectors/introductionResult: Current list of HRIS connectors with per-provider action counts.
User says: "What can I do with BambooHR through StackOne?"
Actions:
https://docs.stackone.com/connectors/introduction and find BambooHRbamboohr_list_employees, bamboohr_get_employee, etc.)Result: Full list of BambooHR actions with how to call them.
User says: "Does StackOne support our custom HR tool?"
Actions:
https://docs.stackone.com/connectors/add-new
b. Build it: use the Connector Engine (see stackone-cli skill)Result: Clear path forward — either request or build.
Cause: Provider may be listed under a different name, or may not be supported yet.
Cause: The requested action doesn't exist for this provider.
bamboohr_list_employees not list_employees)Cause: Incorrect slug format.
https://stackone-logos.com/api/{connector-slug}/filled/pngbamboo-hr, google-drive)tools
Behavioral guidance for Claude Code when StackOne Defender is running as a PostToolUse hook. Defender flags tool results that may contain prompt injection. Treat its flags as a quiet review hint — do a quick check for genuine injection, then continue working. Do not interrupt the user unless you confirm a real attack.
tools
Baseline skill for building unified/schema-based connectors that transform provider data into standardized schemas. Use alongside domain-specific schema skills (e.g., unified-hris-schema, unified-crm-schema) that define your organization's standard schemas. Use when user says "start unified build for [provider]", "build a schema-based connector", "map fields to schema", "test unified connector", or asks about field mapping, enum mapping, pagination configuration, or scope decisions. This skill provides implementation patterns; schema skills provide field definitions. Do NOT use for agentic/custom connectors (use stackone-cli), discovering existing connectors (use stackone-connectors), or building AI agents (use stackone-agents).
development
Manage StackOne resources including API keys, linked accounts, logs, and webhooks. Use when user asks to "set up StackOne", "list my accounts", "debug API errors", "check integration status", or "configure webhooks". Covers authentication, account management, and troubleshooting. Do NOT use for building AI agents (use stackone-agents) or discovering connector capabilities (use stackone-connectors).
development
Discover StackOne's 200+ connectors and 9,000+ actions across HRIS, ATS, CRM, LMS, ticketing, messaging, documents, IAM, and accounting. Use when user asks "which providers does StackOne support", "what can I do with BambooHR", "recommend an integration for HR", "what actions are available", "how do I call a provider-specific action", or "does StackOne support Workday". Helps choose the right connector and actions for any use case. Do NOT use for building agents (use stackone-agents) or connecting accounts (use stackone-connect).