maa-pipeline-history-audit

maa-pipeline-history-audit is a skill for Claude Code, Codex from KhazixW2/Everything-Maa. It costs 94 tokens per session (1,622 once invoked), scanned A, original, MIT.

A guide for examining a MaaFramework project's Git history, where pipeline files and Python actions define how automation works.

In plain words
What is it for?
Use it to review commits, trace Pipeline JSON and CustomAction changes, and produce an audit report for a chosen commit.
Why use it?
It shows how the project's conventions developed over time, so changes can be understood against their history instead of guessed from the latest files.

Skill for Claude CodeCodex

Written for Claude Code and Codex: shipped in a Claude Code plugin, but also agents/openai.yaml present. Also seen: reads .claude/ paths.

Part of the everything-maa plugin — 14 skills, 3 MCP servers shipped together

Good fit Use it to review commits, trace Pipeline JSON and CustomAction changes, and produce an audit report for a chosen commit.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khazixw2/everything-maa/maa-pipeline-history-audit
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 KhazixW2/Everything-Maa --skill maa-pipeline-history-audit
Clone the repo
git clone --depth 1 https://github.com/KhazixW2/Everything-Maa

Made for: Claude Code, Codex.

Or install everything-maa, the plugin that ships this one along with the rest of its 14 skills, 3 MCP servers.

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 maa-pipeline-history-audit

README.md
[![agentmods](https://agentmods.dev/badge/skills/khazixw2/everything-maa/maa-pipeline-history-audit/github.svg)](https://agentmods.dev/skills/khazixw2/everything-maa/maa-pipeline-history-audit)
Your own site
<a href="https://agentmods.dev/skills/khazixw2/everything-maa/maa-pipeline-history-audit"><img src="https://agentmods.dev/badge/skills/khazixw2/everything-maa/maa-pipeline-history-audit/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 maa-pipeline-history-audit

Your own site · 80×15
<a href="https://agentmods.dev/skills/khazixw2/everything-maa/maa-pipeline-history-audit"><img src="https://agentmods.dev/badge/skills/khazixw2/everything-maa/maa-pipeline-history-audit.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 94 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,622 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 pass 7 Sept 2026
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.00094 $0.01622
Opus 5 $0.00047 $0.00811
Sonnet 5 $0.00019 $0.00324
Haiku 4.5 $0.00009 $0.00162

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

Security

Grade A, and why

maa-pipeline-history-audit 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 12d 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/maa-pipeline-history-audit/SKILL.md · 108 lines

How it starts

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

Pipeline History Audit

Overview

Use this skill to let a Maa project "teach" its Pipeline and CustomAction conventions from real Git history. The output is an audit report, not a code change, unless the user explicitly asks to fix findings afterward.

Default to the current repository and current HEAD unless the user provides a path or commit. If the target checkout is not at the requested commit, read from git show <target>:<path> and git log <target> instead of moving the user's branch.

Workflow

  1. Ground the target.

    • Record repo root, current branch, HEAD, requested target commit, root commit, and git status --short.
    • Treat uncommitted changes as user work. Do not reset, checkout, clean, or format them.
    • If the user names a future/other commit that is not checked out, audit that commit object directly.
  2. Classify every commit.

    • Traverse with git log --reverse --date=short --format=%H%x00%h%x00%ad%x00%s <target>.
    • For each commit, inspect git diff-tree --root --no-commit-id --name-status -r <commit>.
    • At the target commit, read the main interface.json / interface.jsonc, resolve its import[] and resource[].path relative to that main Interface, and derive the target declaration and resource path set. Do not infer paths from an assets/... convention.
    • Mark a commit as relevant if it touches:
      • the main Interface or an Interface import
      • pipeline / default pipeline / image files under declared resource roots
      • agent-related Python files or the project's declared agent entry
      • project data tables used by those pipelines, such as table JSON or intelligence data when present
      • skills/maa-pipeline-* or legacy .claude/skills/pipeline-*
    • Relevant type labels are Pipeline, Option, Agent, Table, and Skill; labels may overlap.
    • List all commits in an appendix, including irrelevant commits.
  3. Scan historical change themes.

    • Use git log -G over the relevant pathspecs for:
      • "action": "Custom"
      • custom_action and @AgentServer.custom_action
      • custom_action_param
      • "next": and [JumpBack]
      • pipeline_override
      • enable / enabled
      • OCR, TemplateMatch, ColorMatch, color_filter
      • run_task(, run_recognition(, get_node_data(
    • Use these counts as navigation aids, not as the final conclusion.

Read the full file on GitHub · 108 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. 12d ago First seen · 108 lines · 94 tokens per session scan A de38b61007ff

Subscribe to this mod's changes

maa-pipeline-history-audit is a skill published in the GitHub repository KhazixW2/Everything-Maa (12 stars, last pushed 4d ago), licensed MIT. It adds 94 tokens to every session and 1,622 once invoked, about $0.0005 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.

Related

Other skills, from other repositories

bridge

Use when the user wants hyperflow's behavioral rules to apply outside the terminal CLI — in Claude Code Desktop, claude.ai web, or IDE extensions that don't load CLI plugins. Writes a managed doctrine block into the project's CLAUDE.md so autonomy + intent-routing + commit cadence + role separation + file-first rules…

jeremylongshore/tons-of-skills-marketplace · 126 tokens

atmos-hooks

Atmos hooks: lifecycle events, hook kinds, command/store/git/security hooks, step/steps hooks, when: conditions, scoping and overrides, toolchain integration, --skip-hooks, and Atmos Pro/local output.

cloudposse/atmos · 46 tokens

taiyi-integration

A project workflow skill for closing a TaiyiForge change and recording it in a CHANGELOG.md file. It checks review results, tests, and the state of the working tree before archiving the change.

Dong90/oh-my-taiyiforge · 27 tokens

qa

QA test your code changes by reading your git diff, choosing the right validation path for frontend/browser and backend changes, and reporting pass/fail with evidence.

Skyvern-AI/skyvern · 33 tokens

no-mistakes

Validate committed feature-branch changes through the no-mistakes pipeline: intent, rebase, review, test, docs, lint, push, PR, and CI. Use when the user asks to run no-mistakes, ship safely, validate before pushing, or gate a change before it reaches upstream.

stevesolun/ctx · 67 tokens

codex-autoresearch

Run autonomous, measurable experiments in a Git repository: change one hypothesis, verify a numeric metric, keep improvements, and revert failures. Use when the user wants Codex to keep iterating toward a numeric target in the foreground or as a detached background run. Do not use for ordinary one-shot coding…

leo-lilinxiao/codex-autoresearch · 80 tokens