Detect repository stack for LaunchDarkly SDK onboarding: languages, frameworks, package managers, monorepo targets, entrypoints, existing LD usage. Nested under sdk-install; next is plan.
81
76%
Does it follow best practices?
Impact
85%
0.98xAverage score across 3 eval scenarios
Passed
No known issues
Optimize this skill with Tessl
npx tessl skill review --optimize ./skills/onboarding/sdk-install/detect/SKILL.mdBefore installing anything, you must understand the project. Identify what the project is built with and whether LaunchDarkly is already present.
This skill is nested under LaunchDarkly SDK Install (onboarding); the parent Step 1 is detect. Next: Generate integration plan unless the decision tree sends you elsewhere.
Look for the indicator files below (and related root layout), then read the relevant manifests to infer language and framework.
Look for these files to identify the stack:
| File | Language/Framework |
|---|---|
package.json | JavaScript/TypeScript (check for React, Next.js, Vue, Angular, Express, React Native, Electron, etc.) |
requirements.txt, pyproject.toml, Pipfile, setup.py | Python (check for Django, Flask, FastAPI) |
go.mod | Go (check for Gin, Echo, Fiber, Chi) |
pom.xml, build.gradle, build.gradle.kts | Java/Kotlin (check for Spring, Quarkus, Android) |
Gemfile | Ruby (check for Rails, Sinatra) |
*.csproj, *.sln, *.fsproj | .NET/C# (check for ASP.NET, MAUI, Xamarin, WPF, UWP) |
composer.json | PHP (check for Laravel, Symfony) |
Cargo.toml | Rust (check for Actix, Axum, Rocket) |
pubspec.yaml | Flutter/Dart |
Package.swift, Podfile, *.xcodeproj | Swift/iOS |
AndroidManifest.xml | Android (also check build.gradle for com.android) |
rebar.config, mix.exs | Erlang/Elixir |
CMakeLists.txt, Makefile (with C/C++ patterns) | C/C++ (check for #include patterns) |
*.cabal, stack.yaml | Haskell |
*.lua, rockspec | Lua |
manifest, *.brs | Roku (BrightScript) |
wrangler.toml | Cloudflare Workers (edge SDK) |
vercel.json with edge functions | Vercel Edge (edge SDK) |
Read the dependency file to identify the specific framework. For package.json, check both dependencies and devDependencies.
If you cannot identify the language or framework:
D5 -- BLOCKING: Call your structured question tool now.
Identify how the project installs dependencies:
| Indicator | Package Manager |
|---|---|
package-lock.json | npm |
yarn.lock | yarn |
pnpm-lock.yaml | pnpm |
bun.lockb | bun |
Pipfile.lock | pipenv |
poetry.lock | poetry |
go.sum | go modules |
Gemfile.lock | bundler |
Use the detected package manager for all install commands. If multiple lock files exist, prefer the one that was most recently modified.
Some repositories host multiple packages or services. Look for these indicators:
| File / pattern | Tool or layout |
|---|---|
pnpm-workspace.yaml | pnpm workspaces |
lerna.json | Lerna |
nx.json | Nx |
turbo.json | Turborepo |
rush.json | Rush |
packages/ directory with multiple package.json files | Generic monorepo |
When any of these apply, do not assume the repo root is the integration target:
D5 -- BLOCKING: Call your structured question tool now.
Then run the rest of this detect step -- language, package manager, entrypoint, and SDK search -- in that target directory (and its subtree), not only at the root.
Find the main file where the application starts. In a monorepo, apply the patterns below within the chosen package after section 3 Monorepo layout. Common patterns:
package.json "main" field, or look for index.js, server.js, app.js, src/index.tssrc/main.ts or src/main.jsapp.py, main.py, manage.py, wsgi.py, or the [tool.poetry.scripts] sectionmain.go or cmd/*/main.gopublic static void main or @SpringBootApplicationconfig.ru, config/application.rbsrc/index.tsx, src/main.tsx, src/App.tsx, src/main.tsapp/layout.tsx or app/layout.js (root layout). Pages Router -- pages/_app.tsx or pages/_app.jsApp.tsx, App.js, index.js (with AppRegistry.registerComponent)package.json "main"; common paths include main.js or src/main.tsindex.html, src/index.js, or bundler entry in webpack.config.js / vite.config.tslib/main.dartAppDelegate.swift, SceneDelegate.swift, or @main structMainActivity.java or MainActivity.ktAfter sections 1-4, classify the workspace into one of three states before continuing. This classification determines how the rest of the flow proceeds.
| State | Meaning | Criteria |
|---|---|---|
| Clear app | A runnable application was found | Language/framework detected, a real entrypoint exists, dependency manifest is present with application dependencies |
| Unclear / weak evidence | Something is present but it does not clearly represent a runnable app | Stray or minimal package.json (e.g. only devDependencies, no scripts), isolated config/manifest files, theme or config-only folders, token/fixture JSON, lockfiles without corresponding source, or multiple conflicting indicators with no dominant app structure |
| No app found | No recognizable application structure was detected | No dependency manifests, no entrypoints, no source files matching known patterns, or the workspace is empty / contains only documentation |
Weak evidence must not be treated as confirmation. Examples of weak evidence:
package.json with no scripts section and no application source filesrequirements.txt in a directory of data files or notebooksBranching by state:
Clear app → continue to section 6 (Existing LaunchDarkly SDK) and then SDK confirmation.
Unclear / weak evidence:
D5-UNCLEAR -- BLOCKING: Call your structured question tool now.
package.json at the root, but it has no start script and no application source files").After the user points to the correct folder, re-run detection (sections 1-4) scoped to that folder.
Tell the user clearly: "I didn't find a runnable application in this workspace." Then offer two paths:
D5-NOAPP -- BLOCKING: Call your structured question tool now.
If the user chooses "point me to the right folder," re-run detection scoped to the path they provide. If they choose "create a demo app," create a minimal runnable app in a new subfolder (e.g. launchdarkly-demo/) using the simplest stack you can scaffold (Node.js + Express or a static HTML page are good defaults), then continue detection from that subfolder.
Do not declare onboarding complete unless the app target has been confirmed and the app can actually run.
Search the codebase for existing LaunchDarkly usage:
Search for: launchdarkly, ldclient, ld-client, LDClient, @launchdarkly, launchdarkly-Check:
After detecting the stack, confirm the SDK choice with the user:
D5 -- BLOCKING: Call your structured question tool now.
question: "Based on what I found, I recommend the [SDK name] SDK. Does that look right?"
options:
STOP. Do not write the question as text. Do not continue until the user selects an option.
If multiple SDKs could apply (e.g., a Next.js project with both server and client components):
D5 -- BLOCKING: Call your structured question tool now.
If they choose both, the plan must include two concrete integrations (see plan: Dual SDK integrations).
After detection and confirmation:
Upon completion (normal path): Generate integration plan
24e9c7e
If you maintain this skill, you can claim it as your own. Once claimed, you can manage eval scenarios, bundle related skills, attach documentation or rules, and ensure cross-agent compatibility.