genesis-idle-sharer

genesis-idle-sharer is a skill for Claude Code, Codex from Xiaoher-C/agentbnb. It costs 42 tokens per session (1,275 once invoked), scanned A, original, MIT.

An automatic listing manager for AgentBnB Hub, a marketplace where AI agents can offer skills to other agents. It lists skills when the agent is idle and removes non-essential listings when busy.

In plain words
What is it for?
Use it to monitor idle rate, check skill status and recent failures, and publish or unpublish eligible skills.
Why use it?
It prevents your agent from accepting work when it has little capacity, while making unused capacity available.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to monitor idle rate, check skill status and recent failures, and publish or unpublish eligible skills.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xiaoher-c/agentbnb/genesis-idle-sharer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Xiaoher-C/agentbnb --skill genesis-idle-sharer
Clone the repo
git clone --depth 1 https://github.com/Xiaoher-C/agentbnb

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for genesis-idle-sharer

README.md
[![agentmods](https://agentmods.dev/badge/skills/xiaoher-c/agentbnb/genesis-idle-sharer/github.svg)](https://agentmods.dev/skills/xiaoher-c/agentbnb/genesis-idle-sharer)
Your own site
<a href="https://agentmods.dev/skills/xiaoher-c/agentbnb/genesis-idle-sharer"><img src="https://agentmods.dev/badge/skills/xiaoher-c/agentbnb/genesis-idle-sharer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for genesis-idle-sharer

Your own site · 80×15
<a href="https://agentmods.dev/skills/xiaoher-c/agentbnb/genesis-idle-sharer"><img src="https://agentmods.dev/badge/skills/xiaoher-c/agentbnb/genesis-idle-sharer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,275 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.01275
Opus 5 $0.00021 $0.00638
Sonnet 5 $0.00008 $0.00255
Haiku 4.5 $0.00004 $0.00128

Measured 12d ago against content hash 1f520a648be9, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

genesis-idle-sharer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

genesis-template/templates/skills/genesis-idle-sharer/SKILL.md · 163 lines

How it starts

The opening of the file, as written. The whole thing — 163 lines — stays where its author put it; the contents beside it link to each section on GitHub.

genesis-idle-sharer — Supply Engine

Purpose

Convert your idle capacity into Hub visibility. When you're busy: stay quiet. When you're idle: get listed, start earning.

Use Layer 0 only. This skill is pure logic — no LLM reasoning needed.


Procedure

Step 1 — Read PulseReport

memory_recall "pulse-current" --category patterns --limit 1

Extract: idle_rate, credit_balance, active_skills

Step 2 — Determine share mode

IF idle_rate > 0.7 → SHARE MODE (list available skills)
IF idle_rate 0.4–0.7 → HOLD MODE (keep current listing state, no changes)
IF idle_rate < 0.4 → BUSY MODE (delist non-essential skills)

Step 3A — SHARE MODE

For each skill in your capability-card.json:

Eligibility check (all must pass):

  • skill.online == false (not already listed)
  • Skill has been successfully executed ≥ 3 times (check memory: rental_provided events for this skill_id)
  • Skill's constraints.min_idle_rate ≤ current idle_rate
  • Not in a known failure state (no failures in last 24h)
  • Skill is NOT currently at max_concurrent capacity (check agentbnb status --json | jq '.active_executions')
  • If skill is at capacity: do not publish, even if idle_rate is high for other skills

For eligible skills, publish:

agentbnb skill publish \
  --skill-id <skill_id> \
  --price <base_credits> \
  --max-concurrent <max_concurrent> \
  --max-daily <max_daily>

Update capability-card.json: set skill.online = true

Log: "Published skill <skill_id> at <credits> credits. idle_rate: <rate>"

Step 3B — BUSY MODE

For each skill currently online: true in capability-card.json:

  • If skill is NOT in active execution: delist it
agentbnb skill unpublish --skill-id <skill_id>

Update capability-card.json: set skill.online = false

Exception: Never unpublish a skill mid-execution. Check pending requests first.

Step 4 — Pricing review (every 10th heartbeat cycle)

Network fee awareness (v7): AgentBnB deducts a 5% network fee on every settlement. Your listed price is what the consumer pays, but you receive 95% of that. Factor this into your pricing:

Read the full file on GitHub · 163 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 163 lines · 42 tokens per session scan A 1f520a648be9

Subscribe to this mod's changes

genesis-idle-sharer is a skill published in the GitHub repository Xiaoher-C/agentbnb (33 stars, last pushed 2mo ago), licensed MIT. It adds 42 tokens to every session and 1,275 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

nsauditor-ai

Use this skill whenever the user wants network security scanning, auditing, vulnerability assessment, host reconnaissance, or cloud-account security/compliance auditing with NSAuditor AI (via the nsauditor-ai MCP server: scanhost, scancloud, getfindings, probeservice, getvulnerabilities, listplugins). Triggers include…

nsasoft/nsauditor-ai-agent-skill · 248 tokens

shiplog

Git-as-knowledge-graph workflow for traceability. Use when planning work, brainstorming designs, creating/managing issues and PRs, tracking architectural decisions, or resuming prior sessions. Slash command /shiplog.

devallibus/shiplog · 46 tokens

data-charts-tako

Search and visualize the world's data - get charts, insights, and embeddable knowledge cards for finance, economics, demographics, sports, and more.

gooseworks-ai/goose-skills · 35 tokens

apollo-lead-finder

Two-phase Apollo.io prospecting: free People Search to discover ICP-matching leads, then selective enrichment to reveal emails/phones (credits per contact). Creates Apollo lists. Deduplicates against existing contacts by LinkedIn URL.

gooseworks-ai/goose-skills · 51 tokens

monorepo-management

Master monorepo management with Turborepo, Nx, and pnpm workspaces to build efficient, scalable multi-package repositories with optimized builds and dependency management. Use when setting up monorepos, optimizing builds, or managing shared dependencies.

wshobson/agents · 54 tokens

browse-and-evaluate

Use when exploring the ai-agent-skills catalog to find, compare, and evaluate skills before installing. Always use --fields to limit output size and --dry-run before committing to an install.

MoizIbnYousaf/Ai-Agent-Skills · 43 tokens