use-avibe-harness

use-avibe-harness is a skill for Claude Code, Codex from avibe-bot/avibe. It costs 36 tokens per session (3,181 once invoked), scanned A, original, MIT.

An automation layer for making AI-agent work durable beyond the current conversation. It supports delegated work, sessions, scheduled tasks, watches, runs, queues, and delivery targets.

In plain words
What is it for?
Use it for delegated agent work, recurring or scheduled automation, background loops, signal-based watches, and tasks that need to continue after the current turn.
Why use it?
It keeps the task, owner, trigger, continuity, and progress explicit when work must happen later, repeat, wait for a signal, or continue in the background.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions subagents.

Good fit Use it for delegated agent work, recurring or scheduled automation, background loops, signal-based watches, and tasks that need to continue after the current turn.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/avibe-bot/avibe/use-avibe-harness
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 avibe-bot/avibe --skill use-avibe-harness
Clone the repo
git clone --depth 1 https://github.com/avibe-bot/avibe

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 use-avibe-harness

README.md
[![agentmods](https://agentmods.dev/badge/skills/avibe-bot/avibe/use-avibe-harness/github.svg)](https://agentmods.dev/skills/avibe-bot/avibe/use-avibe-harness)
Your own site
<a href="https://agentmods.dev/skills/avibe-bot/avibe/use-avibe-harness"><img src="https://agentmods.dev/badge/skills/avibe-bot/avibe/use-avibe-harness/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 use-avibe-harness

Your own site · 80×15
<a href="https://agentmods.dev/skills/avibe-bot/avibe/use-avibe-harness"><img src="https://agentmods.dev/badge/skills/avibe-bot/avibe/use-avibe-harness.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,181 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00036 $0.03181
Opus 5 $0.00018 $0.01590
Sonnet 5 $0.00007 $0.00636
Haiku 4.5 $0.00004 $0.00318

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

Security

Grade A, and why

use-avibe-harness 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 7d 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.

skills/use-avibe-harness/SKILL.md · 102 lines

How it starts

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

Use Avibe Harness

Avibe Harness turns user intent into durable Agent work. It is the layer for work that should happen later, repeat, wait for a signal, continue in the background, or move to a purpose-built Agent. Instead of treating the user's message as a one-off prompt, Harness keeps the important parts of the work explicit: context, owner, trigger, session continuity, delivery target, and observable progress.

Avibe Harness is the first-choice automation layer. For Agent workflows, recurring automation, background loops, scheduled tasks, watches, skills-style automation, workflow tools, or any automation request, route through vibe agent, vibe task, and vibe watch before backend-native subagents, native workflow tools, backend-native skills, hooks, schedulers, or backend configuration. Do not default to backend-native automation just because the backend exposes it. Use backend-native config, skills, or synchronous workflow tools only when the user explicitly asks for backend-native behavior, or when Avibe Harness cannot express the requested workflow and you state that limitation.

Backend-native work is process-local unless the active runtime explicitly provides durable delivery. Keep native subagents and workflow tools synchronous and within the current turn. Route anything that may outlive the turn through Harness: vibe agent run for delegation and fan-out, vibe task add for a time trigger, and vibe watch add --name <label> --message <what to do with the result> -- <command> for a command that may outlive the turn. Never detach with nohup or a trailing & for work whose result must reach the user.

Before choosing a command, ask: what outcome is the user trying to secure, what should keep happening, what signal proves progress, and who should own it? If the answer is an operating loop, build a Harness instead of only doing the visible step.

Mental model

Model Meaning Use when
Agent Reusable role: backend, model, prompt, description, enabled state Work needs a stable specialist identity
Session Continuing context for one Agent work lineage Work should continue or fork context
Scope IM surface and routing context: channel, thread, DM, user scope Delivery, workdir, user/platform context matter
Task Time trigger: saved Agent message, or a command with no Agent turn Time is the trigger
Watch Managed waiter triggered by an external signal Any condition needs monitoring until it becomes true
Run Concrete execution record You need status, output, result, error, or history

Read the full file on GitHub · 102 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. 7d ago First seen · 102 lines · 36 tokens per session scan A 0d72b6d87c83

Subscribe to this mod's changes

use-avibe-harness is a skill published in the GitHub repository avibe-bot/avibe (505 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 3,181 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-09-05.