Source profileQuality 93/100

laurigates/claude-plugins/blueprint-plugin/skills/blueprint-autonomy-level3/SKILL.md

blueprint-autonomy-level3

Install blueprint autonomy level 3 (ADR-0020): scheduled-autorun + approved-work-order-execution GitHub workflows. Use when enabling out-of-band blueprint automation in a repo.

Source repository stars
53
Declared platforms
0
Static risk flags
0
Last source update
2026-08-24
Source checked
2026-08-25

Decision brief

What it does: where it fits

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), w…

Best for

  • Use when enabling out-of-band blueprint automation in a repo.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/laurigates/claude-plugins --skill "blueprint-plugin/skills/blueprint-autonomy-level3"
Safe inspection promptEditorial

Inspect the Agent Skill "blueprint-autonomy-level3" from https://github.com/laurigates/claude-plugins/blob/5de06622d8def8c36f7f39d980300aaa15af4357/blueprint-plugin/skills/blueprint-autonomy-level3/SKILL.md at commit 5de06622d8def8c36f7f39d980300aaa15af4357. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Step 1: Verify preconditions

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

    If the Context shows no docs/blueprint/manifest.json, stop with: Blueprint not initialized — run /blueprint:init first. Nothing else.Read AUTONOMYLEVEL and WOAUTOEXECUTE from the Context automation config — these are the activation gate, reported in Step 4. Scaffolding does not flip them; the workflows stay dormant (the blueprint-wo-guard.sh gate HAL…
  2. 02

    Step 2 (--check mode): audit drift, then stop

    For each managed file, diff the installed copy against the plugin source and report one line each:

    For each managed file, diff the installed copy against the plugin source and report one line each:Report the table and stop. DRIFT/ABSENT → advise re-running without --check to re-sync (the templates are the source of truth; per code-quality-plugin:code-scaffold-backport, a fix to the plugin template re-lands here o…
  3. 03

    Step 3 (install mode): copy templates + scripts

    The workflows call the deterministic scripts from .github/blueprint/ (they are blueprint-plugin scripts, not present on a bare CI runner otherwise). The agent-judgment halves invoke anthropics/claude-code-action with the claude-plugins marketplace + blueprint-plugin enabled.

    The workflows call the deterministic scripts from .github/blueprint/ (they are blueprint-plugin scripts, not present on a bare CI runner otherwise). The agent-judgment halves invoke anthropics/claude-code-action with th…
  4. 04

    Step 4: Report activation requirements (do not perform them)

    Print a receipt listing exactly what the human must do to activate — scaffolding alone leaves everything dormant:

    Manifest gate — set in docs/blueprint/manifest.json:automation.autonomylevel: 3 (both workflows), andautomation.workorders.autoexecute: true (executor only).
  5. 05

    Step 5: Summarize the safety model

    State the guarantees in the receipt so the human understands what they are enabling (full detail in REFERENCE.md):

    Gating — blueprint-wo-guard.sh HALTs every run unlessHuman approval + provenance — a work order executes only after a humanBudgets + stuck ceiling — per-day cap (RANTODAY counted fail-closed)

Permission review

Static risk signals and limitations

No configured static risk pattern was detected

This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score93/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars53SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
laurigates/claude-plugins
Skill path
blueprint-plugin/skills/blueprint-autonomy-level3/SKILL.md
Commit
5de06622d8def8c36f7f39d980300aaa15af4357
License
MIT
Collected
2026-08-25
Default branch
main
View the original SKILL.md

/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 automaticallyYou 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 AUTONOMY_LEVEL and WO_AUTO_EXECUTE from the Context automation config — these are the activation gate, reported in Step 4. Scaffolding does not flip them; the workflows stay dormant (the blueprint-wo-guard.sh gate HALTs) until the human sets them.

Step 2 (--check mode): audit drift, then stop

For each managed file, diff the installed copy against the plugin source and report one line each:

for pair in \
  ".github/workflows/blueprint-autorun.yml|${CLAUDE_SKILL_DIR}/../../templates/blueprint-autorun.workflow.yml" \
  ".github/workflows/blueprint-wo-execute.yml|${CLAUDE_SKILL_DIR}/../../templates/blueprint-wo-execute.workflow.yml" \
  ".github/blueprint/blueprint-wo-guard.sh|${CLAUDE_SKILL_DIR}/../../scripts/blueprint-wo-guard.sh" \
  ".github/blueprint/blueprint-wo-packet.sh|${CLAUDE_SKILL_DIR}/../../scripts/blueprint-wo-packet.sh" \
  ".github/blueprint/blueprint-autorun.sh|${CLAUDE_SKILL_DIR}/../../scripts/blueprint-autorun.sh" \
  ".github/blueprint/get-automation-config.sh|${CLAUDE_SKILL_DIR}/../../scripts/get-automation-config.sh"; do
  dst="${pair%%|*}"; src="${pair##*|}"
  if [ ! -f "$dst" ]; then echo "ABSENT  $dst"
  elif diff -q "$src" "$dst" >/dev/null 2>&1; then echo "PRESENT $dst"
  else echo "DRIFT   $dst"; fi
done

Report the table and stop. DRIFT/ABSENT → advise re-running without --check to re-sync (the templates are the source of truth; per code-quality-plugin:code-scaffold-backport, a fix to the plugin template re-lands here on re-run).

Step 3 (install mode): copy templates + scripts

mkdir -p .github/workflows .github/blueprint
cp "${CLAUDE_SKILL_DIR}/../../templates/blueprint-autorun.workflow.yml"   .github/workflows/blueprint-autorun.yml
cp "${CLAUDE_SKILL_DIR}/../../templates/blueprint-wo-execute.workflow.yml" .github/workflows/blueprint-wo-execute.yml
cp "${CLAUDE_SKILL_DIR}/../../scripts/blueprint-wo-guard.sh"    .github/blueprint/blueprint-wo-guard.sh
cp "${CLAUDE_SKILL_DIR}/../../scripts/blueprint-wo-packet.sh"   .github/blueprint/blueprint-wo-packet.sh
cp "${CLAUDE_SKILL_DIR}/../../scripts/blueprint-autorun.sh"     .github/blueprint/blueprint-autorun.sh
cp "${CLAUDE_SKILL_DIR}/../../scripts/get-automation-config.sh" .github/blueprint/get-automation-config.sh

The workflows call the deterministic scripts from .github/blueprint/ (they are blueprint-plugin scripts, not present on a bare CI runner otherwise). The agent-judgment halves invoke anthropics/claude-code-action with the claude-plugins marketplace + blueprint-plugin enabled.

Step 4: Report activation requirements (do not perform them)

Print a receipt listing exactly what the human must do to activate — scaffolding alone leaves everything dormant:

  1. Manifest gate — set in docs/blueprint/manifest.json:
    • automation.autonomy_level: 3 (both workflows), and
    • automation.work_orders.auto_execute: true (executor only). Report the current values (from Context) and whether the gate is met. Optional budget caps default to max_per_run 1 / max_per_day 3 / max_cycles 3 — see REFERENCE.md.
  2. SecretCLAUDE_CODE_OAUTH_TOKEN in the repo's Actions secrets.
  3. Labelswork-order-draft (proposals) and work-order-approved (the human relabel that triggers execution). Offer to create the approval label: gh label create work-order-approved --description "Blueprint level-3: execute this approved work order (ADR-0020)" --color 0E8A16.
  4. Branch protection (REQUIRED — load-bearing). The executor job runs with broad Bash + contents: write (it must, to run the consumer's arbitrary test suite and push its work branch), and GitHub cannot ref-scope that token to blueprint/wo-*. So the "human PR review is the final gate" guarantee rests on the default branch being protected: require a pull-request review, restrict who can push, and disallow force-push/self-merge. State plainly that without this, a prompt-injected work order could push to or self-merge into the default branch. Report whether the default branch is protected (gh api repos/{owner}/{repo}/branches/{branch}/protection returns 200) and refuse to call the setup "done" until it is.
  5. Enable the plugin in CI — the caller repo needs blueprint-plugin available to claude-code-action (marketplace + .claude/settings.json).

Step 5: Summarize the safety model

State the guarantees in the receipt so the human understands what they are enabling (full detail in REFERENCE.md):

  • Gatingblueprint-wo-guard.sh HALTs every run unless autonomy_level >= 3 (autorun) and additionally auto_execute: true (executor). Both default off.
  • Human approval + provenance — a work order executes only after a human relabels its proposal issue to work-order-approved, and the gate refuses any issue that didn't come through the pipeline (no work-order-draft/ work-order label). The protected default branch + human PR review are the final gate (see requirement 4).
  • Budgets + stuck ceiling — per-day cap (RAN_TODAY counted fail-closed) and "same order attempted max_cycles× → stuck → surface to human" (loop-integrity).
  • Independent verifier — the executing agent never certifies its own work; the PR's CI suite plus a fresh reviewer agent (the verify job) judge "done", and each iteration writes a state-packet issue comment.
  • Untrusted-input safe — the issue body is the WO carrier and is untrusted; it is bound to an env var, written to a file, and parsed by blueprint-wo-packet.sh — never interpolated into a shell command.

Agentic Optimizations

ContextCommand
Gate + level checkbash <plugin>/scripts/get-automation-config.sh
Drift audit (already installed)/blueprint:autonomy-level3 --check
Verify a packet locallybash <plugin>/scripts/blueprint-wo-packet.sh --body-file <issue-body>
Dry-run the gatebash <plugin>/scripts/blueprint-wo-guard.sh --mode wo-execute --ran-today N --attempts N

For the full workflow templates, the manifest gate/budget schema, the state-packet fields, and the security rationale, see REFERENCE.md.

Frequently asked questions

What to verify before installation and use

What does the blueprint-autonomy-level3 source document cover?

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), w…

How do I install blueprint-autonomy-level3?

The source record exposes this install command: npx skills add https://github.com/laurigates/claude-plugins --skill "blueprint-plugin/skills/blueprint-autonomy-level3". Inspect the command and pinned source before running it.

Alternatives

Compare before choosing

Computed 10024,921

alirezarezvani/claude-skills

app-store-optimization

App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

Computed 10015,122

wanshuiyin/Auto-claude-code-research-in-sleep

citation-audit

Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.

Computed 10014,671

prowler-cloud/prowler

postgresql-indexing

PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance

Computed 9965

brucesongs/kali-claw

insecure-design

Insecure Design (OWASP A06:2025) focuses on security flaws in system architecture and design phases, rather than code implementation-level bugs.