惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
L
LangChain Blog
博客园 - 司徒正美
G
Google Developers Blog
博客园 - 【当耐特】
GbyAI
GbyAI
月光博客
月光博客
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
大猫的无限游戏
大猫的无限游戏
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
V
Visual Studio Blog
D
Docker
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
Stack Overflow Blog
Stack Overflow Blog
Jina AI
Jina AI
博客园 - 聂微东

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Installed 15 AI Tools and Skill Management Became a Nig...
BoboloveIC · 2026-05-16 · via DEV Community
Cover image for I Installed 15 AI Tools and Skill Management Became a Nightmare — Until I Built This

BoboloveIC

I Installed 15 AI Tools and Skill Management Became a Nightmare — Until I Built This

How I solved the chaos of managing skills, plugins, and extensions across 35+ AI platforms with a single desktop dashboard.


The Problem: AI Tool Sprawl is Real

Last year, I went all-in on AI-assisted development.

I installed Claude for writing, Cursor for coding, GitHub Copilot for pair programming, VS Code with 20+ extensions, OpenClaw for agent workflows, Cline, Qwen, Ollama for local LLMs...

By month three, I had 15 AI tools installed, each with its own:

  • Skill/plugin/extension directories
  • Configuration files scattered in ~/.* dot-directories
  • Zero visibility into what was installed where

The breaking point came when I wanted to:

  1. Migrate a custom skill from OpenClaw to Cline → had to manually copy paths, edit configs
  2. Share my curated skill collection with my team → had to manually ZIP each directory
  3. Clean up unused plugins → had to open each platform's UI separately

There had to be a better way.


The Solution: OpenSkill Manager

I built OpenSkill Manager — a unified desktop dashboard that discovers, manages, and migrates skills/plugins/extensions across 35+ AI platforms in one place.

What it does

Auto-discovers all your AI tools by scanning ~/ for dot-directories

Unified view of all skills/plugins/extensions with filtering by platform, category, or search

Batch operations — migrate, export, or delete multiple items at once

Cross-platform migration — move a skill from OpenClaw to Cline with one click

Import/Export — package skills as .zip and share with your team

24-language i18n — because AI is global

Real-time file watching — UI syncs automatically when you add/remove skills


Architecture (For the Curious)

Built with Electron + React + TypeScript.

Discovery Engine

1. Scan ~/ for dot-directories matching 35+ known AI tools
2. Enumerate skills/plugins/extensions directories
3. Extract metadata from SKILL.md and package.json
4. Persist to local JSON database (openskill.db)

Enter fullscreen mode Exit fullscreen mode

Tech Stack

Layer Technology
Shell Electron 28
UI React 18 + TypeScript
Build Webpack 5 + Babel
Package electron-builder
File Watch chokidar

Supported Platforms (35+ and growing)

The app auto-discovers:

  • AI Assistants: Claude, ChatGPT, Gemini, Qwen
  • Code Editors: VS Code, Cursor, Trae, Kode
  • AI Agents: OpenClaw, QClaw, Cline, CodeBuddy
  • LLM Runtimes: Ollama
  • And 25+ more...

Any unrecognized dot-directory with skills/, plugins/, or extensions/ subdirectories will also be discovered automatically.


Get Started in 3 Commands

git clone https://github.com/BoboloveIC/openskill-manager.git
cd openskill-manager
npm install && npm run dev

Enter fullscreen mode Exit fullscreen mode

Or download the latest release for macOS/Windows/Linux.


What's Next

I'm actively working on:

  • [ ] Skill enable/disable toggle
  • [ ] Plugin marketplace integration
  • [ ] Drag-and-drop migration
  • [ ] Auto-update support

Would love your feedback and contributions!


Screenshots

Demo GIF coming soon! Watch the repo for updates.


Built with ❤️ by Bo — because managing 15 AI tools shouldn't require a spreadsheet.


Tags

#ai-tools #developer-tools #productivity #electron #opensource #ai-productivity #cross-platform