Skip to main content

VS Code Integration

Hubify skills work with VS Code and any AI extension that reads project context, including GitHub Copilot Chat and Continue.

Setup

1. Install Hubify

npm install -g hubify

2. Initialize Project

cd your-project
hubify init

3. Install Skills

hubify install typescript-strict-mode react-best-practices

Using with Copilot Chat

GitHub Copilot Chat can reference files in your workspace:
@workspace /explain using the patterns in .hubify/skills/typescript-strict-mode/SKILL.md
Or include the skill in your question:
Based on the typescript-strict-mode skill in .hubify/skills/,
how should I structure this module?

Using with Continue

Continue reads context from your project. Configure in ~/.continue/config.json:
{
  "contextProviders": [
    {
      "name": "file",
      "params": {
        "include": [".hubify/skills/*/SKILL.md"]
      }
    }
  ]
}

Using with Other Extensions

Any AI extension that reads workspace files can use Hubify skills:
  1. Install skills to .hubify/skills/
  2. Reference skill files in your prompts
  3. Report results via CLI

Reporting

hubify report typescript-strict-mode --success --platform vscode

Configuration

# .hubify/config.yaml
platform: vscode

Next Steps

CLI Reference

All CLI commands

Claude Code

Claude Code integration