osmedeus-expert

osmedeus-expert is a skill for Claude Code, Codex from j3ssie/osmedeus. It costs 113 tokens per session (3,043 once invoked), scanned A, original, MIT.

A guide to Osmedeus, a security automation engine that runs YAML-defined workflows. Its workflows can group individual execution steps into reusable modules and ordered flows.

In plain words
What is it for?
It helps write YAML modules and flows, run scans against targets, configure runners and triggers, pass parameters, and diagnose executions.
Why use it?
It reduces the need to remember the engine’s file structure, commands, variables, and troubleshooting rules when building or running security workflows.

Skill for Claude CodeCodex

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

Good fit It helps write YAML modules and flows, run scans against targets, configure runners and triggers, pass parameters, and diagnose executions.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/j3ssie/osmedeus/osmedeus-expert
About the project

Osmedeus is a security-focused orchestration engine that runs complex, auditable workflows defined in YAML. Security practitioners use it to automate reconnaissance, scanning, and related operations across local, containerized, remote, distributed, and cloud environments. The catalogue includes instructions and a skill for working with Osmedeus.

j3ssie/osmedeus · 6,556 stars · on GitHub · osmedeus.org

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 j3ssie/osmedeus --skill osmedeus-expert
Clone the repo
git clone --depth 1 https://github.com/j3ssie/osmedeus

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 osmedeus-expert

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/j3ssie/osmedeus/osmedeus-expert"><img src="https://agentmods.dev/badge/skills/j3ssie/osmedeus/osmedeus-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 113 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,043 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 warn 7 Sept 2026
SkillSpector: 2 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Rogue Agent · line 110
    Skill modifies its own code, configuration, or behavior at runtime. Self-modification enables an agent to escalate privileges, disable safety constraints, or install persistent backdoors.
    Fix: Prevent the skill from modifying its own code, SKILL.md, or configuration files. Treat skill files as read-only at runtime.
  • high YARA Match · line 264
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
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.00113 $0.03043
Opus 5 $0.00056 $0.01522
Sonnet 5 $0.00023 $0.00609
Haiku 4.5 $0.00011 $0.00304

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

Security

Grade A, and why

osmedeus-expert 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 11d 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.

public/skills/osmedeus-expert/SKILL.md · 354 lines

How it starts

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

Osmedeus Expert

Expert knowledge for writing YAML workflows and operating the Osmedeus security automation engine.

Quick Orientation

Osmedeus executes YAML-defined workflows with two kinds:

  • module - Single execution unit containing steps (the building block)
  • flow - Orchestrates multiple modules with dependency ordering

Template variables use {{Variable}} syntax. Foreach loop variables use [[variable]] to avoid conflicts.

Running Osmedeus

Essential Commands

# Run a flow against a target
osmedeus run -f <flow-name> -t <target>

# Run a module
osmedeus run -m <module-name> -t <target>

# Run multiple modules in sequence
osmedeus run -m mod1 -m mod2 -t <target>

# Multiple targets from file with concurrency
osmedeus run -m <module> -T targets.txt -c 5

# With parameters
osmedeus run -m <module> -t <target> -p threads=20 -p depth=2
osmedeus run -m <module> -t <target> -P params.yaml

# With timeout and repeat
osmedeus run -m <module> -t <target> --timeout 2h
osmedeus run -m <module> -t <target> --repeat --repeat-wait-time 30m

# Dry run (show what would execute)
osmedeus run -m <module> -t <target> --dry-run

# Chunked processing for large target lists
osmedeus run -m <module> -T targets.txt --chunk-size 100 --chunk-part 0

# Distributed execution
osmedeus run -m <module> -t <target> --distributed-run

Workflow Management

osmedeus workflow list                # List available workflows
osmedeus workflow show <name>         # Show workflow details
osmedeus workflow lint <workflow-path> # Validate workflow YAML

Installation & Setup

osmedeus install base --preset              # Install base from preset repo
osmedeus install base --preset --keep-setting  # Install base, keep settings
osmedeus install workflow --preset          # Install workflows from preset
osmedeus install binary --all               # Install all tool binaries
osmedeus install binary --name <name>       # Install specific binary
osmedeus install binary --all --check       # Check binary status
osmedeus install env                        # Add binaries to PATH
osmedeus install validate --preset          # Validate installation

Read the full file on GitHub · 354 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 11d ago First seen · 354 lines · 113 tokens per session scan A e110489f4602

Subscribe to this mod's changes

osmedeus-expert is a skill published in the GitHub repository j3ssie/osmedeus (6,556 stars, last pushed 1mo ago), licensed MIT. It adds 113 tokens to every session and 3,043 once invoked, about $0.0006 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.