Skip to content
AI & Agents
Skill

/remove-deprecated-api

AEM Cloud Service expert skill — migrate deprecated and removed Java APIs to comply with AEM as a Cloud Service enforcement policies. Detection is **plugin-driven, not table-driven**: the skill runs the AEM Analyser Maven Plugin (`com.adobe.aem:aemanalyser-maven-plugin`) at its

From plugin
adobe-skills
162160 skills6 agents4 MCP
Install
$ npx -y skills add adobe/skills --skill remove-deprecated-api --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/remove-deprecated-api

Context preview

The summary Claude sees to decide when to auto-load this skill.

AEM Cloud Service expert skill — migrate deprecated and removed Java APIs to comply with AEM as a Cloud Service enforcement policies. Detection is **plugin-driven, not table-driven**: the skill runs the AEM Analyser Maven Plugin (`com.adobe.aem:aemanalyser-maven-plugin`) at its

SKILL.md

remove-deprecated-api.SKILL.md
name: remove-deprecated-api
description: |
  AEM Cloud Service expert skill — migrate deprecated and removed Java APIs to
  comply with AEM as a Cloud Service enforcement policies. Detection is **plugin-driven,
  not table-driven**: the skill runs the AEM Analyser Maven Plugin
  (`com.adobe.aem:aemanalyser-maven-plugin`) at its latest published version against the
  project and parses the `region-deprecated-api` output — the same data Cloud Manager's
  pipeline uses. Each finding carries the plugin's own deprecation hint (typically a
  successor package parsed from the analyser message), which drives the fix. Use when
  auditing deprecated APIs, fixing Cloud Manager pipeline failures citing
  `region-deprecated-api` / `api-regions-check` / `Import-Package not satisfied`, or
  proactively modernizing AEM projects before enforcement deadlines.
license: Apache-2.0

Remove Deprecated API — AEM as a Cloud Service

> This pattern is executed by the code-assessment runbook — follow > [`../references/runbook.md`](../references/runbook.md) for the outer flow (preflight → > plan → apply → verify, run log). This skill supplies the plugin-driven detection and > the hint-driven fix recipe the runbook applies.

Overview

Adobe curates the list of deprecated / removed AEM APIs inside the AEM SDK's `api-regions` metadata; Cloud Manager's `region-deprecated-api` analyser task consumes that JSON at build time. The **AEM Analyser Maven Plugin** (`com.adobe.aem:aemanalyser-maven-plugin`) runs the same task locally against the project's built bundles. This skill uses the plugin as its detection engine — no curated tables, no static lists, no drift.

For each deprecated package the plugin reports, its log line contains a **hint**: the `deprecated.msg` field from the SDK metadata, which typically names a successor package (e.g. *"Please use `org.apache.sling.xss` instead"*). Fixes are derived from that hint at plan time. When the hint names no successor, the recipe consults the Adobe **Experience League** API-removal guidance as a documented fallback.

Classification — confirm this pattern applies

  • Any `*.java`, `pom.xml`, or OSGi config file the AEM Analyser Maven Plugin reports

under `region-deprecated-api` (i.e. any `Usage of deprecated ... found` log line produced by `mvn verify` against the project).

  • Cloud Manager code-quality pipeline failures citing `region-deprecated-api`,

`api-regions-check`, `Import-Package not satisfied`, or `bundle-unversioned-packages` violations.

The plugin only reports **past-due** deprecations by default (entries whose `for-removal` date has already elapsed). Future-dated deprecations are not touched; re-running the skill after each removal date passes picks them up automatically — the list is live.

Discovery — two-phase

The detector lives in the shared Java analyzer (`scripts/analyzer/detectors/RemoveDeprecatedApi.java`), same shape as every other pattern's detector — but its rules are **loaded at run time** from a preflight-produced cache, not hardcoded.

Phase 1 — preflight (populates the rules cache)

bash plugins/aem/cloud-service/skills/code-assessment/remove-deprecated-api/scripts/detect.sh <project-root>

`detect.sh`:

1. Resolves the latest `com.adobe.aem:aemanalyser-maven-plugin` and the latest `com.adobe.aem:aem-sdk-api` releases from Maven Central (`maven-metadata.xml`); each can be pinned with `--pin-plugin <version>` / `--pin-sdk <version>`. The freshest SDK is used by default because Cloud Manager itself runs the analyser against the latest SDK — matching that behaviour surfaces every deprecation the pipeline will flag. If the project's `pom.xml` pins an older SDK via `<sdkVersion>X.Y.Z</sdkVersion>` or `<useDependencyVersions>true</useDependencyVersions>` inside the analyser plugin config, `detect.sh` overrides at the CLI (`-DsdkVersion=<latest>` and `-DsdkUseDependency=false`) so the fresh set is used just for the preflight — no pom edit. Pass `--respect-pom-sdk` to honour the pom's pin instead. 2. Invokes the analyser by its fully-qualified `com.adobe.aem:aemanalyser-maven-plugin:<version>:project-analyse` coordinates, so the resolved version runs whether or not the project declares the plugin — **the pom is never modified** (no patch, no backup, no restore). Command shape: `mvn package com.adobe.aem:aemanalyser-maven-plugin:<version>:project-analyse …` — the `package` phase (override with `--goal`) builds the module artifacts that `project-analyse` inspects. Log path: `/tmp/aem-analyser.log` (override with `--log <path>`). 3. Parses `Usage of deprecated package found : <pkg> : <hint> Deprecated since <since> For removal : <date>` and `Usage of deprecated library found : <lib>, package(s) : <start>...<end> : <hint>` lines. 4. **Writes the rules cache TSV** — `<package>\t<hint>\t<for_removal>` per line — at `$AEM_DEPRECATED_API_RULES` (env override) or `$TMPDIR/aem-code-assessment/deprecated-api-rules.tsv` (default). 5. Emits a JSON summary on stdout (findings + meta) for callers that don't chain through `analyze.sh`.

Phase 2 — analyzer (consumes the cache, emits findings)

bash plugins/aem/cloud-service/skills/code-assessment/scripts/analyze.sh <workspace-root>

The Java `RemoveDeprecatedApi` detector reads the rules TSV, matches each rule's package against every `import` in the corpus (longest-prefix match), applies today's past-due gating as a defence-in-depth, and emits findings in the standard `{pattern,file,line,snippet}` shape with an added `hint` field carrying the analyser message.

**Findings shape** — the standard runbook shape plus an optional `hint`:

{
  "findings": [
    {
      "pattern": "remove-deprecated-api",
      "file": "core/src/main/java/com/example/MyService.java",
      "line": 5,
      "snippet": "org.apache.log4j.Logger",
      "hint": "The log4j 1.x libraries are deprecated. Please use org.slf4j instea
Read more
Ships withadobe-skills

Repository of Adobe skills for AI coding agents.

Get the whole plugin

Other skills on adobe-skills.