← 返回 Skills 市场
🔌

LaunchDarkly

作者 OOMOL · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ 安全检测通过
37
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install oo-launch-darkly
功能描述
LaunchDarkly (launchdarkly.com). Use this skill for ANY LaunchDarkly request — reading, creating, updating, and deleting data. Whenever a task involves Launc...
使用说明 (SKILL.md)

LaunchDarkly

Operate LaunchDarkly through your OOMOL-connected account. This skill calls the launch_darkly connector with the oo CLI; OOMOL injects credentials server-side, so you never handle raw tokens.

Category: Developer Tools. Exposes 40 action(s).

Running an action

Assume the user has already installed the oo CLI, signed in, and connected LaunchDarkly. Do not run oo auth login or open the connection URL proactively — just run the action. Fall back to First-time setup only when a command actually fails with an auth or connection error.

1. Inspect the contract to get the authoritative input/output schema before building a payload:

oo connector schema "launch_darkly" --action "\x3Caction_name>"

2. Run the action with a JSON payload that matches the input schema:

oo connector run "launch_darkly" --action "\x3Caction_name>" --data '\x3Cjson>' --json
  • --data takes a JSON object string or @path/to/file.json; omit it to send {}.
  • The response is { "data": ..., "meta": { "executionId": "..." } }; the execution id lives under meta.executionId.

Each action below links to a reference file with its purpose and exact commands. Read the linked file, then fetch the live schema with oo connector schema before constructing --data.

Available actions

  • add_member_to_teams — Add one or more LaunchDarkly members to one or more teams with a semantic patch update.
  • create_environment — Create a LaunchDarkly environment using either common fields or a full official request body.
  • create_feature_flag — Create a LaunchDarkly feature flag using either common fields or a full official request body.
  • create_project — Create a LaunchDarkly project using either common fields or a full official request body.
  • create_segment — Create a LaunchDarkly segment using either common fields or a full official request body.
  • create_team — Create a LaunchDarkly team using either common fields or a full official request body.
  • create_token — Create a LaunchDarkly access token using either common fields or a full official request body.
  • delete_environment — Delete a LaunchDarkly environment by project key and environment key.
  • delete_feature_flag — Delete a LaunchDarkly feature flag by project key and feature flag key.
  • delete_project — Delete a LaunchDarkly project by project key.
  • delete_segment — Delete a LaunchDarkly segment by project key, environment key, and segment key.
  • delete_team — Delete a LaunchDarkly team by team key.
  • delete_token — Delete a LaunchDarkly access token by token identifier.
  • get_caller_identity — Get the LaunchDarkly caller identity for the current access token.
  • get_context_instances — Get a LaunchDarkly context instance by project key, environment key, and context instance identifier.
  • get_contexts — Get a LaunchDarkly context by context kind and key, with optional paging over related results.
  • get_environment — Get a LaunchDarkly environment by project key and environment key.
  • get_environments — List the LaunchDarkly environments that belong to a project.
  • get_feature_flag — Get a LaunchDarkly feature flag by project key and feature flag key.
  • get_feature_flags — List LaunchDarkly feature flags in a project with optional filtering, pagination, and summary output.
  • get_member — Get a LaunchDarkly account member by member identifier.
  • get_members — List LaunchDarkly account members with optional filtering, sorting, pagination, and expansion.
  • get_project — Get a LaunchDarkly project by project key.
  • get_segment — Get a LaunchDarkly segment by project key, environment key, and segment key.
  • get_segments — List LaunchDarkly segments in a project environment with optional filtering and pagination.
  • get_tags — List LaunchDarkly tags with optional prefix and resource-kind filters.
  • get_team — Get a LaunchDarkly team by team key.
  • get_token — Get a LaunchDarkly access token by token identifier.
  • get_tokens — List LaunchDarkly access tokens with optional pagination and visibility scope.
  • list_projects — List LaunchDarkly projects with optional filtering, sorting, pagination, and expansion.
  • list_teams — List LaunchDarkly teams with optional filtering, pagination, and expansion controls.
  • patch_environment — Patch a LaunchDarkly environment with standard JSON Patch operations.
  • patch_feature_flag — Patch a LaunchDarkly feature flag with JSON Patch, JSON Merge Patch, or semantic patch instructions.
  • patch_project — Patch a LaunchDarkly project with standard JSON Patch operations.
  • patch_segment — Patch a LaunchDarkly segment with JSON Patch, JSON Merge Patch, or semantic patch instructions.
  • patch_team — Patch a LaunchDarkly team with semantic patch instructions.
  • patch_token — Patch a LaunchDarkly access token with standard JSON Patch operations.
  • reset_token — Reset a LaunchDarkly access token value and optionally control when the old value expires.
  • search_context_instances — Search LaunchDarkly context instances in a project environment with filtering, sorting, and pagination.
  • search_contexts — Search LaunchDarkly contexts in a project environment with filtering, sorting, and pagination.

