Token导航 LogoToken导航TokenDH.com
研究检索可写文件github未标认证来源可访问许可证需确认审计未展示

ring%3acondition-based-waiting环%3a 基于条件的等待

Agent Skill

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

总安装

582

周安装

25

GitHub Stars

180

下载量

204
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:ring%3acondition-based-waiting(环%3a 基于条件的等待)
来源仓库:https://github.com/lerianstudio/ring
仓库路径:skills/ring%3Acondition-based-waiting
安装命令:
npx skills add https://github.com/lerianstudio/ring --skill ring:condition-based-waiting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/lerianstudio/ring --skill ring:condition-based-waiting

简介

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

  • 支持基于关键词、任务场景或来源线索进行信息检索与筛选。
  • 通过 GitHub 仓库获取技能定义,需结合原始 README 确认具体用法。
  • 安装前建议确认权限范围、维护状态及是否触发联网或文件操作。
  • ring%3acondition-based-waiting 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Condition-Based Waiting

Overview

Flaky tests often guess at timing with arbitrary delays. This creates race conditions where tests pass on fast machines but fail under load or in CI.

Core principle: Wait for the actual condition you care about, not a guess about how long it takes.

When to Use

Decision flow: Test uses setTimeout/sleep? → Testing actual timing behavior? → (yes: document WHY timeout needed) | (no: use condition-based waiting)

Use when: Arbitrary delays (setTimeout, sleep) | Flaky tests (pass sometimes, fail under load) | Timeouts in parallel runs | Async operation waits

Don't use when: Testing actual timing behavior (debounce, throttle) - document WHY if using arbitrary timeout

Core Pattern

// ❌ BEFORE: Guessing at timing
await new Promise(r => setTimeout(r, 50));
const result = getResult();
expect(result).toBeDefined();

// ✅ AFTER: Waiting for condition
await waitFor(() => getResult() !== undefined);
const result = getResult();
expect(result).toBeDefined();

Quick Patterns

ScenarioPattern
Wait for eventwaitFor(() => events.find(e => e.type === 'DONE'))
Wait for statewaitFor(() => machine.state === 'ready')
Wait for countwaitFor(() => items.length >= 5)
Wait for filewaitFor(() => fs.existsSync(path))
Complex conditionwaitFor(() => obj.ready && obj.value > 10)

Implementation

Generic polling: waitFor(condition, description, timeoutMs=5000) - poll every 10ms, throw on timeout with clear message. See @example.ts for domain-specific helpers (waitForEvent, waitForEventCount, waitForEventMatch).

Common Mistakes

❌ Bad✅ Fix
Polling too fast (setTimeout(check, 1))Poll every 10ms
No timeout (loop forever)Always include timeout with clear error
Stale data (cache before loop)Call getter inside loop for fresh data

When Arbitrary Timeout IS Correct

await waitForEvent(...); await setTimeout(200) - OK when: (1) First wait for triggering condition (2) Based on known timing, not guessing (3) Comment explaining WHY (e.g., "200ms = 2 ticks at 100ms intervals")

Real-World Impact

Fixed 15 flaky tests across 3 files: 60% → 100% pass rate, 40% faster execution, zero race conditions.

Blocker Criteria

STOP and report if:

Decision TypeBlocker ConditionRequired Action
Timing behaviorTest is intentionally testing timing (debounce, throttle)STOP and document WHY timeout is correct
Condition identificationCannot determine what condition to wait forSTOP and analyze expected state change
Timeout configurationNo maximum timeout defined for wait loopSTOP and add timeout with clear error message
Polling intervalPolling faster than 10ms without justificationSTOP and adjust to 10ms minimum

Cannot Be Overridden

The following requirements CANNOT be waived:

  • Wait loops MUST have maximum timeout - infinite loops are FORBIDDEN
  • Polling interval MUST NOT be less than 10ms without documented justification
  • Condition function MUST call getter inside loop for fresh data - stale data caching is FORBIDDEN
  • Arbitrary timeouts MUST have documented reasoning if used alongside condition-based waiting
  • Timeout error messages MUST describe what condition was being waited for

Severity Calibration

SeverityConditionRequired Action
CRITICALWait loop without timeout (potential infinite loop)MUST add timeout immediately
CRITICALPolling at 1ms intervals (CPU thrashing)MUST increase to minimum 10ms
HIGHStale data - condition checked against cached valueMUST move getter call inside loop
HIGHArbitrary timeout without condition-based wait firstMUST add condition wait before timeout
MEDIUMTimeout error message lacks contextShould add descriptive failure message
LOWPolling interval could be optimizedFix in next iteration

Pressure Resistance

User SaysYour Response
"Just increase the timeout, the test is flaky""Increasing timeouts masks race conditions. MUST identify actual condition to wait for instead."
"Adding a small sleep is simpler""Arbitrary sleeps cause flaky tests. MUST wait for the actual state change condition."
"The 10ms polling is too slow""Polling faster than 10ms risks CPU thrashing. MUST justify with documented performance requirement."
"We don't need a timeout, it will always complete""CANNOT have wait loops without timeout. Infinite loops are FORBIDDEN - add max timeout."

Anti-Rationalization Table

RationalizationWhy It's WRONGRequired Action
"A small sleep is good enough for this test"Arbitrary delays cause flaky tests under loadMUST use condition-based waiting
"Polling every 1ms will be faster"CPU thrashing harms overall test performanceMUST use minimum 10ms interval
"This will always complete quickly"Assumptions about timing fail in CI/parallel runsMUST add timeout with error message
"The timeout handles the failure case"Timeout masks root cause; condition reveals intentMUST wait for condition, timeout is safety net
"Test is testing timing, so timeout is fine"Timing tests still need documented justificationMUST document WHY timeout is correct

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Codex

32.19%
按下载量换算66

Claude

32.54%
按下载量换算66

Cursor

17.9%
按下载量换算37

Gemini CLI

9.61%
按下载量换算20

安全审计

暂无安全审计结果可展示。

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills