Help us improve
Share bugs, ideas, or general feedback.
From stackone-cli
Build and deploy custom StackOne connectors using the CLI and Connector Engine. Use when user asks to "build a custom connector", "deploy my connector", "use the StackOne AI builder", "set up CI/CD for connectors", "test my connector locally", or "install the StackOne CLI". Covers the full connector development workflow from init through deployment. Do NOT use for using existing connectors (use stackone-connectors) or building AI agents (use stackone-agents).
npx claudepluginhub stackonehq/agent-plugins --plugin stackone-cliHow this skill is triggered — by the user, by Claude, or both
Slash command
/stackone-cli:stackone-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
The CLI is actively developed and commands change between versions. Before providing CLI guidance:
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
The CLI is actively developed and commands change between versions. Before providing CLI guidance:
https://docs.stackone.com/guides/connector-engine/cli-reference for the current command referencehttps://www.npmjs.com/package/@stackone/cli for the latest versionDo not guess CLI commands or flags — always verify against live docs.
npm install -g @stackone/cli
This installs the global stackone command. Verify with stackone --version.
Custom connectors are for platforms that StackOne doesn't natively support. Before building one:
stackone-connectors skill or browse https://docs.stackone.com/connectors/introductionFetch the connector structure guide for the current project layout:
https://docs.stackone.com/guides/connector-engine/connector-structure
The Connector Engine provides:
The AI Builder can generate connector scaffolding from API documentation. Fetch the guide:
https://docs.stackone.com/guides/connector-engine/ai-builder
This accelerates development by generating boilerplate from an OpenAPI spec or API docs URL.
Run the connector locally to test against the target API before deploying. Fetch the CLI reference for the exact test commands:
https://docs.stackone.com/guides/connector-engine/cli-reference
Deploy to StackOne's infrastructure. For automated deployments, set up CI/CD:
https://docs.stackone.com/guides/connector-engine/github-workflow
User says: "We have an internal HR system. Can I connect it to StackOne?"
Actions:
npm install -g @stackone/cliResult: Custom connector project initialized with the right structure.
User says: "How do I auto-deploy connectors from GitHub?"
Actions:
https://docs.stackone.com/guides/connector-engine/github-workflowResult: Working GitHub Actions pipeline for connector deployment.
Cause: Global npm bin directory not in PATH.
npm config get prefix to find the install location{prefix}/bin to your PATHnpx @stackone/cli instead of the global commandCause: Missing or invalid credentials.
Cause: Various — check the error message.