blueprint-autonomy-level3

blueprint-autonomy-level3 is a skill for Claude Code from laurigates/claude-plugins. It costs 45 tokens per session (2,374 once invoked), scanned A, original, MIT.

An installer for a third-level Blueprint automation setup using GitHub Actions, GitHub's system for running automated workflows. It adds scheduled maintenance and workflows that execute approved work orders.

In plain words
What is it for?
Use it to add scheduled Blueprint tasks and label-triggered execution workflows to another repository, or to check whether an existing setup matches its templates.
Why use it?
It lets repository maintenance and approved automation run outside an interactive coding session, while still using an approval step for work that changes the project.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: reads .claude/ paths; names the TodoWrite tool.

Part of the blueprint-plugin plugin — 35 skills shipped together

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.

agentmods
npx agentmods add skills/laurigates/claude-plugins/blueprint-autonomy-level3
Any agent
npx skills add laurigates/claude-plugins --skill blueprint-autonomy-level3
Clone the repo
git clone --depth 1 https://github.com/laurigates/claude-plugins

Made for: Claude Code.

Or install blueprint-plugin, the plugin that ships this one along with the rest of its 35 skills.

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 blueprint-autonomy-level3

README.md
[![agentmods](https://agentmods.dev/badge/skills/laurigates/claude-plugins/blueprint-autonomy-level3.svg)](https://agentmods.dev/skills/laurigates/claude-plugins/blueprint-autonomy-level3)
Your own site
<a href="https://agentmods.dev/skills/laurigates/claude-plugins/blueprint-autonomy-level3"><img src="https://agentmods.dev/badge/skills/laurigates/claude-plugins/blueprint-autonomy-level3.svg" alt="Measured on agentmods" height="20"></a>
Per session 45 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,374 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00045 $0.02374
Opus 5 $0.00023 $0.01187
Sonnet 5 $0.00009 $0.00475
Haiku 4.5 $0.00005 $0.00237

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

Security

Grade A, and why

blueprint-autonomy-level3 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 2d 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.

blueprint-plugin/skills/blueprint-autonomy-level3/SKILL.md · 162 lines

How it starts

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

/blueprint:autonomy-level3

Scaffold the ADR-0020 autonomy level 3 pipeline — the highest rung of the blueprint automation model — into a consumer repo: two GitHub Actions workflows plus the deterministic scripts they call. Level 3 runs blueprint out of band (scheduled cron + a label-triggered executor), where levels 1–2 only run in-session. This repo (claude-plugins) dogfoods at level 1 and cannot exercise level 3 itself; a consumer repo opts in.

When to Use This Skill

Use this skill when... Use instead when...
A repo wants blueprint bookkeeping + work-order proposals to run on a schedule (no session open) The in-session ambient pass is enough → /blueprint:autopilot (level 2)
A repo wants human-approved work orders executed into PRs automatically You want to create/execute a work order by hand → /blueprint:work-order, /blueprint:prp-execute
Auditing whether an already-scaffolded level-3 repo has drifted from the current templates (--check) Setting the autonomy level itself → edit docs/blueprint/manifest.json

Context

  • Automation config: !bash ${CLAUDE_SKILL_DIR}/../../scripts/get-automation-config.sh
  • Blueprint present: !find . -maxdepth 3 -path '*/docs/blueprint/manifest.json'
  • Autorun workflow already installed: !find . -maxdepth 3 -path '*/.github/workflows/blueprint-autorun.yml'
  • WO-execute workflow already installed: !find . -maxdepth 3 -path '*/.github/workflows/blueprint-wo-execute.yml'

Parameters

Parse $ARGUMENTS:

  • --check: audit-only. Diff the installed workflows/scripts against the plugin templates and report PRESENT / DRIFT / ABSENT per file. Make no changes.
  • (no args): scaffold/install (idempotent — overwrites the managed files with the current template versions, re-syncing any drift).

Execution

Execute this level-3 scaffold.

Step 1: Verify preconditions

If the Context shows no docs/blueprint/manifest.json, stop with: Blueprint not initialized — run /blueprint:init first. Nothing else.

Read the full file on GitHub · 162 lines

Files

What ships with it

1 file 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. 2d ago First seen · 162 lines · 45 tokens per session scan A 5d6cb7483d1a

Subscribe to this mod's changes

blueprint-autonomy-level3 is a skill published in the GitHub repository laurigates/claude-plugins (58 stars, last pushed yesterday), licensed MIT. It adds 45 tokens to every session and 2,374 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-03.

Related

Other skills, from other repositories

ci-log-interpretation

Use this skill when reading or analyzing CI logs from a Shopware GitHub Actions workflow to figure out why a build failed — phrases like "why did CI fail", "what broke the build", "check the pipeline", "interpret these logs", "debug this red build" — or whenever raw run logs, job logs, or check annotations from a…

shopwareLabs/ai-coding-tools · 154 tokens

code-review

CI code-review lane for a GitHub pull request. High-signal correctness and maintainability findings only, scoped out of security when a security lane exists. Use when: 'CI code review', 'claude-review lane', '/review:code-review', or a reusable workflow invokes the org code-review plugin command.

melodic-software/claude-code-plugins · 63 tokens

github-logs-analyze

Analyze GitHub Actions failure logs.

nanasess/eccube-dev-agents · 6 tokens

cicd

CI/CD pipeline patterns and deployment strategies for automated, reliable software delivery. Use when the user asks to design a build pipeline, choose a deployment model (blue-green, canary, rolling), configure environment promotion, manage build artifacts, implement zero-downtime deployments, set up quality gates, or…

krzysztofsurdy/code-virtuoso · 89 tokens

azsdk-common-pipeline-analysis

Analyze Azure SDK CI/CD pipeline failures into a structured diagnosis, and define the required output format. Load this skill before calling azsdkanalyzepipeline, which returns raw failure data that this skill interprets and formats. USE FOR: "pipeline failed", "build failure", "CI check failing", "tests failing in…

Azure/azure-sdk-for-net · 192 tokens

deployment-engineer

Expert deployment engineer specializing in modern CI/CD pipelines, GitOps workflows, and advanced deployment automation. Masters GitHub Actions, ArgoCD/Flux, progressive delivery, container security, and platform engineering. Handles zero-downtime deployments, security scanning, and developer experience optimization.…

rmyndharis/antigravity-skills · 77 tokens