Skip to content

Flipswitch feature flag skills for AI coding tools

Notifications You must be signed in to change notification settings

flipswitch-io/skills

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Flipswitch Skills

Flipswitch feature flags for your AI coding tool. Create, manage, and integrate feature flags without leaving your editor.

Skills included

Skill Description
/flipswitch-setup Detect your language, install the SDK, write init code, create an example flag
/flipswitch-create Create a new feature flag and get evaluation code
/flipswitch-status Overview of all flags with on/off status per environment
/flipswitch-toggle Enable or disable a flag in a specific environment

Installation

Step 1: Install Skills

npx skills add flipswitch-io/skills

This works with Claude Code, GitHub Copilot, Cursor, VS Code, and any tool that supports Agent Skills.

Step 2: Configure the MCP Server

The skills communicate with Flipswitch through an MCP server. Configure it for your tool:

Claude Code

claude mcp add --scope user --transport http flipswitch https://mcp.flipswitch.io/mcp

Then restart Claude Code or run /mcp reload.

GitHub Copilot

Add to .vscode/mcp.json:

{
  "servers": {
    "flipswitch": {
      "type": "http",
      "url": "https://mcp.flipswitch.io/mcp"
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "flipswitch": {
      "url": "https://mcp.flipswitch.io/mcp"
    }
  }
}

Codex

Add to ~/.codex/config.toml:

[mcp_servers.flipswitch]
url = "https://mcp.flipswitch.io/mcp"

Other Tools

Consult your tool's documentation for how to add an HTTP MCP server, then point it at https://mcp.flipswitch.io/mcp.

Step 3: Verify

Run /flipswitch-setup to verify the MCP server is accessible. The skill will test connectivity and guide you through SDK setup.

MCP Tools

The Flipswitch MCP server provides these tools:

  • authenticate -- Device-flow auth with Flipswitch
  • list_organizations -- List your organizations
  • list_projects -- List projects in an org
  • list_environments -- List environments in a project
  • get_sdk_api_key -- Get the SDK API key for an environment
  • get_sdk_setup_snippet -- Get install/init/eval code for a language
  • list_flags -- List all flags in a project
  • create_flag -- Create a new feature flag
  • toggle_flag -- Enable or disable a flag in an environment
  • flag_overview -- Status table of all flags across environments

Links

About

Flipswitch feature flag skills for AI coding tools

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published