Token导航 LogoToken导航TokenDH.com
前端设计敏感数据github未标认证来源可访问许可证需确认审计异常

gleap-sdk-setupgleap SDK 设置

Agent Skill

gleap-sdk-setup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,645

周安装

107

GitHub Stars

公开资料未说明

下载量

830
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/gleapsdk/agent-skills --skill gleap-sdk-setup

简介

gleap-sdk-setup 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理仓库状态和协作事项。

  • 适用于需要围绕代码变更、仓库维护或团队协作进行信息整理的场景。
  • 通过 npx skills add 命令安装,需确认权限范围和维护状态后再使用。
  • 建议结合原始 README 核验具体用法,注意是否触发联网或文件读写操作。
  • 安装前应评估是否会执行命令或访问外部资源,确保符合安全策略。

SKILL.md

Gleap SDK Setup

Guides users through integrating the Gleap SDK into their project. Supports JavaScript, iOS, Android, React Native, Flutter, Ionic/Capacitor, Cordova, and FlutterFlow.

Platform Detection

Detect the user's platform before proceeding. If the user explicitly states their platform, skip detection.

Auto-Detection Priority

Check in this order (first match wins):

  1. pubspec.yaml exists?

- Contains flutterflow references or user mentions FlutterFlow -> FlutterFlow (platform-flutterflow.md) - Otherwise -> Flutter (platform-flutter.md)

  1. package.json exists? Read it and check dependencies + devDependencies:

- react-native present -> React Native (platform-react-native.md) - @capacitor/core or capacitor-core present -> Ionic/Capacitor (platform-ionic-capacitor.md) - cordova present, or config.xml exists with <widget> -> Cordova (platform-cordova.md) - @angular/core present -> JavaScript (Angular) - react present (without react-native) -> JavaScript (React) - vue present -> JavaScript (Vue) - next present -> JavaScript (Next.js) - nuxt present -> JavaScript (Nuxt) - Other or no framework -> JavaScript (generic npm) - Use platform-javascript.md for all JavaScript variants

  1. ***.xcodeproj, *.xcworkspace, or Podfile exists? -> iOS** (platform-ios.md)
  2. build.gradle, build.gradle.kts, or app/build.gradle exists? -> Android (platform-android.md)
  3. index.html exists (no package.json)? -> JavaScript CDN approach (platform-javascript.md)
  4. Server-side web framework detected? These all use the JavaScript SDK on the client side (platform-javascript.md):

- composer.json exists (PHP / Laravel) — use CDN or npm depending on whether a JS build pipeline exists - Gemfile with rails (Ruby on Rails) — use CDN in layouts, or npm if Webpacker/esbuild/importmap is present - requirements.txt / pyproject.toml with django or flask (Python) — use CDN in base templates - *.cshtml / *.csproj files (.NET / ASP.NET) — use CDN in layout views - pom.xml / build.gradle with Spring Boot (Java) — use CDN in Thymeleaf templates - Any other web framework (Go, Elixir/Phoenix, etc.) — use CDN approach - Note: If the project also has a package.json with a frontend framework, step 2 already covers this.

  1. Nothing detected -> Ask the user which platform they are targeting.

Detection Commands

Use Glob to scan for key files:

  • pubspec.yaml
  • package.json
  • **/*.xcodeproj
  • **/*.xcworkspace
  • Podfile
  • build.gradle
  • build.gradle.kts
  • app/build.gradle
  • config.xml
  • index.html
  • composer.json
  • Gemfile
  • requirements.txt
  • pyproject.toml

If package.json is found, use Read to inspect its dependencies and devDependencies keys.

API Key Resolution

Before asking the user for their API key, check these locations in order:

  1. User provided it in the conversation (e.g., "add Gleap with token abc123") — use it directly
  2. .env file in the project root — look for GLEAP_API_KEY=...
  3. Environment variable — check if GLEAP_API_KEY is set via echo $GLEAP_API_KEY
  4. Not found — ask the user to provide their API key (available at https://app.gleap.io under Project Settings > Security > API Key)

When a key is found or provided, offer to save it to the project's .env file (creating it if needed, and adding .env to .gitignore if not already there) so it's available for future use.

Workflow

Follow these steps in order:

  1. Fetch latest SDK versions: Run scripts/get-latest-versions.sh from this skill's directory. Use the returned versions in all install commands instead of hardcoded version numbers.
  2. Detect platform using the priority rules above.
  3. Resolve API key using the API Key Resolution steps above.
  4. Confirm with user: State the detected platform and ask for confirmation. If the user already specified a platform, skip this step.
  5. Read platform guide: Read the matching platform-{name}.md file from this skill's directory.
  6. Install SDK: Walk the user through installing the dependency using the latest version from step 1. Run install commands when the user approves. Verify installation succeeded.
  7. Initialize SDK: Add initialization code using the resolved API key.
  8. Configure platform: Apply required permissions, manifest entries, or additional config from the platform guide.
  9. Verify: Suggest building/running the project to confirm integration works.

Post-Setup API Guidance

After setup, if the user asks about using the Gleap API, refer to the "Common API Usage" section in the relevant platform file. The most common tasks are:

  • Identify users: Associate sessions with user data (name, email, plan, custom data)
  • Track events: Log custom events at key points in the app
  • Custom data: Attach contextual data to feedback tickets
  • Widget control: Programmatically open/close the Gleap widget

Re-read the platform file's API section for the correct method signatures, as they differ between platforms.

Important Notes

  • initialize() must be called exactly once in the application lifecycle
  • For cross-platform frameworks (React Native, Flutter, Ionic/Capacitor), both iOS and Android platform-specific configuration (permissions) is needed
  • The JavaScript CDN approach works for any web context and does not require npm
  • For identity verification, the user hash must be generated server-side using the project's secret key
  • Custom data supports only primitive values (strings, numbers, booleans) with a max of 35 keys

Common Troubleshooting

  • pod install fails: Run pod repo update first, then retry
  • Gradle sync fails: Ensure minSdkVersion is at least 21
  • Flutter version conflict: Add tools:overrideLibrary="io.gleap.gleap_sdk" to AndroidManifest.xml
  • Widget not showing on web: Check Content Security Policy headers allow sdk.gleap.io
  • Soft-reload clears widget (Rails/Turbo): Call Gleap.getInstance().softReInitialize() after reload
  • Android hardware acceleration: Do not set android:hardwareAccelerated="false" at application level

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.12%
按下载量换算316

Claude

27.53%
按下载量换算228

Cursor

19.59%
按下载量换算163

Gemini CLI

8.28%
按下载量换算69

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills