ai-loop — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited ai-loop (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.
The ai-loop skill structures a bounded development cycle for agentic workflows. By dividing the process into distinct planning (Spec), implementation (Build), and validation (Review) phases, it helps an agent build and correct scoped code changes while keeping requirements, risk gates, and stop conditions explicit.
This skill executes a controlled development loop composed of three phases: Spec, Build, and Review. When invoked, the agent moves through those phases until the scoped requirements pass verification, a stop condition is reached, or human approval is needed.
Before starting, define:
specs/<feature-name>.md.specs/<feature-name>.md.specs/<feature-name>.md.User:
I want to add a utility for calculating basic statistics (mean, median, mode) of an array of numbers.
Agent (Phase 1 - Spec):
I can help with that. To get started, what programming language should this statistics calculator be implemented in? Also, how should empty arrays or invalid inputs be handled?
User:
JavaScript. If the array is empty, return null. If there are non-numbers, ignore them.
Agent (Phase 1 - Spec):
Thank you. I have created the specification file at specs/stats-calculator.md with the requirements we discussed. Now, I will start implementing it.Agent (Phase 2 - Build):
(Creates `stats_calculator.js` and implements `mean`, `median`, and `mode` matching the spec exactly) I have finished implementing the calculator. I will now verify the implementation.
Agent (Phase 3 - Review):
Checking implementation againstspecs/stats-calculator.md: - Requirement: mean calculation -> PASS - Requirement: median calculation -> PASS - Requirement: mode calculation -> PASS - Requirement: empty array returns null -> PASS - Requirement: non-numbers are ignored -> FAIL (I noticedmodedoesn't filter out non-numbers).
>
I will now loop back to Phase 2 to fix the mode function.Agent (Phase 2 - Build Loop-Back):
(Fixes `mode` to filter out non-numbers) I have updated the implementation. Let's re-verify.
Agent (Phase 3 - Review):
- Requirement: mode filters non-numbers -> PASS
>
All requirements passed! The statistics calculator is complete and verified.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.