Integration Finder Skill

Identify integration points between new modules and existing codebases.

2|1|Updated Dec 26, 2025
One-click install
npx skills add https://github.com/1ambda/dataops-platform --skill integration-finder-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Integration Finder Skill
Source: https://github.com/1ambda/dataops-platform/tree/main/.copilot/skills/integration-finder
Command: npx skills add https://github.com/1ambda/dataops-platform --skill integration-finder-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill ensures that when new modules are implemented, their integration points with existing related modules are identified and established beforehand, guaranteeing proper connectivity and preventing duplicated efforts.

Core Features & Use Cases

  • Proactive Integration Identification: Automatically finds relevant existing modules based on keywords and import graphs before new module development begins.
  • Reduces Duplication: Prevents the re-implementation of existing functionalities by highlighting reusable components.
  • Ensures Connectivity: Guarantees that new features are properly linked to the existing codebase, avoiding integration gaps.
  • Use Case: When starting to implement a new 'Transpile' module, this Skill will identify that core/renderer.py and core/templates.py are related and need to be imported, preventing the developer from building similar logic from scratch.

Quick Start

When starting to implement a new 'Transpile' module, ask the agent to find related existing modules.

Frequently Asked Questions about Integration Finder Skill

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

FAQPage Schema
How do I find integration points for a new module in an existing codebase?

To find integration points for a new module, this Skill scans the existing codebase using keyword matching and import graph analysis. It identifies related functionalities and recommends where to connect new modules to prevent code duplication.

How does import graph analysis prevent code duplication during refactoring?

Import graph analysis prevents code duplication during refactoring by mapping existing module dependencies. It highlights reusable components and related functionalities, ensuring developers import existing logic instead of re-implementing it from scratch.

Can I check module connectivity before implementing a new feature?

You can check module connectivity before implementing a new feature through proactive integration identification. The Skill scans for related existing modules based on keywords to guarantee proper connectivity and establish integration points beforehand.

What is the best way to connect new modules to existing code?

The best way to connect new modules to existing code is by scanning for related functionalities using keyword matching and import graph analysis. This approach ensures seamless connectivity and proactively verifies integration before and after implementation.

Why does my new module duplicate existing codebase functionalities?

Your new module duplicates existing functionalities because related integration points were not identified beforehand. Scanning the codebase with import graphs and keyword matching highlights reusable components to prevent re-implementing existing logic.