@konductro/claude-plugin
v2.0.0
Published
Claude Code plugin for the Konductro platform — technical analysis and delivery tasks
Readme
@konductro/claude-plugin
Claude Code plugin for the Konductro platform. Enables technical analysis, story decomposition, ticket management, prototype delivery, and ticket-to-PR workflows directly from Claude Code.
Prerequisites
- Node.js 18+
- Konductro CLI token (generated in Konductro → Settings → CLI Access)
Install
1. Install the plugin globally
npm install -g @konductro/claude-plugin2. Configure for Claude Code
konductro-claude-setup --url https://platform.konductro.com --token YOUR_CLI_TOKENGet your CLI token from Konductro → Settings → CLI Access.
Skills
Skills are guided, multi-step workflows invoked with a slash command:
| Skill | Description |
|---|---|
| /technical-analysis | Perform a full codebase analysis for a Konductro project phase |
| /decompose | Decompose a story into technical tasks by exploring the codebase |
| /prototype | Build a UX prototype: load design system, generate HTML, publish to S3, submit |
| /find-prototype | Find and download the approved UX prototype for the current project |
| /profile-repository | Scan the current repo and submit its profile to Konductro |
| /start-ticket | Pick up an assigned ticket — creates branch, pushes ticket spec, sets status |
Tools
Tools are called automatically by Claude based on natural language. You don't invoke them directly — just ask.
Tickets and delivery
| Tool | What it does |
|---|---|
| list_my_tickets | List all tickets assigned to you with status, project, sprint info |
| get_ticket_context | Load full context for a ticket — AC, architectural notes, parent story, repo |
| start_work | Start work on a ticket — creates branch via ADO, pushes spec file, sets in_progress |
| create_pr | Create a pull request for a ticket — auto-assigns reviewer, moves ticket to pr_open |
Technical analysis
| Tool | What it does |
|---|---|
| list_tech_analysis_tasks | List your pending technical analysis assignments |
| get_task_context | Load requirements and project context for a tech analysis task |
| submit_tech_analysis | Submit your analysis document back to Konductro |
Story decomposition
| Tool | What it does |
|---|---|
| list_decomposition_tasks | List your pending story decomposition assignments |
| get_decomposition_context | Load story details, requirements, and repo context for decomposition |
| submit_decomposition_task | Submit a single decomposed task |
| complete_decomposition | Mark decomposition as complete after all tasks submitted |
Prototype delivery
| Tool | What it does |
|---|---|
| find_project_prototypes | Find published prototypes for a project by matching the git remote URL |
| list_prototype_tasks | List your pending prototype build assignments |
| get_prototype_context | Load engagement details, design system, approved docs, and S3 config |
| start_prototype_work | Mark a prototype task as in progress |
| request_upload_credentials | Get temporary S3 credentials to upload prototype files |
| submit_prototype | Submit the published prototype back to Konductro |
Repository profiling
| Tool | What it does |
|---|---|
| profile_repository | Submit a repository profile (tech stack, APIs, dependencies) |
Examples
"What tickets are assigned to me?" → list_my_tickets
"Show me the context for MRB-15" → get_ticket_context
"I want to start work on MRB-15" → /start-ticket (guided flow)
"Run a technical analysis" → /technical-analysis (guided flow)
"Build the prototype for this engagement" → /prototype (guided flow)
"Open a PR for MRB-15" → create_prUpdate
npm update -g @konductro/claude-pluginTo update your CLI token:
konductro-claude-setup --url https://platform.konductro.com --token NEW_TOKEN