Agent-facing distribution for ChatbotX. This repository publishes only two public skills and the IDE/ADE plugin manifests needed to connect AI agents to ChatbotX:
chatbotx-cli— use thechatbotxCLI from an agent terminal.chatbotx-mcp— use ChatbotX MCP tools from MCP-capable agents and IDEs.
The ChatbotX product source stays in ChatbotXIO/ChatbotX. This repository intentionally excludes internal development skills.
npx skills add ChatbotXIO/chatbotx-agent --skill chatbotx-cli
npx skills add ChatbotXIO/chatbotx-agent --skill chatbotx-mcp
# List what this repo publishes
npx skills add ChatbotXIO/chatbotx-agent --listExpected list: chatbotx-cli and chatbotx-mcp only.
/plugin marketplace add ChatbotXIO/chatbotx-agent
/plugin install chatbotx@chatbotx-agentThis repo ships a Cursor plugin manifest at .cursor-plugin/plugin.json.
Local development install:
git clone https://github.com/ChatbotXIO/chatbotx-agent.git
mkdir -p ~/.cursor/plugins/local
ln -s "$(pwd)/chatbotx-agent" ~/.cursor/plugins/local/chatbotxThen restart Cursor or run Developer: Reload Window. Configure CHATBOTX_API_KEY and CHATBOTX_API_URL from Cursor's plugin configuration UI.
npm install -g chatbotx
chatbotx config set --apiKey <your-workspace-token> --apiUrl https://app.chatbotx.io/api
chatbotx capabilities listThe plugin starts the local stdio MCP server through npm:
{
"chatbotx": {
"command": "npx",
"args": ["-y", "chatbotx-mcp"],
"env": {
"CHATBOTX_API_KEY": "<your-workspace-token>",
"CHATBOTX_API_URL": "https://app.chatbotx.io/api",
"CHATBOTX_MCP_TRANSPORT": "stdio"
}
}
}For generic MCP clients, use mcp.json at the repository root.
Prerequisite: chatbotx-mcp must be published to npm before public marketplace submission. In the product repository, run the MCP npm publish workflow first, then verify:
npm view chatbotx-mcp versionNo separate publish command is required. Push this public repository and install with npx skills add.
clawhub skill publish skills/chatbotx-cli --version 1.0.0 --dry-run --json
clawhub skill publish skills/chatbotx-mcp --version 1.0.0 --dry-run --json
clawhub skill publish skills/chatbotx-cli --version 1.0.0 --changelog "Initial ChatbotX CLI skill"
clawhub skill publish skills/chatbotx-mcp --version 1.0.0 --changelog "Initial ChatbotX MCP skill"Submit this repository at https://cursor.com/marketplace/publish. Cursor reads .cursor-plugin/plugin.json, .cursor-plugin/marketplace.json, and .cursor-plugin/mcp.json.
ChatbotX agents can mutate live workspace data and send messages to real contacts. Use least-privilege workspace API keys, verify recipient/audience counts before writes, and prefer read-only tokens for discovery tasks.