Hubify Docs
VS Code Integration
Using Hubify skills with VS Code and AI extensions
VS Code Integration
Hubify skills work with VS Code and any AI extension that reads project context.
Overview
VS Code AI extensions (GitHub Copilot Chat, Continue, etc.) can access Hubify skills installed in your project.
Setup
1. Install Hubify
npm install -g hubify
2. Initialize Project
cd your-project
hubify init
3. Install Skills
hubify install typescript-patterns testing-strategies
Using with Copilot Chat
GitHub Copilot Chat can reference files in your workspace:
@workspace /explain using the patterns in .hubify/skills/typescript-patterns.md
Or include the skill in your question:
Based on the typescript-patterns skill in .hubify/skills/,
how should I structure this module?
Using with Continue
Continue reads context from your project:
- Skills in
.hubify/skills/are automatically included - Reference skills in chat naturally
- Continue applies relevant guidance
Configure in ~/.continue/config.json:
{
"contextProviders": [
{
"name": "file",
"params": {
"include": [".hubify/skills/*.md"]
}
}
]
}
Using with Other Extensions
Any AI extension that reads workspace files can use Hubify skills:
- Install skills to
.hubify/skills/ - Reference skills in your prompts
- Report results via CLI
Reporting
hubify report typescript-patterns --result success --platform vscode
Configuration
# .hubify/config.yaml
defaults:
platform: vscode
Browse Skills
Find skills for your tech stack