Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

managing-project-customizations管理项目定制

Agent Skill

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

总安装

225

周安装

9

GitHub Stars

4

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/klamping/webdriverio-skills --skill managing-project-customizations

简介

用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息检索的场景,如项目配置查询。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和是否触发联网操作。
  • 建议结合原始 README 核验具体用法,注意检查维护状态和潜在的文件读写行为。
  • 安装前应评估是否需要执行外部命令或访问敏感数据,避免误改生产环境。

SKILL.md

Managing Project Customizations

Build and maintain a project context cache for all WebdriverIO skills.

This skill is the project bootstrap and refresh layer. It scans the current project, writes reference files, and keeps them current so other skills can load project details quickly instead of rediscovering them every session.

When to Use

  • First use of the WebdriverIO skill set in a project.
  • On-demand refresh after significant test/config changes.
  • End of orchestrator sessions when project context changed.
  • When other skills report missing or stale project context.

When Not to Use

  • You only need to edit a single test and context is already fresh.
  • You need test implementation logic (use writing-webdriverio-code).
  • You need only test scaffolding (use creating-test-structure).

Output Files (Project Cache)

Write/update these files under .webdriverio-skills/ in the target project:

  • .webdriverio-skills/project-context.json
  • .webdriverio-skills/project-context.md
  • .webdriverio-skills/custom-rules.md (team-maintained overrides)
  • .webdriverio-skills/health-recommendations.md

Create .webdriverio-skills/custom-rules.md from this skill's template if missing.

Required Data to Capture

  • WDIO configuration files (wdio.conf.*, per-env configs, suite splits)
  • Reporters and reporter output details
  • Services and service-specific behavior
  • Coding standards and conventions (naming, structure, style)
  • Linting rules and test-related lint constraints
  • NPM scripts related to test execution and debugging
  • Custom functionality (custom commands, API interfaces, shared helpers)
  • Relevant environment variables and toggles
  • Server/environment targets (local/dev/staging/prod)

Scanning Workflow

  1. Discover test-related config files (wdio.conf.*, eslint, ts/js config, package scripts).
  2. Extract reporter/service/configuration details.
  3. Discover custom commands, shared helpers, and API utilities.
  4. Extract relevant env var names from config and docs (never store secrets/values).
  5. Map server targets and their intended usage from scripts/config.
  6. Write structured + human-readable context files.
  7. Run capability checks and produce recommendations.

Capability Checks and Recommendations

Always check for features that improve skill effectiveness:

  • JSON reporter support for easier machine parsing of results.
  • Failure artifact capture (HTML snapshot and/or screenshot) in failure hooks.

If missing, add a recommendation entry in .webdriverio-skills/health-recommendations.md with:

  • what is missing
  • why it matters
  • suggested implementation direction

Reference for failure artifacts:

Update Policy

  • Treat cache as stale if WDIO config, reporters, services, scripts, linting, or custom command files changed.
  • Refresh on explicit user request.
  • Refresh when orchestrator indicates project state changed during a session.
  • Update only changed sections when possible; perform full refresh when core config changed.

Custom Rules Support

Teams can tune behavior via .webdriverio-skills/custom-rules.md.

This file can define:

  • preferred selectors and anti-patterns
  • naming conventions
  • required test hooks/setup patterns
  • environment constraints
  • mandatory scripts or checks

Other skills should read this file first and treat it as project override guidance.

Downstream Skill Contract

All WebdriverIO skills should:

  1. Attempt to read .webdriverio-skills/project-context.* and .webdriverio-skills/custom-rules.md first.
  2. Attempt to read references/website-analysis/<target>/website-analysis.* when route/component context is relevant.
  3. Treat custom-rules.md as team override guidance.
  4. Request a refresh via managing-project-customizations when cache data appears stale.

Target Resolution Rule

For references/website-analysis/<target>/..., downstream skills should resolve <target> to the lowercase site host (from URL or baseUrl), with unknown-target as fallback.

Data Safety Rules

  • Never store secret values (tokens, passwords, credentials).
  • Store env var names and usage notes only.
  • Redact sensitive command arguments in generated context docs.

Quick Reference

ArtifactPurpose
project-context.jsonFast machine-readable project context
project-context.mdHuman summary for quick understanding
custom-rules.mdTeam-specific overrides and conventions
health-recommendations.mdSuggested project improvements

Common Mistakes

  • Storing secret env values in reference files.
  • Updating context only once and never refreshing.
  • Ignoring custom-rules overrides.
  • Recording recommendations without actionable guidance.

Minimal JSON Shape

{
  "updatedAt": "ISO-8601",
  "wdioConfigs": [],
  "reporters": [],
  "services": [],
  "linting": {},
  "testScripts": {},
  "customCommands": [],
  "apiInterfaces": [],
  "envVars": [],
  "servers": [],
  "notes": []
}

Done means context files are current, recommendations are updated, and downstream skills can load project-specific behavior without a full rescan.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.1%
按下载量换算28

Claude

28.62%
按下载量换算21

Cursor

20.08%
按下载量换算15

Gemini CLI

10%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills