Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Skill ShelfNew to Visual Studio Code? Get it now.
Skill Shelf

Skill Shelf

oshyun

|
5 installs
| (0) | Free
Manage and sync skills from a GitHub repository
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Skill Shelf

VS Code extension for managing skills from a GitHub repository.

Features

  • Skills Tree View: View all your skills in a dedicated sidebar panel
  • GitHub Integration: Store and sync skills with a GitHub repository
  • CRUD Operations: Create, Read, Update, and Delete skills directly from VS Code
  • GitHub Authentication: Secure authentication using VS Code's built-in GitHub authentication

Installation

  1. Install the extension from the VS Code Marketplace (or install from VSIX for development)
  2. Configure your GitHub repository settings

Configuration

Open VS Code Settings and configure the following:

  • skillShelf.github.owner: GitHub username or organization
  • skillShelf.github.repo: Repository name
  • skillShelf.github.branch: Branch name (default: main)
  • skillShelf.github.skillsPath: Path to skills directory (default: skills)

Or use the Configure Repository command from the command palette.

Commands

Command Description
Skill Shelf: Refresh Skills Refresh the skills list from GitHub
Skill Shelf: Add Skill Create a new skill
Skill Shelf: Edit Skill Edit an existing skill
Skill Shelf: Delete Skill Delete a skill
Skill Shelf: Configure Repository Configure GitHub repository settings
Skill Shelf: Sync to GitHub Sync local changes with GitHub
Skill Shelf: View Skill Details View detailed information about a skill

Skill File Format

Skills are stored as Markdown files with YAML frontmatter:

---
id: skill-123456789
name: Code Review
description: Reviews code for best practices
tags: [coding, review]
createdAt: 2024-01-01T00:00:00.000Z
updatedAt: 2024-01-01T00:00:00.000Z
---

Your skill content/prompt goes here...

Development

Prerequisites

  • Node.js 18+
  • npm or yarn

Setup

# Install dependencies
npm install

# Compile TypeScript
npm run compile

# Watch for changes
npm run watch

Running the Extension

  1. Press F5 in VS Code to launch the Extension Development Host
  2. The extension will be available in the new VS Code window

Project Structure

src/
├── extension.ts              # Extension entry point
├── providers/
│   └── skillsTreeProvider.ts # Tree view provider for skills
├── services/
│   └── githubService.ts      # GitHub API service
├── models/
│   └── skill.ts              # Skill data model
└── commands/
    └── skillCommands.ts      # Command handlers

License

MIT

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft