genesis-pulse

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

A self-reflection process that runs during an agent heartbeat and produces a report about the agent's current state and performance. It uses recent execution, task, feedback, and credit data.

In plain words
What is it for?
Use it to calculate idle rate, task success, credit growth, utilisation, feedback averages, and an overall fitness score for downstream agent processes.
Why use it?
It gives later processes a consistent view of activity, success, feedback, capacity use, and recent trends.

Skill for Claude CodeCodex

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

Good fit Use it to calculate idle rate, task success, credit growth, utilisation, feedback averages, and an overall fitness score for downstream agent processes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xiaoher-c/agentbnb/genesis-pulse
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-pulse
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-pulse

README.md
[![agentmods](https://agentmods.dev/badge/skills/xiaoher-c/agentbnb/genesis-pulse/github.svg)](https://agentmods.dev/skills/xiaoher-c/agentbnb/genesis-pulse)
Your own site
<a href="https://agentmods.dev/skills/xiaoher-c/agentbnb/genesis-pulse"><img src="https://agentmods.dev/badge/skills/xiaoher-c/agentbnb/genesis-pulse/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-pulse

Your own site · 80×15
<a href="https://agentmods.dev/skills/xiaoher-c/agentbnb/genesis-pulse"><img src="https://agentmods.dev/badge/skills/xiaoher-c/agentbnb/genesis-pulse.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,241 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00033 $0.01241
Opus 5 $0.00016 $0.00620
Sonnet 5 $0.00007 $0.00248
Haiku 4.5 $0.00003 $0.00124

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

Security

Grade A, and why

genesis-pulse scanned grade A with 1 finding 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 9d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "{{hubUrl}}/api/providers/<your_owner>/reliability" | jq '.'
genesis-template/templates/skills/genesis-pulse/SKILL.md · 150 lines

How it starts

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

genesis-pulse — Self-Reflection Engine

Purpose

Run at the start of every heartbeat cycle. Produce a PulseReport that all downstream skills read. Use Layer 0 (Haiku/Flash) only. This skill should consume < 2,000 tokens per run.


Procedure

Step 1 — Read current state (all Layer 0)

# Credit balance from AgentBnB
agentbnb status --json

# Recent task results from memory
memory_recall "task result" --category events --limit 10 --since 7d

# Recent feedback received
memory_recall "feedback received" --category events --limit 10 --since 7d

Step 2 — Calculate idle_rate

idle_rate = 1 - (active_execution_seconds_in_last_60min / 3600)

If no execution data available: assume idle_rate = 1.0 (safe default for new agents).

Step 3 — Compute fitness_score

Pull 7-day data from memory (category: patterns, tag: pulse-history):

task_success_rate_7d   = successful_tasks / total_tasks (default 1.0 if no history)
credit_growth_rate_7d  = (balance_now - balance_7d_ago) / max(balance_7d_ago, 1)
utilization_rate       = 1 - idle_rate (how much of capacity was used productively)
feedback_avg_score     = average of all received ratings (1-5, default 3.0)

fitness_score =
  0.4 × task_success_rate_7d +
  0.3 × clamp(credit_growth_rate_7d, -1, 1) × 0.5 + 0.15 +  # normalized to 0-0.3 range
  0.2 × utilization_rate +
  0.1 × (feedback_avg_score / 5)

Step 4 — Produce PulseReport

Write as structured JSON to memory (category: patterns, tag: pulse-current, importance: 0.6):

{
  "timestamp": "<ISO-8601>",
  "generation": 1,
  "credit_balance": <number>,
  "idle_rate": <0.0-1.0>,
  "active_skills": ["genesis-pulse", "genesis-trader", ...],
  "recent_tasks_7d": <count>,
  "recent_failures_7d": <count>,
  "pending_incoming_requests": <count>,
  "fitness_score": <0.0-1.0>,
  "fitness_components": {
    "task_success_rate_7d": <number>,
    "credit_growth_rate_7d": <number>,
    "utilization_rate": <number>,
    "feedback_avg_score": <number>
  },
  "layer1_tokens_today": <count>,
  "layer2_credits_today": <number>,
  "alerts": [],
  "self_summary": {
    "capabilities": ["<skill_id_1>", "<skill_id_2>"],
    "success_rate": <task_success_rate_7d>,
    "credit_balance": <number>,
    "total_completed": <lifetime execution count>,
    "provider_number": <number>,
    "reliability": {
      "current_streak": <number>,
      "repeat_hire_rate": <number>,
      "avg_feedback": <feedback_avg_score>
    }
  }
}

Read the full file on GitHub · 150 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. 9d ago First seen · 150 lines · 33 tokens per session scan A 8d3fe3dabce9

Subscribe to this mod's changes

genesis-pulse is a skill published in the GitHub repository Xiaoher-C/agentbnb (33 stars, last pushed 2mo ago), licensed MIT. It adds 33 tokens to every session and 1,241 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). 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