Safety

  • Read actions (get / list / search) are safe to run directly.
  • Create, update, send, or post actions change LaunchDarkly state — confirm the exact payload and effect with the user before running.
  • Delete or remove actions are destructive — always confirm the target and get explicit approval first.

First-time setup

These are one-time steps — do not repeat them on every call. Run a step only when a command fails for the matching reason.

  • oo: command not found — install the oo CLI (other platforms: \x3Chttps://cli.oomol.com/install-guide.md>):

    curl -fsSL https://cli.oomol.com/install.sh | bash    # macOS / Linux
    
    irm https://cli.oomol.com/install.ps1 | iex           # Windows PowerShell
    
  • Not signed in / authentication error — sign in to your OOMOL account once:

    oo auth login
    
  • scope_missing / credential_expired / app_not_ready / app_not_found — LaunchDarkly is not connected, or the connection expired or lacks a scope. Connect once (auth type: API key) at:

    https://console.oomol.com/app-connections?provider=launch_darkly
    
  • HTTP 402 / OOMOL_INSUFFICIENT_CREDIT — billing stop. Recharge at https://console.oomol.com/billing/token-recharge before retrying.

Resources

安全使用建议
Install only if you want an agent to administer LaunchDarkly through OOMOL. Use a least-privilege LaunchDarkly token, review exact payloads before approving create/update/reset actions, and require explicit approval before any delete or token-management operation.
能力标签
requires-oauth-tokenrequires-sensitive-credentials
能力评估
Purpose & Capability
The skill provides broad LaunchDarkly administration through the OOMOL `launch_darkly` connector, including projects, environments, feature flags, segments, teams, members, contexts, and access-token lifecycle actions; this is high-impact but purpose-aligned and disclosed.
Instruction Scope
The description broadly activates for any LaunchDarkly request, but the runtime instructions are scoped to LaunchDarkly connector actions and require schema inspection plus confirmation before state-changing or destructive operations.
Install Mechanism
The skill is markdown-only and declares `Bash(oo *)`; setup instructions include a conditional `curl | bash` or PowerShell installer only if the `oo` CLI is missing, which is disclosed but should be reviewed by the user.
Credentials
It requires an OOMOL-connected LaunchDarkly account and sensitive credentials, which is proportionate for LaunchDarkly administration but should be used with least-privilege LaunchDarkly permissions.
Persistence & Privilege
No background workers, persistence, local indexing, or hidden file access were found; credentials are described as injected server-side by OOMOL, with local use limited to the signed-in `oo` CLI flow.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install oo-launch-darkly
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /oo-launch-darkly 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
- Introduces the `oo-launch-darkly` skill for operating LaunchDarkly through an OOMOL-connected account using the `launch_darkly` connector and `oo` CLI. - Provides 40 LaunchDarkly actions covering projects, environments, feature flags, segments, contexts, members, teams, tags, and access tokens. - Supports read workflows such as listing, fetching, filtering, searching, sorting, pagination, and caller identity inspection. - Enables controlled create and update workflows for LaunchDarkly resources, including JSON Patch, JSON Merge Patch, and semantic patch operations where supported. - Includes token lifecycle management, including create, list, inspect, patch, delete, and reset token actions. - Documents safety rules and setup fallback guidance so read actions can run directly while state-changing or destructive actions require explicit confirmation.
元数据
Slug oo-launch-darkly
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

LaunchDarkly 是什么?

LaunchDarkly (launchdarkly.com). Use this skill for ANY LaunchDarkly request — reading, creating, updating, and deleting data. Whenever a task involves Launc... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 37 次。

如何安装 LaunchDarkly?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install oo-launch-darkly」即可一键安装,无需额外配置。

LaunchDarkly 是免费的吗?

是的,LaunchDarkly 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

LaunchDarkly 支持哪些平台?

LaunchDarkly 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 LaunchDarkly?

由 OOMOL(@oomol)开发并维护,当前版本 v1.0.0。

💬 留言讨论