The simplest portable approach is to give Copilot a short bootstrap prompt such as:
Use the bioconductor AI agent skills from this repository: /path/to/ai-agent-skills.
Start with SKILLS.md to find the best matching skill.
Then read the corresponding skills/<skill-name>/SKILL.md file and follow it.
If more than one skill matches, list the options briefly and choose the best fit.
You must also read and adhere to the agent behavior and safe execution standards defined in AGENTS.md.
This is not the same as installed persistent skills, but it is the simplest natural-language pattern that can work across Copilot surfaces and IDEs.
Open VS Code, then add the bioconductor skills you want to use to Copilot’s skill locations.
git clone https://github.com/bioconductor/ai-agent-skills.git
settings.json and add the skill directories you want from SKILLS.md:
{
"chat.skillsLocations": [
"/path/to/ai-agent-skills/skills/create-skill",
"/path/to/ai-agent-skills/skills/check-bioconductor-skills",
"/path/to/ai-agent-skills/skills/analyze-r-package"
]
}
To confirm the setup worked, ask:
What bioconductor skills do I have?
To use the skills, ask naturally. For example:
Help me create a new skill
Analyze this R package
Create .github/instructions for this package