@stackone/cli) provides commands for building, validating, testing, and deploying custom connectors.
Full Documentation
Complete CLI documentation on npm
Installation
Command Reference
Agent Commands
Set up the agent, and the MCP server that gives an AI coding assistant StackOne’s tools.~/.stackone/agent-config.json either way. The MCP server entry goes to ~/.claude.json for --global, or the project’s .mcp.json for --local.
Chat and one-shot runs
Most of the time you’ll build in Claude Code, which picks up the.mcp.json and skills that agent setup --local installs. agent chat is the alternative when you’d rather stay in the terminal without a separate editor or assistant. It defaults to build mode, accepts /commands, and you can point it at what you’re working on:
--temperature (0 to 1, default 0.5) adjusts how much the agent varies its approach.
For scripted use, agent run takes the prompt as an argument and exits when it’s done:
--max-turns defaults to 25.
Skills
agent setup --local installs a set of connector-building skills into .claude/skills/. List what you have, and the subset recommended for a mode:
Connector Development
in: location in the action’s YAML. Put every value under the key that matches where the input is sent.
You can pass the same object inline instead of a file:
Deployment
Deployment commands require an API key with Connectors scopes. See API Keys to generate one.
Configuration
Environment Variables
API keys are passed via
--api-key flag or stored in your profile configuration, not as environment variables.Next Steps
First Connector
Build a connector from scratch with these commands
GitHub CI/CD
Automated validation and publishing with GitHub Actions