Launch Application:
Introduction & Purpose
As AI agents and LLM-based systems scale in complexity, they often rely on dozens of interconnected, specialized markdown instructions (known as "skills"). Managing these skills as flat text files across a codebase quickly becomes unmanageable—leading to broken dependencies, circular logic, and context window bloat.
Skill Atlas is a standalone, serverless IDE designed specifically to solve this problem. It parses your entire skill repository and automatically constructs a visual Directed Acyclic Graph (DAG).
By treating your agent's instructions as a compiled dependency tree, Skill Atlas allows you to:
- Visually map the execution path and dependencies between different LLM instructions.
- Ensure strict compliance with Anthropic and OpenAI guidelines for atomic, composable skills.
- Safely edit markdown skills in the browser and securely push them directly back to GitHub as Pull Requests.
View Visual Feature Tour
1. Bring Your Own LLM (BYOK)
Securely configure your own OpenAI or Anthropic API keys directly in the browser. Keys are stored locally, unlocking advanced AI diagnostics and skill analysis without sending credentials to any central server.
2. Real-time Analytics & Token Limits
The Node Context panel computes real-time metadata (lines, words, token estimates) and actively flags oversized skills that violate Anthropic's optimal token limits for atomic, composable skills.
3. Cmd+K Command Palette Navigation
A global omnibar search allows you to instantly search across your entire repository and jump directly to specific skills, assets, or markdown files without taking your hands off the keyboard.
4. Cross-Repository Duplication Tracking
Automatically tracks and lists duplicated skill files across multiple locations in the repository (e.g., across different agent plugins) to help you manage redundancy.
5. Advanced Edge Highlighting & Dependency Tracing
Clicking any node intelligently dims unrelated parts of the graph while illuminating its exact execution path. A clear legend differentiates between Explicit Dependencies (direct calls), Implicit Dependencies (backtick references), and Soft Mentions.
6. Secure GitHub Pull Requests
Directly authenticate with GitHub via OAuth to review staged modifications and securely open Pull Requests straight from the workbench without needing the CLI.
7. Interactive PR Diff Viewer
Before pushing changes, use the built-in side-by-side Monaco Diff Editor to visualize your local staged modifications against the baseline codebase with full syntax highlighting.
8. Interactive AI Copilot Chat
Leverage your configured LLM API keys to chat directly with a dedicated AI Copilot. The AI streams natural language analysis and proposes safe refactorings within markdown blocks. A one-click "Apply to Editor" button allows you to instantly merge the AI's code without corrupting your files with raw syntax. Bring Your Own Key (BYOK): Your API keys (OpenAI, Anthropic, Gemini) are stored securely in your browser's local storage. There is no database, no backend server, and no telemetry—everything is done entirely on your browser for ultimate privacy.
Anthropic Skill Validation Rules
Skill Atlas comes pre-configured with a strict diagnostics engine that enforces best practices for AI agent instructions based on Anthropic's guidelines for atomic and composable skills.
The engine actively flags violations across the graph:
- Token Optimization: Warns when skills exceed optimal token limits, preventing context window bloat.
- Cyclic Dependencies: Detects infinite loops and circular logic where skills recursively call each other.
- Orphan Detection: Identifies isolated skills that have no entry points or parent references.
- Metadata Strictness: Enforces required YAML frontmatter (name, description, inputs) to ensure downstream tools can execute the skills.
Video Demonstrations
1. Visual Node Graph
Built with React Flow, it instantly maps out your entire skill repository and its dependencies, giving you a top-down view of all agent instructions.
2. Real-time Diagnostics
Validates skills against strict rules (e.g., no cycles, orphans, missing frontmatter) and flags them with contextual explanations to maintain repository health.
3. Integrated IDE & Notebook Renderer
A split-pane Monaco Editor allows you to directly edit Markdown and Code files within the browser with real-time updates to the graph. It also features native Jupyter Notebook (.ipynb) parsing, rendering Markdown blocks and Code cells seamlessly within the app.
4. GitHub Integration & PRs
Fetches skills directly from remote GitHub repositories and pushes modifications securely back as Pull Requests using GitHub OAuth.
Local Development
To run the application locally, simply install the dependencies and start the development server:
Open http://localhost:3000 in your browser.






























