autoany-eb511e — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited autoany-eb511e (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.
Turn ambiguous user goals into safe, measurable, rollback-capable recursive improvement systems.
Do not grant an agent more mutation freedom than your evaluator can reliably judge.
Extract from the user's goal:
train.py equivalent)prepare.py equivalent)Produce a problem-spec.yaml. See assets/problem-spec.template.yaml for the schema and references/PROBLEM-SPEC.md for field-by-field semantics.
Before touching the mutable artifact:
Law: The evaluator must exist and produce a baseline score before any mutation begins.
Build the immutable execution shell:
assets/ledger.schema.json)x_t = current best artifact state
while budget remains:
m = propose_mutation(x_t, ledger, strategy)
x' = apply(m, x_t)
result = execute(x', harness)
score = evaluate(result)
if violates_constraints(result): discard(x'), log("rejected")
elif promotion_policy(score, x_t_score): promote(x'), x_t = x'
else: discard(x'), log("no improvement")
record(ledger, trial_metadata)After each batch of trials:
| Mode | Mutate | Execute | Promote | When to use |
|---|---|---|---|---|
| Suggestion | Propose only | No | No | Evaluator untrusted or high-risk domain |
| Sandbox | Yes | Yes | No | Evaluator exists but promotion needs human review |
| Auto-promote | Yes | Yes | Yes | Strong evaluator, bounded damage, clear constraints |
| Portfolio | Yes | Yes | Yes | Multiple loops, budget allocation across subproblems |
Default to sandbox. Escalate only with explicit user approval.
Read references/DOMAIN-MAPPINGS.md for concrete artifact/harness/evaluator choices per domain.
Read references/REFERENCE.md for full EGRI formal model: Π = (X, M, H, E, J, C, B, P, L).
Read references/META-LOOP.md for Level 1-3 loops (policy, portfolio, org).
python3 scripts/autoany_init.py <project-name> --domain <code|rag|workflow|etl|ui|generic> --path <output-dir>~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.