alkosto-wait-optimizer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited alkosto-wait-optimizer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill to estimate how long to wait for the next promotion winner event.
purchase_rate: user observed purchases per minute in one or more lanes.winner_timestamps: user logged winner announcement times.K:K = 25 for Monday-Friday.K = 50 for Saturday/Sunday/holiday.optimal_wait_minutes).time_value_per_minute and expected_bonus_value, include expected-value vs time-cost guidance.purchase_rateCollect:
observed_purchasesobserved_minutesobserved_lanestotal_open_lanesmodel: global or per_laneFormulas:
lambda_obs = observed_purchases / observed_minutesglobal and total_open_lanes exists:lambda_est = lambda_obs * (total_open_lanes / observed_lanes)
per_lane:lambda_est = lambda_obs / observed_lanes
lambda_cons = lambda_est * (1 - confidence_buffer)
T = K / lambda_cons
E(wait_to_next) = T / 2
optimal_wait = min(max_wait_minutes, target_hit_probability * T)
Decision rule:
optimal_wait, re-measure for 2 minutes and recalculate.winner_timestampsCollect:
HH:MM[:SS] or ISO datetimes).elapsed_since_last_winner_minutes.Compute:
delta_i = t_i - t_(i-1)mu = mean(delta_i)sigma = stdev(delta_i)cv = sigma / muCadence model:
cv < 0.4: regular0.4 <= cv <= 0.7: mixedcv > 0.7: randomWait estimate:
regular: remaining ~ max(mu - elapsed, 0)random (exponential): use P(event <= W) = 1 - exp(-W / mu), andW_target = -mu * ln(1 - target_hit_probability)
mixed: average regular and random estimates.Decision rule:
optimal_wait, capture 2-3 more timestamps and recalculate.Use scripts/calc_wait.py for deterministic calculations:
python3 scripts/calc_wait.py --input-json '{"mode":"purchase_rate","is_weekend_or_holiday":true,"model":"global","observed_purchases":5,"observed_minutes":2,"observed_lanes":5,"total_open_lanes":15}'python3 scripts/calc_wait.py --input-json '{"mode":"winner_timestamps","winner_timestamps":["12:10:15","12:27:40","12:46:05","13:02:20"],"elapsed_since_last_winner_minutes":6}'Return concise outputs and state assumptions clearly when data is sparse.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.