One-click install
npx skills add https://github.com/Elijah-J/InfoScraper --skill deprecation-scan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deprecation-scan
Source: https://github.com/Elijah-J/InfoScraper/tree/main/.agents/skills/deprecation-scan
Command: npx skills add https://github.com/Elijah-J/InfoScraper --skill deprecation-scan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Scan locally scraped documentation for deprecation and removal notices relevant to this project, then cross-reference against our source code to find deprecated APIs we still use.

Core Features & Use Cases

  • Produces an actionable report with doc citations grouped by severity.
  • Assists with dependency health audits and catching new deprecations after re-scraping.
  • Supports scoping by collection via the dependency map to focus analysis.

Quick Start

Invoke the deprecation-scan skill to generate a structured deprecation report for your local documentation corpus.

Frequently Asked Questions about deprecation-scan

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

FAQPage Schema
How do I find deprecated APIs in my project documentation?

Scanning locally scraped documentation cross-references removal notices against your codebase imports to identify deprecated APIs. The resulting structured report cites affected sources, groups findings by severity, and suggests replacements for deprecated APIs still in use.

What is the best way to audit Python dependencies for removal notices?

Auditing Python dependencies for removal notices involves cross-referencing local documentation with the codebase. The process filters findings by the project's minimum Python version and active imports, producing a source-cited report with actionable remediation steps for dependency health workflows.

Can I scope deprecation reporting to specific documentation collections?

You can scope deprecation reporting to specific documentation collections using the dependency map. This focuses the analysis on relevant subsets of your locally scraped docs, ensuring the report only highlights deprecated APIs relevant to the selected collection's imports.

Does the deprecation scan filter results based on Python version?

The deprecation scan filters results based on the project's minimum Python version. By cross-referencing removal notices with your codebase, it ensures the report only includes deprecated APIs and version-specific warnings relevant to your active environment.

Why should I cross-reference documentation with my codebase for deprecations?

Cross-referencing documentation with your codebase isolates deprecated APIs you actively use from general removal notices. This prevents alert fatigue by producing a focused report with suggested replacements and severity levels tailored to your project's actual imports.