agents

agents is a skill for Claude Code, Codex from kostyk348/sint-ua-v2.1. It costs 36 tokens per session (784 once invoked), scanned A, original, Apache-2.0.

A set of guidelines for designing and checking systems where multiple AI agents work together. It covers how agents pass information, verify results, and keep records of what happened.

In plain words
What is it for?
Use it when building agent pipelines, multi-agent workflows, tool-using agents, or systems that need independent checks and audit trails.
Why use it?
It helps prevent one agent from approving its own mistakes and makes failures easier to trace. It also keeps facts, guesses, opinions, and plans from being mixed together.

Skill for Claude CodeCodex

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

Good fit Use it when building agent pipelines, multi-agent workflows, tool-using agents, or systems that need independent checks and audit trails.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kostyk348/sint-ua-v2.1/agents
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 kostyk348/sint-ua-v2.1 --skill agents
Clone the repo
git clone --depth 1 https://github.com/kostyk348/sint-ua-v2.1

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 agents

README.md
[![agentmods](https://agentmods.dev/badge/skills/kostyk348/sint-ua-v2.1/agents/github.svg)](https://agentmods.dev/skills/kostyk348/sint-ua-v2.1/agents)
Your own site
<a href="https://agentmods.dev/skills/kostyk348/sint-ua-v2.1/agents"><img src="https://agentmods.dev/badge/skills/kostyk348/sint-ua-v2.1/agents/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 agents

Your own site · 80×15
<a href="https://agentmods.dev/skills/kostyk348/sint-ua-v2.1/agents"><img src="https://agentmods.dev/badge/skills/kostyk348/sint-ua-v2.1/agents.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 784 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.00036 $0.00784
Opus 5 $0.00018 $0.00392
Sonnet 5 $0.00007 $0.00157
Haiku 4.5 $0.00004 $0.00078

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

Security

Grade A, and why

agents 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 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.

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/agents/SKILL.md · 90 lines

How it starts

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

Multi-agent systems: pipelines, orchestration, verification, semantic integrity.

WHEN ACTIVE

Building or analyzing agent systems, multi-LLM pipelines, orchestration logic, inter-agent protocols, semantic verification, audit trails.

CORE PRINCIPLES

No agent verifies itself. Self-verification is not verification. Every non-trivial output needs an independent checker — different model, different prompt framing, or deterministic validator.

Semantic typing, always. Every message between agents carries a type: is it raw data, a verified fact, an inference, an opinion, or an execution plan? Untyped messages are bugs waiting to happen.

Provenance is infrastructure, not an afterthought. Build audit trails from day one. Hash-chain or equivalent. Tamper-evident. Without provenance, debugging a multi-agent failure is archaeology.

Trust is dynamic. An agent's reliability changes over time. Track it. An agent that consistently fails verification should lose privileges, not be silently tolerated.

ARCHITECTURE PATTERNS

Linear pipeline A → B → C. Simple, debuggable. Each stage has one job. Use when: task is sequential, stages are independent.

Quorum N agents independently process the same input, majority vote decides. Use when: classification, high-stakes decisions, reducing single-model bias. N=3, majority=2 for 1 fault tolerance. N=5 for 2 faults.

Speaker + Critic One agent generates, another critiques. Different models preferred. Use when: content generation where quality matters.

Router + Specialists Router classifies task, dispatches to specialist agent. Use when: diverse task types, each needing different expertise.

WORKFLOW

1. DEFINE AGENT ROLES
   What does each agent produce? What register? (SENSE/FACT/LOGIC/OPINION/CAUSALITY)
   What are its inputs? What are its failure modes?

2. DEFINE VERIFICATION STRATEGY
   Who checks what? Is it quorum, independent verifier, or deterministic check?
   What happens on verification failure? (retry, escalate, log and continue)

3. DEFINE MESSAGE SCHEMA
   What fields does every inter-agent message have?
   Minimum: {type, content, source, confidence, actor, timestamp}

4. BUILD AUDIT TRAIL
   Every message logged. Hash-chain preferred.
   Include: actor, register, confidence, prev_hash.

5. DEFINE FAILURE MODES
   What does the system do when an agent times out?
   When verification fails repeatedly?
   When trust score drops below threshold?

6. TEST WITH ADVERSARIAL INPUTS
   What happens when one agent returns garbage?
   What happens when drift accumulates over many steps?

Read the full file on GitHub · 90 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 · 90 lines · 0 tokens per session scan A 0c1bdc8d7059

Subscribe to this mod's changes

agents is a skill published in the GitHub repository kostyk348/sint-ua-v2.1 (0 stars, last pushed 1mo ago), licensed Apache-2.0. It adds 36 tokens to every session and 784 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-31.

Related

Other skills, from other repositories

mfs-find

Search, grep, browse, and read across registered MFS data sources via the mfs CLI — codebases, docs, PDFs, web crawls, databases (postgres/mysql/mongo/snowflake/bigquery), issue trackers (jira/linear/github), CRMs (hubspot), chat (slack/discord/gmail/feishu), object stores (s3/gdrive). Use whenever the user asks to…

zilliztech/mfs · 225 tokens

mfs-ingest

Register, update, or re-sync data sources for MFS so they become searchable — postgres / mysql / mongo / snowflake / bigquery, github / jira / linear / notion / hubspot / zendesk, slack / discord / gmail / feishu, s3 / gdrive / web / file. Use whenever the user wants to ADD a new data source to MFS, change an existing…

zilliztech/mfs · 196 tokens

deep-research

Answer a broad, open-ended, or multi-part question by iteratively searching MFS-indexed sources, following up on gaps, and synthesizing a cited report — the same "reason and search over private data" job zilliztech/deep-searcher does, but as a skill on top of mfs-find instead of a standalone framework. Use when the…

zilliztech/mfs · 219 tokens

open-tag-admin

Admin/control console for an Open Tag Slack tag-in workflow backed by MFS. Use to set up a new Open Tag bot from scratch, check what is currently running (backend, permitted MFS scopes, Slack channel), change settings, add or remove data sources, switch the CLI agent backend (claude -p / codex exec), invite or move…

zilliztech/mfs · 96 tokens

engrama-onboard

Build a personalized Engrama memory graph for any user through a conversational interview. Use this skill whenever someone says "set up Engrama", "create my graph", "onboard", "build my profile", "configure Engrama for me", or asks how to start using Engrama. Also use when the user mentions they have a different role…

scops/engrama · 104 tokens

handoff

Save a session handoff to Engram for future sessions. Captures decisions, todos, blockers, mental model, and next steps as a structured memory. Use when the user wants to preserve session context before ending work.

edg-l/engram-mcp · 47 tokens