hf.check-cross-service-impact

Warn on Python edits under shared/ that affect downstream services.

5|2|Updated Feb 18, 2026
One-click install
npx skills add https://github.com/T-rav/hydraflow --skill hf-check-cross-service-impact
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hf.check-cross-service-impact
Source: https://github.com/T-rav/hydraflow/tree/main/.codex/skills/hf.check-cross-service-impact
Command: npx skills add https://github.com/T-rav/hydraflow --skill hf-check-cross-service-impact

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill prevents risky edits in shared code by surfacing downstream cross-service impact before changes are merged.

Core Features & Use Cases

  • Cross-service impact detection: Detects when edits to shared code may affect other services by identifying imports from shared.
  • Session-based noise reduction: Warns only once per 4-hour session to reduce warning fatigue.
  • Guided remediation: Suggests targeted tests and review steps for affected services.

Quick Start

Edit a Python file under shared/ to trigger a cross-service impact warning.

Frequently Asked Questions about hf.check-cross-service-impact

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect cross-service impact when editing shared Python code?

Cross-service impact detection flags edits to Python files under shared/ by identifying imports from shared and warning you with a list of affected services before changes are merged.

How can I warn developers about risky edits in shared code without causing warning fatigue?

To reduce warning fatigue, shared code edit warnings trigger only once per 4-hour session by writing a marker to /tmp, ensuring developers are alerted without repeated interruptions.

Can I restrict cross-service impact checks to Python files and exclude tests?

Yes, the pretool hook inspects edited file paths and restricts checks to Python files under shared/, explicitly excluding tests to focus warnings on actual downstream service impacts.

What is a pretool hook for shared code edits and how does it work?

A pretool hook intercepts edits to shared Python files, detects downstream imports from shared, and warns once per session with affected services and guided remediation steps.

Does this shared code impact warning tool require any external dependencies?

No, this shared code impact warning tool operates as a standalone pretool hook with no external dependencies, using only local /tmp markers to manage session-based noise reduction.

What guided remediation is provided when editing shared code affects other services?

When editing shared code affects other services, the warning suggests targeted tests and review steps for the affected services to guide safe remediation before merging changes.