Autonomous Agent Patterns

Autonomous Agent Patterns is a skill for Claude Code, Codex from mayurrathi/awesome-agent-skills. It costs 39 tokens per session (4,876 once invoked), scanned C, original, no licence file.

A collection of design patterns for building autonomous coding agents. It covers tools, permissions, browser automation, and workflows where a person can review or intervene.

In plain words
What is it for?
Use it when designing coding agents, connecting tools, automating browsers, or adding human review steps.
Why use it?
It helps structure agents that can act independently while controlling what they are allowed to do.

Skill for Claude CodeCodex

Which agent this was written for is unclear — body not stored (licence); the path alone says nothing.

Good fit Use it when designing coding agents, connecting tools, automating browsers, or adding human review steps.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns
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 mayurrathi/awesome-agent-skills --skill autonomous-agent-patterns
Clone the repo
git clone --depth 1 https://github.com/mayurrathi/awesome-agent-skills

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 Autonomous Agent Patterns

README.md
[![agentmods](https://agentmods.dev/badge/skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns/github.svg)](https://agentmods.dev/skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns)
Your own site
<a href="https://agentmods.dev/skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns"><img src="https://agentmods.dev/badge/skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns/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 Autonomous Agent Patterns

Your own site · 80×15
<a href="https://agentmods.dev/skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns"><img src="https://agentmods.dev/badge/skills/mayurrathi/awesome-agent-skills/autonomous-agent-patterns.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,876 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 3 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin unknown 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.00039 $0.04876
Opus 5 $0.00019 $0.02438
Sonnet 5 $0.00008 $0.00975
Haiku 4.5 $0.00004 $0.00488

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

Security

Grade C, and why

Autonomous Agent Patterns scanned grade C with 3 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 5d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

if any(danger in cmd for danger in ["rm -rf", "sudo", "chmod"]):

Makes network callslowCapability

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

response = requests.get(url)

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

result = subprocess.run(
skills/autonomous-agent-patterns/SKILL.md · 764 lines

The source is not reproduced here

No licence file

A repository with no LICENSE is all rights reserved by default, so the body is not copied here. The metadata, the measurements and the link are.

Read it on GitHub

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. 5d ago First seen · 764 lines · 39 tokens per session scan C 36daadf20bc1

Subscribe to this mod's changes

Autonomous Agent Patterns is a skill published in the GitHub repository mayurrathi/awesome-agent-skills (7 stars, last pushed 6mo ago), with no licence file. It adds 39 tokens to every session and 4,876 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 3 findings (recursive force delete, makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

crxjs

CRXJS Chrome extension development — true HMR for popup, options, content scripts, side panels, manifest-driven builds, dynamic content script imports (?script, ?script&module), and defineManifest for type-safe manifests. Uses Vite as its build tool. Use when the user mentions CRXJS, crxjs, @crxjs/vite-plugin…

samber/cc-skills · 186 tokens

playwright-skill

Complete browser automation with Playwright. Auto-detects dev servers, writes clean test scripts to /tmp. Test pages, fill forms, take screenshots, check responsive design, validate UX, test login flows, check links, automate any browser task. Use when user wants to test websites, automate browser interactions…

tech-leads-club/agent-skills · 95 tokens

chrome-devtools

Browser debugging, performance profiling, and automation via Chrome DevTools MCP. Use when user says "debug this page", "take a screenshot", "check network requests", "profile performance", "inspect console errors", or "analyze page load". Do NOT use for full E2E test suites (use playwright-skill) or non-browser…

tech-leads-club/agent-skills · 74 tokens

spotify-audio-url

Recebe um link de episódio do Spotify e devolve APENAS a URL direta do arquivo de áudio (MP3/M4A) publicada no feed RSS aberto do podcast, ou a mensagem de recusa quando o conteúdo não tem RSS aberto. Use SEMPRE que o usuário colar um link open.spotify.com ou spotify.link e pedir para baixar, salvar, extrair…

marioluciofjr/skills · 158 tokens

browsing-with-playwright

Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction. NOT when only fetching static content (use curl/wget instead).

mjunaidca/mjs-agent-skills · 65 tokens

browser-use

Browser automation using Playwright MCP. Navigate websites, fill forms, click elements, take screenshots, and extract data. Use when tasks require web browsing, form submission, web scraping, UI testing, or any browser interaction.

mjunaidca/mjs-agent-skills · 47 tokens