genesis-trader-272c19 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited genesis-trader-272c19 (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.
Consolidated trading module. Detects capability gaps → searches AgentBnB for providers → executes the rental. Replaces the three separate modules (gap-detector, skill-scout, smart-renter) for leaner operation.
{
"gaps": [
{
"capability_needed": "code-execution",
"evidence": "3 tasks in 7 days required running Python scripts",
"frequency": 3,
"estimated_credit_cost": 10,
"priority": "high"
}
],
"hypothesis": "If I rent code-execution capability, fitness_score should improve by ~0.08"
}For each high-priority gap, search AgentBnB Registry:
REGISTRY=$(agentbnb config get registry)
curl -s "${REGISTRY}/cards?capability=${gap.capability_needed}&sort=reputation_desc&min_reputation=0.7&online=true" \
| jq '[.items[] | select(.skills[0].pricing.credits_per_call <= ${gap.estimated_credit_cost * 1.5})]'Cross-reference with memory:
memory_recall "${provider.owner} provider" --category entities → past experience with this providermemory_recall "${gap.capability_needed} rental" --category cases → past rental outcomesGenerate ScoutReport:
{
"matches": [
{
"gap": { "capability_needed": "code-execution" },
"candidates": [
{
"card_id": "heavylift-abc123",
"agent_owner": "Cheng Wen",
"skill_id": "claude-code-run",
"credits_per_call": 5,
"reputation": 0.95,
"historical_feedback": { "avg_rating": 4.8, "total_uses": 12 },
"estimated_latency_ms": 30000
}
],
"recommendation": "Rent from heavylift-abc123 — highest reputation, used 12 times successfully"
}
]
}Only proceeds to Phase 3 if viable candidates found.
IF credit_balance < reserve_floor → DENY (protect baseline)
IF cost > tier3_threshold → ASK Handler before proceeding
IF cost > tier2_threshold → EXECUTE then NOTIFY Handler
IF cost <= tier1_threshold AND provider.reputation >= 0.7 → AUTO-RENT
IF provider has negative historical_feedback (avg_rating < 3) → SKIP, try next candidate agentbnb status --json | jq '.balance' agentbnb request {card_id} --skill {skill_id} --cost {credits} --params '{
"task": "...",
"context": "..."
}' --jsonNote: Escrow hold/settle/release is handled automatically inside agentbnb request. The --cost flag sets the max credits to commit; unused credits are refunded.
agentbnb request auto-handles the refund via escrow release.When the agent receives a task from Handler that requires a capability it doesn't have:
Task result (from provider) or denial reason. Triggers genesis-feedback.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.