flipswitch-status

📁 flipswitch-io/skills 📅 7 days ago
1
总安装量
1
周安装量
#52988
全站排名
安装命令
npx skills add https://github.com/flipswitch-io/skills --skill flipswitch-status

Agent 安装分布

amp 1
opencode 1
kimi-cli 1
codex 1
github-copilot 1
claude-code 1

Skill 文档

Show an overview of feature flags in a Flipswitch project.

All Flipswitch MCP tools below (authenticate, list_organizations, etc.) are on the flipswitch MCP server — call them as MCP tools, not as skills.

UX rule: Whenever you need to ask the user to choose between options (e.g. selecting an organization or project), use the AskUserQuestion tool to present a selection UI instead of asking in plain text.

Instructions

0. Verify MCP Server Configuration

Attempt to call the authenticate tool as a connectivity check.

  • If successful: ✅ MCP server is configured. Proceed to step 1.
  • If it fails with “tool not found” or similar: ❌ MCP server is NOT configured. Run this in your terminal:
    claude mcp add --scope user --transport http flipswitch https://mcp.flipswitch.io/mcp
    
    Then restart Claude Code and retry this skill.
  • If it fails with a network error: ⚠️ MCP server is configured but unreachable. Check your internet connection.

1. Authenticate

Call the authenticate tool. If not authenticated, follow the device flow (show URL and code, then retry).

2. Select organization and project

  1. Call list_organizations. If only one, use it. Otherwise, ask the user.
  2. Call list_projects with the selected org. If only one, use it. Otherwise, ask the user.

3. Get flag overview

Call flag_overview with the org and project IDs. This returns a table with:

  • Each flag’s on/off status per environment
  • [T] indicator for flags with targeting rules
  • [R] indicator for flags with rollout/variants

4. Display results

Show the table returned by flag_overview directly to the user. The tool already formats it as a markdown table with a legend.