npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@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-plugin

2. Configure for Claude Code

konductro-claude-setup --url https://platform.konductro.com --token YOUR_CLI_TOKEN

Get 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_pr

Update

npm update -g @konductro/claude-plugin

To update your CLI token:

konductro-claude-setup --url https://platform.konductro.com --token NEW_TOKEN