Loading image...Kiro

Product

  • About Kiro
  • IDE
  • CLI
  • Web
  • Mobile
  • Crew
  • Pricing
  • Downloads

For

  • Enterprise
  • Startups
  • Students

Community

  • Overview
  • Ambassadors
  • Discord
  • Events
  • Powers
  • Shop
  • Showcase

Resources

  • Docs
  • Blog
  • Changelog
  • FAQs
  • Report a bug
  • Suggest an idea
  • Billing support

Social

Site TermsLicenseResponsible AI PolicyLegalPrivacy PolicyCookie Preferences
Loading image...Kiro
  • Enterprise
  • Pricing
  • Docs
SIGN INDOWNLOADS
Loading image...Kiro

Get Started

InstallationAuthenticationYour first project

Models

OverviewAvailable modelsReasoning effort

Features

How Kiro works
Specs
Steering
Hooks
MCP
Permissions
Custom agents
Agent Skills
Powers
CompactionKiroignoreCheckpoints and rewind
Built-in tools
Configuration scopes

IDE 1.x

What's new in 1.0
Setup & First Run
Editor
Chat
Experimental
Troubleshooting0.x reference

CLI

What's new in 3.0
Setup & First Run
Terminal UI
Chat
Headless modeACPAuto complete
Experimental
2.x reference

Crew

Quick startInstallationRunning 24/7
Chat
Agent Capabilities
Features
Interfaces
Slack
Discord
Telegram
Teams
Webex
WeCom
WeChat (Weixin)
CLI reference
Apps
ConfigurationSecurityTroubleshooting

Web - Preview

Setup & First RunIdentity Center
Connect your repositories
Working with the agent
Autonomous modeAutomations
Sandbox

Mobile - Preview

Overview

Commands and Reference

CLI commandsSlash commandsBuilt-in toolsExit codesSettingsIDE keyboard shortcuts

Billing

OverviewManaging your subscriptionUpgrading your planDowngrading your planCancelling your planPurchasing add-on creditsManaging your paymentsManaging usage notificationsManaging your taxesContacting billing supportDeleting your accountRelated questions

Enterprise

ConceptsOnboarding quickstart
Connecting your identity provider
Subscribe your teamManage subscriptions
Governance
Monitor and track
SettingsManaged updatesBillingIAMSupported regions

Privacy and Security

OverviewData protectionCode referencesCompliance validationInfrastructure securityIAM permissionsFirewalls, proxies, and data perimetersVPC endpoints (AWS PrivateLink)

Guides

Overview
Language support
Learn by playing

Migration

Migrating from Q DeveloperMigrating from VSCodeUpgrading from Q CLI
  1. Docs
  2. Crew
  3. Interfaces
  4. Webex

Webex


Crew connects to Webex over an outbound WebSocket — no public URL, no webhooks. Create a bot on the Webex developer portal, paste one token, and you're talking. Replies land with a live status placeholder while the agent works.

Setup

From the dashboard (recommended)

  1. Create a bot at developer.webex.com — My Webex Apps → Create a New App → Create a Bot. Copy the Bot access token.
  2. Open Settings → Channels → Webex in the dashboard
  3. Paste the bot token
  4. Add your Webex email to the Allowed emails list
  5. Click Save — the gateway restarts and connects

The status badge turns green when connected. Search for your bot's username in Webex and send it a direct message.

From the CLI

bash
# Save token to ~/.kiro/crew/.env echo "WEBEX_BOT_TOKEN=YmFzZTY0…" >> ~/.kiro/crew/.env

In ~/.kiro/crew/config.json:

json
{ "webex": { "enabled": true, "allowed_emails": ["you@example.com"] } }

Then: kirocrew restart

Who can reach it

  • Deny-by-default — an empty allowed_emails list rejects everyone
  • Direct messages only — the bot ignores group spaces (even from allowed users)
  • Tool output never leaks into a room

Anyone in an org can message a Webex bot, so add only your own email(s).

Commands

CommandEffect
/newStart a fresh conversation
/compactCompress context
/helpList commands

Messages sent while a reply is in progress are folded into the running turn.

Tool approval

With interactive approval mode, tools that need approval are denied by default — Webex has no approve/deny buttons. Use the dashboard for sessions that need interactive tool approval, or set agent.approval_mode: "auto".

Configuration

KeyDefaultPurpose
webex.enabledfalseTurns the channel on
webex.allowed_emails[]Webex emails allowed (empty = nobody)
webex.soft_threshold_pct80Suggest /compact past this usage
webex.hard_threshold_pct95Force-compact past this
webex.bot_token""Token fallback if WEBEX_BOT_TOKEN isn't set

Prefer the WEBEX_BOT_TOKEN env var over bot_token.

Troubleshooting

ProblemFix
No replyYour email isn't in allowed_emails or enabled is false
No Webex channel started in logsToken isn't set or is invalid
Group-space messages ignoredBy design — DM the bot directly
Page updated: August 4, 2026
Teams
WeCom