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

@marktoflow/gui

v2.0.5

Published

Visual workflow designer for marktoflow - web UI

Downloads

1,717

Readme

@marktoflow/gui

Visual workflow designer — drag-and-drop editor with AI-powered assistance for building AI automations.

npm

Part of marktoflow — open-source AI workflow automation.

Quick Start

marktoflow gui

Opens the visual editor at http://localhost:3001. Create, edit, and run workflows with a drag-and-drop interface.

marktoflow gui --port 3000        # Custom port
marktoflow gui --open             # Open browser automatically
marktoflow gui --workflow-dir ./workflows

Programmatic Usage

import { startServer } from '@marktoflow/gui';

const server = await startServer({
  port: 3001,
  workflowDir: './workflows',
});

Features

  • Drag-and-Drop Editor — Visual node-based workflow canvas with pan/zoom
  • Auto-Layout — Dagre-based auto-layout on workflow load with per-node-type sizing; also available via Cmd+L
  • AI Assistance — Natural language commands to modify workflows (Claude, Copilot, Ollama)
  • Command Palette (Cmd+K) — Fuzzy search across actions, workflows, nodes, and settings
  • Real-time Execution — Run workflows and watch live status via WebSocket
  • Validation Panel — Dry-run checks before execution
  • Version Control & History — Snapshots, side-by-side diff, and non-destructive restore
  • Collaboration — Workflow locking (5-min auto-release), threaded node comments, presence indicators
  • Template Gallery & Onboarding — Browse templates seeded from examples/, 6-step interactive tour
  • Canvas Enhancements — Sticky notes (6 colors, markdown), group nodes (collapse/expand/lock), alignment and distribute tools
  • Enterprise Governance — RBAC roles (admin/editor/viewer/operator), environment management, secrets with masked values, audit trail
  • Accessibility (WCAG 2.1 AA) — SkipNav, ARIA live regions, @axe-core/react dev auditing
  • Live File Sync — Changes sync automatically with your .md workflow files
  • Input Collection — Validates and collects required inputs before execution
  • User Settings Panel — Centralized preferences (theme, canvas, editor, execution, AI, notifications) persisted to ~/.marktoflow/settings.json
  • Enterprise Design System — Professional light/dark theming with design tokens

AI Providers

| Provider | Auth Type | Authentication | |----------|-----------|----------------| | OpenAI | API Key | OPENAI_API_KEY env var | | Local LLM (llama.cpp, VLLM, LM Studio) | Local | Any OpenAI-compatible endpoint — auto-detects models | | Claude Agent | SDK | Claude CLI — claude login | | GitHub Copilot | SDK | Copilot CLI — copilot login | | OpenAI Codex | SDK | OPENAI_API_KEY env var (auto-detected) | | Claude API | API Key | ANTHROPIC_API_KEY env var | | Ollama | Local | ollama serve on localhost:11434 | | Demo Mode | — | Always available |

SDK Provider Status:

  • 🟢 Ready (green) — Connected and active
  • 🔵 Available (blue) — SDK installed, click to connect
  • 🟡 Needs Config (yellow) — Configuration required
  • 🔴 Unavailable (red) — SDK not installed

SDK-based providers detect availability automatically and show "Available" status when ready to connect. Codex auto-activates when OPENAI_API_KEY is set. Copilot dynamically fetches available models from the SDK.

Keyboard Shortcuts

| Shortcut | Action | |----------|--------| | Cmd/Ctrl + S | Save workflow | | Cmd/Ctrl + Z | Undo | | Cmd/Ctrl + Shift + Z | Redo | | Cmd/Ctrl + K | Open Command Palette | | Cmd/Ctrl + P | Quick Workflow Switcher | | Cmd/Ctrl + , | Open Settings | | Cmd/Ctrl + Shift + T | Toggle theme | | Delete | Delete selected | | Cmd/Ctrl + D | Duplicate selected |

Documentation

Contributing

See the contributing guide.

License

AGPL-3.0