Documentation ยท providers

Install once in the agent you use.

VitaeContext generates the folder and command layout expected by each supported environment.

npm install

Choose the environment where your agent runs.

The CLI writes each provider's expected folder and command layout from the same runtime skill source, or connects via stateless MCP.

npx vitaecontext install --provider <provider>

Install targets

Supported providers

11 supported agent environments. Use the exact provider value shown on each card, or connect via MCP.

Direct install + native plugin

Codex

Installs named skill folders into Codex skill directories. A cloned repository also exposes the same eight skills through a native Codex plugin marketplace.

Install
npx vitaecontext install --provider codex
Example
$vitaecontext-github
$vitaecontext-vitaegraph

Direct skills and the native plugin share one generated runtime source; exact activation depends on the Codex surface.

Default path~/.agents/skills/ + CODEX_HOME/skills or ~/.codex/skills/
Direct install + plugin

Claude Code

Copies skill folders into Claude Code's skill location. Claude may auto-select from skill metadata, but explicit naming is the safest invocation path.

Install
npx vitaecontext install --provider claude-code
Example
Use the vitaecontext-vitaegraph skill to plan my private career graph.

Ask for the installed skill explicitly by its full namespaced name.

MCP Config (CLI command)
claude mcp add vitaecontext -- npx -y vitaecontext-mcp
Default path~/.claude/skills/
Direct install + MCP

Cursor

Installs shared skills and project rules for Cursor AI. Seamlessly integrates with Cursor's native MCP feature for cross-workspace context.

Install
npx vitaecontext install --provider cursor
Example
Use the installed vitaecontext-github skill or query via MCP.

Supports both workspace rules in .cursor/skills/ and global MCP server registration.

MCP Config (Settings -> Features -> MCP Servers)
Name: vitaecontext | Type: command | Command: npx -y vitaecontext-mcp
Default path~/.cursor/skills/ or .cursor/skills/
Direct install + MCP

Windsurf

Installs shared skills into Windsurf Cascade workspaces and global configs, with support for native Cascade MCP server integration.

Install
npx vitaecontext install --provider windsurf
Example
Use vitaecontext-cv to tailor my resume for this project.

Supports Cascade skills in .windsurf/skills/ and stdio MCP server in mcp_config.json.

MCP Config (~/.codeium/windsurf/mcp_config.json)
{
  "mcpServers": {
    "vitaecontext": {
      "command": "npx",
      "args": ["-y", "vitaecontext-mcp"]
    }
  }
}
Default path~/.codeium/windsurf/skills/ or .windsurf/skills/
Direct install + MCP

Roo Code / Cline

Installs skill folders for Roo Code and Cline AI assistants in VS Code, with native stdio MCP server support.

Install
npx vitaecontext install --provider roo-code
Example
Use vitaecontext-portfolio to audit my site crawlability.

Supports project-level .roo/skills/ or personal global skills and MCP settings.

MCP Config (cline_mcp_settings.json)
{
  "mcpServers": {
    "vitaecontext": {
      "command": "npx",
      "args": ["-y", "vitaecontext-mcp"]
    }
  }
}
Default path~/.config/roo-code/skills/ or .roo/skills/
Extension install

Gemini CLI

Installs a named Gemini CLI extension with TOML command files and skill folders. Adds namespaced slash commands for each surface.

Install
npx vitaecontext install --provider gemini-cli
Example
/vitaecontext:github
/vitaecontext:vitaegraph
/vitaecontext:cv

Commands are namespaced under /vitaecontext: for each skill surface.

Default path~/.gemini/extensions/vitaecontext/
Plugin install + MCP

Antigravity

Installs a plugin layout into Antigravity CLI plugin staging path with Gemini-compatible commands and native MCP support.

Install
npx vitaecontext install --provider antigravity
Example
Use the installed vitaecontext-vitaegraph plugin skill to validate my graph.

Reference the installed plugin skill by name, or configure the MCP server in mcp_config.json.

MCP Config (~/.gemini/antigravity-cli/mcp_config.json)
{
  "mcpServers": {
    "vitaecontext": {
      "command": "npx",
      "args": ["-y", "vitaecontext-mcp"]
    }
  }
}
Default path~/.gemini/antigravity-cli/plugins/vitaecontext/
Direct install

OpenCode

Installs skill folders into the OpenCode skills directory plus Markdown command wrapper files for flat slash-command invocation.

Install
npx vitaecontext install --provider opencode
Example
/vitaecontext-github
/vitaecontext-vitaegraph
/vitaecontext-context

Flat command wrappers use a hyphenated prefix for direct slash invocation.

Default path~/.config/opencode/skills/
Direct install + MCP

IBM Bob

Installs skill folders and rules for IBM Bob / watsonx Code Assistant with enterprise-ready MCP server support.

Install
npx vitaecontext install --provider ibm-bob
Example
Use vitaecontext-build to structure my career context.

Configurable locally in .ibm/skills/ or globally with watsonx MCP server.

MCP Config (.ibm/mcp_config.json)
{
  "mcpServers": {
    "vitaecontext": {
      "command": "npx",
      "args": ["-y", "vitaecontext-mcp"]
    }
  }
}
Default path~/.ibm/skills/ or .ibm/skills/
Direct install + MCP

xAI Grok

Installs skills for xAI Grok Agent environments and developer tools with stdio Model Context Protocol support.

Install
npx vitaecontext install --provider grok
Example
Use vitaecontext-x to audit my profile positioning and posts.

Supports project-level .grok/skills/ or developer MCP configurations.

MCP Config (.grok/mcp_config.json)
{
  "mcpServers": {
    "vitaecontext": {
      "command": "npx",
      "args": ["-y", "vitaecontext-mcp"]
    }
  }
}
Default path~/.grok/skills/ or .grok/skills/
Export target

Shared bundle

Exports portable standard SKILL.md folders to any target directory following the agentskills.io open specification.

Install
npx vitaecontext install --provider shared --target-dir ./skills
Example
Copy or reference the relevant SKILL.md folder for your agent.

No default global path - you control where the portable skill folders land.

Default pathrequires --target-dir

Claude Code

Plugin marketplace option

Claude Code users can install through its plugin marketplace instead of the npm install command.

/plugin marketplace add vitaecontext/vitaecontext
/plugin install vitaecontext@vitaecontext