biz-impact-analysis

biz-impact-analysis is a skill for Claude Code from Aimeerrhythm/enterprise-change-workflow. It costs 36 tokens per session (1,627 once invoked), scanned A, original, MIT.

A workflow skill for assessing how completed code changes affect business processes. It uses the project's configured rules and dependency information to analyze a specific Git diff.

In plain words
What is it for?
Use it after implementation verification to produce an impact report covering affected domains, dependencies, external systems, and end-to-end paths.
Why use it?
It helps connect technical changes to affected business operations instead of limiting review to files and tests.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: names the AskUserQuestion tool.

Part of the ecw plugin — 15 skills, 3 commands, 7 agents shipped together

Good fit Use it after implementation verification to produce an impact report covering affected domains, dependencies, external systems, and end-to-end paths.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis
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 Aimeerrhythm/enterprise-change-workflow --skill biz-impact-analysis
Clone the repo
git clone --depth 1 https://github.com/Aimeerrhythm/enterprise-change-workflow

Made for: Claude Code.

Or install ecw, the plugin that ships this one along with the rest of its 15 skills, 3 commands, 7 agents.

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 biz-impact-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis/github.svg)](https://agentmods.dev/skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis)
Your own site
<a href="https://agentmods.dev/skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis"><img src="https://agentmods.dev/badge/skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis/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 biz-impact-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis"><img src="https://agentmods.dev/badge/skills/aimeerrhythm/enterprise-change-workflow/biz-impact-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,627 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.
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.00036 $0.01627
Opus 5 $0.00018 $0.00813
Sonnet 5 $0.00007 $0.00325
Haiku 4.5 $0.00004 $0.00163

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

Security

Grade A, and why

biz-impact-analysis 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 10d 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/biz-impact-analysis/SKILL.md · 102 lines

How it starts

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

Business Impact Analysis

After code changes are complete, dispatch the biz-impact-analysis agent to analyze the impact of changes on business processes.

Announce at start: "Using ecw:biz-impact-analysis to assess business impact of code changes."

Output language: Read ecw.ymlproject.output_language. Pass to dispatched agent prompt. Report headings and labels follow this language.

Flow

  1. Determine Diff Range — Resolution priority:
    1. With explicit args (e.g. git diff abc123...HEAD): use git diff {args} directly.
    2. No args + ECW session-state: read baseline_commit from .claude/ecw/session-data/{workflow-id}/session-state.json and use git diff {baseline_commit}...HEAD. This bounds the analysis to the current workflow.
    3. No args + no session-state: fall back to git diff main...HEAD (or master...HEAD in legacy repos). bash-preflight will rewrite this to {baseline}...HEAD when a baseline is available; if not, expect noise from unrelated historical commits.
  2. Coordinator Preprocessing — Execute before Agent dispatch:
    1. Run git diff --stat {diff_range} to get change statistics
    2. Run git diff --name-only {diff_range} to get file list
    3. Read path-mappings.md, map file list to domains
    4. Fill above results into Agent prompt, replacing full diff

Knowledge file robustness: If path-mappings.md is missing, pass the raw file list to the Agent without domain mapping. The Agent will use path-based heuristic grouping and note [Warning: path mappings not found, domain identification is heuristic] in the report.

  1. Dispatch biz-impact-analysis agent — Read ./prompts/agent-prompt-template.md for the dispatch prompt structure and argument parsing rules. Model: opus (default from models.defaults.analysis; configurable via ecw.yml). Timeout: 300s. Budget cap: single agent, no retry loop — one attempt plus one retry on format failure only. Pass in preprocessed results, await impact analysis report
  2. Return value validation: Verify the agent's report contains required sections ("Analysis Coverage", "Change Summary", "Direct Impact"). If the report is missing critical sections:
    • Log to Ledger: [FAILED: biz-impact-analysis, reason: incomplete report]
    • Retry once with the same model
    • If retry also fails: output the partial report as-is with [degraded: incomplete analysis] header, and warn user that manual impact review may be needed
  3. Auto-backfill knowledge base — If the agent's report contains "Unregistered Cross-Domain Calls", execute the knowledge backfill procedure (see Knowledge Auto-Backfill below)
  4. Present analysis report — Write the full report to session-data/{workflow-id}/biz-impact-report.md (read the workflow_id field from session-state.json). Then output the agent's formatted report directly; append backfill summary if any calls were added
  5. Mark Task complete — Mark the biz-impact-analysis Task as complete via TaskUpdate

Read the full file on GitHub · 102 lines

Files

What ships with it

2 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. 10d ago First seen · 102 lines · 36 tokens per session scan A f591ea0d4b55

Subscribe to this mod's changes

biz-impact-analysis is a skill published in the GitHub repository Aimeerrhythm/enterprise-change-workflow (1 stars, last pushed 3mo ago), licensed MIT. It adds 36 tokens to every session and 1,627 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-08-31.

Related

Other skills, from other repositories

g-review

Run the review gate on the current branch diff. Runs the test suite, captures the diff, and dispatches code-lead, which verifies done conditions and reviews the diff itself. Issues MERGE READY or HOLD.

onlygian/G-Forge · 46 tokens

g-refactor

Guided refactor workflow — identify target, pre-analyse, spec, approve, execute, review. Accepts a scope path, an audit milestone file, or runs interactively. Safe-by-default: checks test coverage before execution and runs the full review gate after.

onlygian/G-Forge · 0 tokens

g-audit

Full-codebase or targeted code quality audit. Detects SOLID violations, code smells, architectural drift, dead code, and test coverage gaps. Targeted scope produces an inline report. Whole-codebase scope produces a prioritised roadmap milestone.

onlygian/G-Forge · 52 tokens

g-blast-radius

Analyse the blast radius of a planned change. Inputs a file path, feature name, or list of paths from a plan. Outputs the set of dependent files (forward and reverse references), a per-file volatility score (commit frequency proxy), and a total blast-radius rating (low / moderate / wide). Read-only.

onlygian/G-Forge · 68 tokens

cross-verify

A cross-checking skill that reviews decisions, designs, documents, and implementations from four viewpoints.

idean3885/claude-ops-agent · 0 tokens

decompose

Break a large goal into 3–8 sequenced tasks, each one /eng → /tdd cycle. Writes to specs/{slug}.todos.md when a spec exists, root TODOS.md otherwise. /decompose — decompose a feature or goal /decompose re-entry — resume where you left off (auto-detected).

iamvonpasion/hashb · 71 tokens