Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

detectdetect 搜索

Agent Skill

detect 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,738

周安装

71

GitHub Stars

7

下载量

562
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:detect(detect 搜索)
来源仓库:https://github.com/launchdarkly/agent-skills
仓库路径:skills/detect
安装命令:
npx skills add https://github.com/launchdarkly/agent-skills --skill detect
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/launchdarkly/agent-skills --skill detect

简介

detect 用于识别项目技术栈及 LaunchDarkly SDK 集成状态,辅助初始化配置。

  • 适合新项目接入 LaunchDarkly 前的环境检测与依赖分析。
  • 通过扫描文件特征判断语言和框架,指导后续集成步骤。
  • 安装前应确认项目根目录可读,避免在受限环境中触发额外文件访问。
  • detect 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Detect repository stack (SDK install)

Before 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.

1. Language and framework

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:

FileLanguage/Framework
package.jsonJavaScript/TypeScript (check for React, Next.js, Vue, Angular, Express, React Native, Electron, etc.)
requirements.txt, pyproject.toml, Pipfile, setup.pyPython (check for Django, Flask, FastAPI)
go.modGo (check for Gin, Echo, Fiber, Chi)
pom.xml, build.gradle, build.gradle.ktsJava/Kotlin (check for Spring, Quarkus, Android)
GemfileRuby (check for Rails, Sinatra)
*.csproj, *.sln, *.fsproj.NET/C# (check for ASP.NET, MAUI, Xamarin, WPF, UWP)
composer.jsonPHP (check for Laravel, Symfony)
Cargo.tomlRust (check for Actix, Axum, Rocket)
pubspec.yamlFlutter/Dart
Package.swift, Podfile, *.xcodeprojSwift/iOS
AndroidManifest.xmlAndroid (also check build.gradle for com.android)
rebar.config, mix.exsErlang/Elixir
CMakeLists.txt, Makefile (with C/C++ patterns)C/C++ (check for #include patterns)
*.cabal, stack.yamlHaskell
*.lua, rockspecLua
manifest, *.brsRoku (BrightScript)
wrangler.tomlCloudflare Workers (edge SDK)
vercel.json with edge functionsVercel 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.

  • question: "I couldn't detect the project's language or framework. Which SDK would you like to use?"
  • options: Present the available SDKs from SDK recipes as selectable options.
  • STOP. Do not write the question as text. Do not continue until the user selects an option.

2. Package manager

Identify how the project installs dependencies:

IndicatorPackage Manager
package-lock.jsonnpm
yarn.lockyarn
pnpm-lock.yamlpnpm
bun.lockbbun
Pipfile.lockpipenv
poetry.lockpoetry
go.sumgo modules
Gemfile.lockbundler

Use the detected package manager for all install commands. If multiple lock files exist, prefer the one that was most recently modified.

3. Monorepo layout

Some repositories host multiple packages or services. Look for these indicators:

File / patternTool or layout
pnpm-workspace.yamlpnpm workspaces
lerna.jsonLerna
nx.jsonNx
turbo.jsonTurborepo
rush.jsonRush
packages/ directory with multiple package.json filesGeneric monorepo

When any of these apply, do not assume the repo root is the integration target:

D5 -- BLOCKING: Call your structured question tool now.

  • question: "This is a monorepo. Which package, app, or service should I integrate LaunchDarkly into?"
  • options: List the discovered packages/apps as selectable options.
  • STOP. Do not write the question as text. Do not continue until the user selects an option.

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.

4. Application entrypoint

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:

  • Node.js (server): Check package.json "main" field, or look for index.js, server.js, app.js, src/index.ts
  • NestJS: Look for src/main.ts or src/main.js
  • Python: Look for app.py, main.py, manage.py, wsgi.py, or the [tool.poetry.scripts] section
  • Go: Look for main.go or cmd/*/main.go
  • Java: Search for public static void main or @SpringBootApplication
  • Ruby: Look for config.ru, config/application.rb
  • React/Vue/Angular: Look for src/index.tsx, src/main.tsx, src/App.tsx, src/main.ts
  • Next.js: App Router -- app/layout.tsx or app/layout.js (root layout). Pages Router -- pages/_app.tsx or pages/_app.js
  • React Native: Look for App.tsx, App.js, index.js (with AppRegistry.registerComponent)
  • Electron: Check package.json "main"; common paths include main.js or src/main.ts
  • JavaScript (browser): Look for index.html, src/index.js, or bundler entry in webpack.config.js / vite.config.ts
  • Flutter: Look for lib/main.dart
  • Swift/iOS: Look for AppDelegate.swift, SceneDelegate.swift, or @main struct
  • Android: Look for MainActivity.java or MainActivity.kt

5a. Classify workspace confidence

After sections 1-4, classify the workspace into one of three states before continuing. This classification determines how the rest of the flow proceeds.

StateMeaningCriteria
Clear appA runnable application was foundLanguage/framework detected, a real entrypoint exists, dependency manifest is present with application dependencies
Unclear / weak evidenceSomething is present but it does not clearly represent a runnable appStray 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 foundNo recognizable application structure was detectedNo 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:

  • A package.json with no scripts section and no application source files
  • A lone requirements.txt in a directory of data files or notebooks
  • Config, theme, or fixture directories with manifests that do not represent a runnable service
  • Monorepo roots where the real apps live in subdirectories but none was selected

Branching by state:

D5-UNCLEAR -- BLOCKING: Call your structured question tool now.

  • question: "I found some project files, but I'm not confident I've identified the right application to integrate. Can you point me to the correct app folder?"
  • context: Briefly describe what you found and why it's ambiguous (e.g., "There's a package.json at the root, but it has no start script and no application source files").
  • options:

- Present any candidate folders you detected as selectable options - "It's somewhere else -- I'll tell you the path" - "There is no app yet -- help me create a demo"

  • STOP. Do not make code changes, install packages, or generate an integration plan until the user confirms the target. Do not continue until the user selects an option.

After the user points to the correct folder, re-run detection (sections 1-4) scoped to that folder.

  • No app found:

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.

  • question: "I didn't find a runnable application in this workspace. How would you like to proceed?"
  • options:

- "Point me to the right folder -- the app is somewhere else" - "Create a minimal demo app so I can try LaunchDarkly"

  • STOP. Do not continue until the user selects an option.

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.

6. Existing LaunchDarkly SDK

Search the codebase for existing LaunchDarkly usage:

Search for: launchdarkly, ldclient, ld-client, LDClient, @launchdarkly, launchdarkly-

Check:

  • Is the SDK already in the dependency file?
  • Is there initialization code?
  • Is it properly configured or partially set up?
  • Are there already feature flag evaluations?

SDK confirmation

After detecting the stack, confirm the SDK choice with the user:

  • If one SDK is clearly the right fit: Present your recommendation and get confirmation:

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:

- "Yes, proceed with that SDK" -> continue to plan - "No, I want a different one" -> let user specify

  • 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):

- If the user already asked for both (e.g. "frontend and backend," "server + browser," "API and SPA"): Treat that as a dual-SDK scope. Proceed to Generate integration plan with both SDKs in scope -- do not plan or implement only one and assume the other is "covered." - If scope is unclear:

D5 -- BLOCKING: Call your structured question tool now.

  • question: "This project has both server-side and client-side surfaces. Which do you want to integrate?"
  • options:

- "Server-side only" - "Client-side only" - "Both server-side and client-side"

  • STOP. Do not write the question as text. Do not continue until the user selects an option.

If they choose both, the plan must include two concrete integrations (see plan: Dual SDK integrations).

  • If you cannot determine the right SDK: Present the available options from the SDK recipes as selectable options in your question tool and use the same blocking pattern above.

Decision tree

After detection and confirmation:

  • No app found or unclear --> Already handled by D5-NOAPP / D5-UNCLEAR in section 5a. Do not proceed to plan until the user confirms a real app target.
  • SDK already installed and initialized --> Skip to Create first feature flag (parent Step 6)
  • SDK installed but not initialized --> Skip to Apply code changes (just add init code)
  • SDK not present --> Continue to Generate integration plan
  • Multiple targets detected (e.g., frontend + backend) --> If the user wants both SDKs (confirmed via D5 above), continue to Generate integration plan with dual-SDK scope (two packages, two entrypoints). If they want one surface only, plan for that single SDK.
  • Language not detected --> Already handled by the D5 blocking question in section 1.

Upon completion (normal path): Generate integration plan

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.19%
按下载量换算192

Claude

27.05%
按下载量换算152

Cursor

19.57%
按下载量换算110

Gemini CLI

9.99%
按下载量换算56

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills