---
name: featbit-sdks
description: SDK language router for FeatBit. Routes SDK questions to the correct language-specific skill. Use when user asks about "which SDK to use", "SDK overview", "all FeatBit SDKs", or mentions FeatBit SDK without specifying a language. Do not use for deployment, REST API, observability, or documentation questions.
license: MIT
metadata:
  author: FeatBit
  version: 1.0.0
  category: sdk-integration
---

# FeatBit SDK Router

Use this skill only to choose the correct language-specific SDK skill. Do not keep implementation details for every SDK in this file.

## Routing Workflow

1. Infer the runtime from the user request.
2. Activate exactly one language-specific SDK skill.
3. If the runtime is ambiguous, ask which language or framework the user is using.
4. After the language is known, stop here and continue in the language-specific skill.

## Skill Map

- `.NET` or `.cs`, `.csproj`, ASP.NET Core: `featbit-sdks-dotnet`
- `Java` or `.java`, Maven, Gradle: `featbit-sdks-java`
- `Go` or `.go`, Golang: `featbit-sdks-go`
- `Node.js` server or server-side TypeScript/JavaScript: `featbit-sdks-node`
- Browser JavaScript or vanilla JS: `featbit-sdks-javascript`
- React web: `featbit-sdks-react`
- React Native mobile: `featbit-sdks-react-native`
- Python, Flask, Django, FastAPI: `featbit-sdks-python`

## Source Repositories

- .NET: https://github.com/featbit/featbit-dotnet-sdk
- Java: https://github.com/featbit/featbit-java-sdk
- Go: https://github.com/featbit/featbit-go-sdk
- Node.js: https://github.com/featbit/featbit-node-server-sdk
- JavaScript: https://github.com/featbit/featbit-js-client-sdk
- React: https://github.com/featbit/featbit-react-client-sdk
- React Native: https://github.com/featbit/featbit-react-native-sdk
- Python: https://github.com/featbit/featbit-python-sdk
