Konductro.

CLI Plugins

Konductro's CLI plugins bring the platform into the developer's IDE. They connect Claude Code and Amazon Q to Konductro via MCP (Model Context Protocol), giving the AI in the editor access to project context, task details, and delivery workflows.

Why CLI Plugins Exist

Some workflows require access to the actual codebase — not an abstraction of it:

  • Technical analysis needs to read real files, understand existing patterns, and trace dependencies
  • Story decomposition needs to explore the codebase to scope tasks to specific files and repos
  • Development benefits from having task context, acceptance criteria, and architectural notes available in the editor

These operations run on the developer's machine, where the code lives. The CLI plugin bridges the gap between the local codebase and Konductro's planning data.

Supported IDEs

IDEPluginTransport
Claude Code@conductor/claude-pluginMCP server (stdio)
Amazon Q@conductor/q-pluginMCP server (stdio)

Both plugins offer the same capabilities. The choice depends on which IDE the developer uses.

What the Plugins Provide

Skills (slash commands)

SkillPurpose
/technical-analysisRun a technical analysis against the local codebase
/decomposeBreak a story into technical tasks by exploring real code
/start-workStart work on an assigned task (branch + spec push)
/prototypeBuild a UX prototype from design system context
/profile-repositoryScan and register the codebase profile with Konductro

MCP Tools

The plugins also expose individual MCP tools that the AI in the editor can call during conversation — listing tickets, loading context, submitting results, and more.

How It Works

The plugin runs as an MCP server using stdio transport. When the developer starts a conversation in their IDE, the AI can call Konductro tools to:

  1. Pull context — load task details, acceptance criteria, architectural notes, approved artefacts
  2. Execute workflows — start work, submit decomposition results, create PRs
  3. Push data back — submit technical analysis documents, repository profiles, prototype builds

All communication goes through the Konductro REST API using a personal CLI token. No direct database access, no secrets exposed to the IDE.

See Installation to get started or the Tools Reference for the full list of available tools.