webiny-extensions-catalog

$npx mdskill add webiny/webiny-js/webiny-extensions-catalog

Import five core abstractions to build Webiny projects.

  • Enables agents to access Admin, Api, Cli, Infra, and Project interfaces.
  • Depends on webiny/extensions package for all abstraction definitions.
  • Agents import specific abstractions directly from the extensions module.
  • Provides typed interfaces for configuring project components and services.
SKILL.md
.github/skills/webiny-extensions-catalogView on GitHub ↗
---
name: webiny-extensions-catalog
context: webiny-api
description: >
  extensions — 5 abstractions.
---

# extensions

## How to Use

1. Find the abstraction you need below
2. Read the source file to get the exact interface and types
3. Import: `import { Name } from "<importPath>";`

## Abstractions

---

**Name:** `Admin`
**Import:** `import { Admin } from "webiny/extensions"`
**Source:** `@webiny/project-aws/admin.ts`

---

**Name:** `Api`
**Import:** `import { Api } from "webiny/extensions"`
**Source:** `@webiny/project-aws/api.ts`

---

**Name:** `Cli`
**Import:** `import { Cli } from "webiny/extensions"`
**Source:** `@webiny/project-aws/cli.ts`

---

**Name:** `Infra`
**Import:** `import { Infra } from "webiny/extensions"`
**Source:** `@webiny/project-aws/infra.ts`

---

**Name:** `Project`
**Import:** `import { Project } from "webiny/extensions"`
**Source:** `@webiny/project-aws/project.ts`

---
More from webiny/webiny-js