English | 中文
Nolon is a powerful macOS application designed to streamline the management of skills for AI coding assistants like Codex and Claude Code. It acts as a centralized hub, allowing you to organize, install, and maintain your skills efficiently.
- Centralized Repository: Maintains a single source of truth for all your skills in
~/.nolon/skills/. - Clawdhub Integration: Browse and install skills directly from Clawdhub remote repository.
- MCP Support 🆕: Manage Model Context Protocol (MCP) configurations for each provider directly from Nolon.
- Broad Provider Support (25+):
- Codex, Claude Code, OpenCode, GitHub Copilot, Gemini CLI, Antigravity, Cursor, Amp, Clawdbot, Cline, Command Code, Droid, Goose, Kilo, Kiro, MCPJam, OpenHands, Pi, Qoder, Qwen, Roo, Trae, Windsurf, Zencoder, Neovate.
- Flexible Configuration:
- Custom Paths: Configure the skills directory used by each provider.
- Installation Methods: Choose between Symbolic Link (Live Sync) or Copy (Standard) for installation.
- Migration Assistant: Automatically detects "orphaned" skills (physical files) in provider directories and helps you migrate them to Nolon's managed storage.
- Health Checks: Identifies and repairs broken symlinks to keep your environment healthy.
- Rich Metadata Support: Parses standard
SKILL.mdfrontmatter to display version, description, and other details. - Complete Folder Support: Manages skills as complete folders, preserving auxiliary files like
scripts/andreferences/. - Internationalization: Fully localized in English and Chinese (Simplified).
- Import: Import skills from local folders into Nolon's global storage.
- Install: Select a skill and toggle installation for target providers (e.g., Codex, Claude).
- Migrate: Use the "By Provider" view to find existing unmanaged skills and migrate them to Nolon's management.
- Browse: Click the cloud icon in toolbar to open Clawdhub browser.
- Search: Search for skills by name or browse the latest skills.
- Install: Select a skill and choose a provider to install to.
- Auto-Sync: Skills are downloaded to global storage, then linked/copied to provider.
The project follows a clean architecture:
- Models: Domain entities (
Skill,Provider,RemoteSkill, etc.) located inSkills/Models. - Infrastructure: Storage and system operations (
SkillRepository,SkillInstaller,ClawdhubService) located inSkills/Infrastructure. - Views: SwiftUI user interface (
MainSplitView,RemoteSkillsBrowserView) located inSkills/Views. - App: Entry point at
nolon/nolonApp.swift.
We use a code-based color system located in nolon/DesignSystem/AppColors.swift.
Rules:
- Always use
DesignSystem.Colorsinstead of hardcodedColor(...)or system defaults. - Do not use
Color.blue,Color.white, etc. - Available Palette:
- Brand:
DesignSystem.Colors.primary,secondary - Backgrounds:
DesignSystem.Colors.Background.canvas,surface,elevated - Text:
DesignSystem.Colors.Text.primary,secondary,tertiary,quaternary - Status:
DesignSystem.Colors.Status.info,success,warning,error
- Brand:
- Dark Mode: All colors automatically adapt to system appearance.
This repo uses git submodules under libs/. Make sure to fetch them before building:
git submodule update --init --recursive- Open
nolon.xcodeprojin Xcode 16+. - Wait for Swift Package Manager to resolve dependencies (MarkdownUI).
- Select the nolon scheme and My Mac as the destination.
- Run the application (Cmd+R).
You can verify the build using the provided helper script:
./build.shOr manually using xcodebuild:
xcodebuild -project nolon.xcodeproj -scheme nolon -configuration Release- macOS 15.0+
- Xcode 16.0+ (for building)
This project is inspired by and references the following projects:
- CodexSkillManager: https://github.com/Dimillian/CodexSkillManager
- SkillsManager: https://github.com/tddworks/SkillsManager
- Clawdhub: https://clawdhub.com - Remote skills repository