Three tools from Hacker News, three different developer pain points

Today I picked three projects from Hacker News worth sharing. One handles Windows desktop automation, another tackles feature flags, and the third is a visual workflow editor for Claude Code. Totally different directions, but they all solve real problems developers run into daily.


Minicor: Let AI Agents Take Over Legacy Windows Programs

Many enterprises still run Windows desktop software from over a decade ago—no APIs, no web interfaces, making automation nearly impossible. That's exactly what Minicor targets.

This YC P26 startup offers an RPA platform purpose-built for AI agents to operate within Windows desktop environments. Unlike traditional RPA, Minicor writes automation scripts in deterministic code and only calls on intelligent agents when the UI changes or unexpected dialogs appear. This hybrid approach is faster and more stable than purely agent-driven automation.

They've built in MCP protocol support, so Claude Code and Codex can navigate VMs and create RPA workflows directly through MCP. Every automation run comes with full video replay, and failures trigger Slack notifications with screenshots and execution context.

It's already running in production in healthcare, processing 25,000+ patients per day. SOC 2 Type II and HIPAA compliance are both done. For enterprises stuck with legacy systems, this could be a practical solution.

Website: minicor.com


Cloudflare Flagship: Feature Flags Natively Integrated with Workers

Feature flags are one of those things small projects think they don't need, and larger projects find tedious to configure. Cloudflare's newly launched Flagship wants to lower that barrier.

Flagship is Cloudflare's own feature flag service, integrated directly into Workers through native bindings. You evaluate flag values in Worker code via env.FLAGS—type-safe with automatic default fallback. It supports the OpenFeature standard, so if you're coming from LaunchDarkly or another OpenFeature-compatible service, switching requires changing one line of config.

All the expected features are here: percentage-based rollouts (using consistent hashing so the same user always gets the same value), targeting rules (11 comparison operators with AND/OR grouping), and multiple variation types (boolean, string, number, structured JSON). Management happens in the Cloudflare Dashboard.

HN commenters flagged a security concern: the client SDK's API token isn't scoped to a single app, meaning anyone with the token can evaluate flags across all apps in your account. Cloudflare has documented this limitation but hasn't shared a timeline for fixing it. Worth noting if your use case requires strict permission isolation.

Docs: developers.cloudflare.com/flagship


Claude Workflow Composer: Drag-and-Drop Multi-Agent Workflow Builder

If you've used Claude Code for multi-agent collaboration, you've probably written .md files to define agents and workflows. It gets tedious fast, especially when the number of agents grows and file dependencies become hard to track.

Claude Workflow Composer is a visual editor that lets you drag agent nodes onto a canvas, wire handoff logic between them, and configure each node's system prompt, tools, skills, and MCP. Once designed, one click exports everything to ~/.claude/—the generated .md files with YAML frontmatter are recognized by Claude Code directly.

Some nice details: conflict detection (file ownership marked via HTML comments so it never overwrites other workflows), real-time validation (duplicate slugs, empty names, and disconnected nodes are all flagged), and 500ms debounced auto-save. Launch it with npx claude-cwc and open localhost:3579 in your browser.

The project just went open source two days ago with 94 commits under MIT license. Still very new, but worth a try if you're a heavy Claude Code user.

GitHub: fayzan123/claude-workflow-composer


Three tools, three different angles. Minicor tackles the age-old problem of enterprise legacy system integration, Cloudflare Flagship makes feature flags a first-class citizen in Workers, and Claude Workflow Composer turns multi-agent orchestration from file editing into drag-and-drop. Check them out if any of these fit your workflow.