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

@gui-chat-plugin/mindmap

v0.3.1

Published

Interactive mind map plugin for visual brainstorming

Downloads

703

Readme

@gui-chat-plugin/mindmap

npm version

Interactive mind map plugin for GUI Chat applications. Create visual mind maps for brainstorming and idea organization.

Features

  • Create mind maps with central idea and branching nodes
  • Add, delete, and connect nodes interactively
  • Auto-layout with rebalance functionality
  • Export to PNG and PDF
  • Vue and React support

Installation

yarn add @gui-chat-plugin/mindmap

Usage

Vue Integration

// In src/tools/index.ts
import MindMapPlugin from "@gui-chat-plugin/mindmap/vue";

const pluginList = [
  // ... other plugins
  MindMapPlugin,
];

// In src/main.ts
import "@gui-chat-plugin/mindmap/style.css";

React Integration

import MindMapPlugin from "@gui-chat-plugin/mindmap/react";
import "@gui-chat-plugin/mindmap/style.css";

Core-only Usage

import { executeMindMap, TOOL_DEFINITION } from "@gui-chat-plugin/mindmap";

// Create a mind map
const result = await executeMindMap(context, {
  action: "create",
  title: "Project Ideas",
  centralIdea: "New Product",
  ideas: ["Feature A", "Feature B", "Feature C"],
});

API

MindMapArgs

interface MindMapArgs {
  action: "create" | "add_node" | "delete_node" | "connect" | "update" | "rebalance";
  title?: string;           // Title of the mind map
  centralIdea?: string;     // Central idea for new mind map
  ideas?: string[];         // Initial ideas branching from center
  parentNodeId?: string;    // Parent node ID for add_node
  newIdea?: string;         // New idea text for add_node
  nodeIdToDelete?: string;  // Node ID to delete
  fromNodeId?: string;      // Source node for connection
  toNodeId?: string;        // Target node for connection
  connectionLabel?: string; // Label for connection
}

Actions

| Action | Description | |--------|-------------| | create | Create a new mind map with central idea and branches | | add_node | Add a new node as child of existing node | | delete_node | Delete a node and its children | | connect | Create a connection between two nodes | | update | Update existing mind map | | rebalance | Auto-arrange nodes for better layout |

Test Prompts

Try these prompts to test the plugin:

  1. "Create a mind map about project planning"
  2. "Add a new idea about marketing to the mind map"
  3. "Connect the design and development nodes"

Development

# Install dependencies
yarn install

# Run Vue demo
yarn dev

# Run React demo
yarn dev:react

# Build
yarn build

# Lint
yarn lint

License

MIT