symbiote-impact

symbiote-impact is a skill for Claude Code, Codex from MohmmedAshraf/symbiote. It costs 64 tokens per session (542 once invoked), scanned A, original, MIT.

A code-change impact checker that follows a project's dependency links to find files, modules, and tests that may be affected.

In plain words
What is it for?
Use it to check the effects of renaming a symbol, review uncommitted changes, inspect a file's dependencies, or trace how code flows between modules.
Why use it?
It helps reveal what a change could break before you edit the code, especially when changing shared functions or planning a migration.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to check the effects of renaming a symbol, review uncommitted changes, inspect a file's dependencies, or trace how code flows between modules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mohmmedashraf/symbiote/symbiote-impact
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 MohmmedAshraf/symbiote --skill symbiote-impact
Clone the repo
git clone --depth 1 https://github.com/MohmmedAshraf/symbiote

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 symbiote-impact

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/mohmmedashraf/symbiote/symbiote-impact"><img src="https://agentmods.dev/badge/skills/mohmmedashraf/symbiote/symbiote-impact.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 64 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 542 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.00064 $0.00542
Opus 5 $0.00032 $0.00271
Sonnet 5 $0.00013 $0.00108
Haiku 4.5 $0.00006 $0.00054

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

Security

Grade A, and why

symbiote-impact 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.

packages/cli/skills/symbiote-impact/SKILL.md · 73 lines

What it actually says

Symbiote Impact Analysis

Analyze the blast radius of a code change before making it — trace dependencies, find affected files, and surface risks.

When to Use

  • Before refactoring a widely-used function or module
  • When renaming a symbol across the codebase
  • To understand what tests might break from a change
  • When planning a large-scale migration

Process

Step 1: Identify the Target

Determine what the user wants to change:

  • A specific symbol (function, class, type) → use get_impact
  • Uncommitted git changes → use detect_changes
  • A file's full dependency tree → use get_context_for_file

Step 2: Run Impact Analysis

For a specific symbol:

Use the get_impact MCP tool with the symbol name. It returns every affected file with confidence scores and traversal depth (max 3 levels).

For uncommitted changes:

Use the detect_changes MCP tool. It maps git diffs to modules and assigns risk levels.

For a file's dependency tree:

Use the get_context_for_file MCP tool to see all dependencies and dependents.

Step 3: Trace Deeper (if needed)

For high-risk changes, go deeper:

  • trace_flow — trace execution from an entry point through the call graph
  • trace_data — trace data flow forward or backward from a symbol
  • find_implementations — find all classes implementing an interface

Step 4: Check for Safe Rename

If the change is a rename, use rename_symbol MCP tool to get a preview of all files that would change (dry-run, no writes).

Step 5: Present Results

Summarize in this format:

## Impact Analysis: {symbol or change description}

**Direct dependents:** {count} files
**Transitive impact:** {count} files (depth {N})
**Risk level:** {low|medium|high}

### Affected Files
- `path/to/file.ts` — {why it's affected}
- `path/to/other.ts` — {why it's affected}

### Recommendations
- {what to test}
- {what to update}
- {risks to watch for}
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 · 73 lines · 64 tokens per session scan A d7d745b9cfc8

Subscribe to this mod's changes

symbiote-impact is a skill published in the GitHub repository MohmmedAshraf/symbiote (5 stars, last pushed 5mo ago), licensed MIT. It adds 64 tokens to every session and 542 once invoked, about $0.0003 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

dekko-verify

Sanity-check a suspiciously low or zero call-graph result from dekko (getcallers, getcallees, findusages, impactedtests, unused) before concluding "no callers" or "dead code," or a heritage/throws-provenance result (query supertypes, query subtypes, query throws) that labels something (external) when you expect it to…

aahlijia/dekko · 151 tokens

dekko-review-context

Give a code-review or PR-description flow a structural head start before reading a diff line by line. Trigger when the user asks for a PR description, a pre-merge summary, or invokes a code-review flow (this repo's open-agent-hub:review//review, or an equivalent in another environment) against a diff in a repo with a…

aahlijia/dekko · 86 tokens

simplify

Review recent code changes for reuse, code quality, and efficiency, then directly apply straightforward cleanup improvements. Use when the user wants a post-implementation cleanup pass, pre-PR polish, or asks to simplify/refine recent changes. Invoke with /simplify or /simplify .

QwenLM/qwen-code · 63 tokens

issue-creation

Trigger: issue creation, bug reports, feature requests, or issue approval. Create and triage GitHub issues from repository evidence.

Gentleman-Programming/gentle-ai · 30 tokens

sdd-tasks

Break an SDD change into implementation tasks. Trigger: orchestrator launches task planning for a change.

Gentleman-Programming/gentle-ai · 25 tokens

work-unit-commits

Plan commits as reviewable work units. Trigger: implementation, commit splitting, chained PRs, or keeping tests and docs with code.

Gentleman-Programming/gentle-ai · 33 tokens