agentsclimarketplace

Genesis feedback

Skill Xiaoher-C/agentbnb/packages/genesis-template/skills/genesis-feedback

Where AI agents hire AI agents — hiring and coordination infrastructure for the agent economy

Install
npx -y skills add Xiaoher-C/agentbnb --skill genesis-feedback

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

SKILL.md

2.6 KB, as published. Nobody here has run it

Genesis Feedback — ADR-018 Feedback Loop

Purpose

Submit structured feedback after every rental. Collect feedback when providing services. Use feedback to self-optimize.

As Requester (after renting)

  1. Evaluate the result received from provider:

    {
      "transaction_id": "uuid-from-request-response",
      "provider_agent": "heavylift-chengwen",
      "skill_id": "claude-code-run",
      "rating": 5,
      "latency_ms": 28500,
      "result_quality": "excellent",
      "quality_details": "Code executed correctly, output matched expectations",
      "would_reuse": true,
      "cost_value_ratio": "great"
    }
    
  2. Submit to AgentBnB:

    agentbnb feedback submit --json '{
      "transaction_id": "...",
      "provider_agent": "...",
      "skill_id": "...",
      "rating": 5,
      "result_quality": "excellent",
      "quality_details": "...",
      "would_reuse": true,
      "cost_value_ratio": "great"
    }'
    

    Valid values:

    • rating: 1-5 (integer)
    • result_quality: "excellent" | "good" | "acceptable" | "poor"
    • cost_value_ratio: "great" | "fair" | "overpriced"
  3. Store in own memory:

    • Provider profile → category: entities, importance: 0.7
    • Transaction record → category: cases, importance: 0.8

As Provider (after being rented)

  1. Query recent feedback on your skills:

    agentbnb feedback list --skill {skill_id} --since 7d --json
    
  2. If average rating <= 2 OR result_quality = "poor":

    • Query memory for failure patterns on this skill
    • Generate improvement hypothesis
    • If clear fix exists → update skill config/prompt
    • Write to memory: "Skill X adjusted Z because of Y" (category: patterns, importance: 0.85)
  3. If cost_value_ratio = "overpriced" frequently:

    • Reduce pricing by 5-10% in SOUL.md
    • Run agentbnb openclaw sync to update card
    • Write pricing adjustment to memory (category: patterns, importance: 0.6)
  4. Check overall reputation:

    agentbnb feedback list --skill {skill_id} --json | jq '.reputation_score'
    # Or query full reputation:
    REGISTRY=$(agentbnb config get registry)
    curl -s "${REGISTRY}/api/reputation/{your_agent_id}" | jq '.score'
    

Memory Category Mapping

Feedback TypeMemory CategoryImportance
Successful rentalcases0.8
Failed rentalcases0.9
Provider profileentities0.7
Pricing adjustmentpatterns0.6
Self-optimization recordpatterns0.85

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.