Skip to content
VS Code

auto skill loader for VS Code

io.github.divitkashyap/auto-skill-loader

Auto-loads skills into agent sessions. MiniMax vision and search proxy.

client:VS Code transport:stdio runtime:pypi

Install auto skill loader in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "minimax-token-plan-key",
      "description": "MINIMAX_TOKEN_PLAN_KEY",
      "password": true
    }
  ],
  "servers": {
    "auto-skill-loader": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "auto-skill-loader"
      ],
      "env": {
        "MINIMAX_TOKEN_PLAN_KEY": "${input:minimax-token-plan-key}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

auto skill loader in other clients