webiny-admin-build-params-catalog

Catalogs Webiny admin build-params abstractions with import paths and source file locations.

8.0k|673|Updated Jan 9, 2018
One-click install
npx skills add https://github.com/webiny/webiny-js --skill webiny-admin-build-params-catalog
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: webiny-admin-build-params-catalog
Source: https://github.com/webiny/webiny-js/tree/main/skills/user-skills/generated/admin/build-params
Command: npx skills add https://github.com/webiny/webiny-js --skill webiny-admin-build-params-catalog

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers working with the Webiny admin framework often struggle to locate the correct build parameter abstractions and their exact import paths across the monorepo, leading to wasted time searching source files.

Core Features & Use Cases

  • Abstraction Catalog: Lists the three build-params abstractions (BuildParam, BuildParams, useBuildParams) with their exact import statements.
  • Source Mapping: Maps each abstraction to its source file in @webiny/app-admin so developers can read the exact interface and types.
  • Use Case: When building a Webiny admin extension that needs to read build-time configuration, use this catalog to quickly find that useBuildParams is imported from "webiny/admin/build-params" and inspect its hook implementation.

Quick Start

Ask the AI to show you how to import and use the useBuildParams hook from the Webiny admin build-params module.

Frequently Asked Questions about webiny-admin-build-params-catalog

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

FAQPage Schema
How do I import build params in a Webiny admin app?

Import BuildParam, BuildParams, or useBuildParams from "webiny/admin/build-params". Check the source files in @webiny/app-admin/features/buildParams and presentation/buildParams for the exact interfaces and types.

What abstractions are available in Webiny admin build-params?

Three abstractions are available: BuildParam and BuildParams from @webiny/app-admin/features/buildParams/index.ts, and the useBuildParams React hook from @webiny/app-admin/presentation/buildParams/useBuildParams.ts.

Where is the useBuildParams hook defined in Webiny?

The useBuildParams hook is defined in @webiny/app-admin/presentation/buildParams/useBuildParams.ts. Read that source file to see its exact signature and return types before using it.

Does this catalog include the full type definitions for build params?

No, the catalog only lists names, import paths, and source file locations. You must read the referenced TypeScript source files to get the exact interfaces and types.