agentsclimarketplace

Feature flag risk assessor

Skill sisodiabhumca/agent-skills/skills/feature-flag-risk-assessor

Production-Ready Agent Skills : product analytics, growth experiments, CRM, research synthesis, postmortems, data contracts, SaaS spend, compliance, architecture maps, and LLM eval and many more.

Install
npx -y skills add sisodiabhumca/agent-skills --skill feature-flag-risk-assessor

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Vendor-neutral skill to assess risk in feature-flag configurations (stale flags, kill-switch coverage, conflicting rules) and produce actionable recommendations.

SKILL.md

1.4 KB, as published. Nobody here has run it

When to invoke

  • You have a feature-flag export (JSON) and want to identify operational and release risks.
  • You want to standardize flag hygiene checks during releases.

Inputs needed

  • --input path to a JSON file containing feature flags.
    • Expected shape: { "flags": [ {"key": "...", "created_at": "YYYY-MM-DD", "updated_at": "YYYY-MM-DD", "enabled": true/false, "rules": [...] } ] }

Workflow

  1. Validate the flag schema and required fields.
  2. Compute risk signals:
    • stale flags (no updates beyond threshold)
    • enabled flags older than threshold
    • flags without a documented owner
    • rule conflicts (duplicate segments with different rollouts)
    • missing kill-switch (no global off / override rule)
  3. Emit a JSON report with per-flag risk score and suggested actions.

Output format

  • JSON written to --output:
    • summary: counts by risk type
    • flags: per-flag findings + risk_score (0-100)

Guardrails

  • Do not attempt to evaluate user targeting deterministically; only analyze configuration structure.
  • Prefer explainable heuristics over opaque scoring.

Reference code

  • feature_flag_risk_assessor.py implements a heuristic risk analyzer (stdlib-only).

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.