webiny-admin-aco-catalog

Catalogs Webiny ACO React hooks for folder navigation and record querying.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Developers building Webiny admin extensions need to locate the correct ACO (Advanced Content Organization) hooks and their exact import paths without digging through the monorepo source tree.

Core Features & Use Cases

  • Hook Discovery: Lists the available ACO abstractions, useNavigateFolder and useRecords, with their import statements.
  • Source Pointers: Maps each abstraction to its source file in @webiny/app-aco so you can read exact interfaces and types.
  • Use Case: When building a custom admin view that browses content folders, look up useNavigateFolder to get its import path, then read the source file to confirm its signature before wiring it into your React component.

Quick Start

Ask the assistant to show the Webiny ACO hook for navigating folders and provide its import statement and source file location.

Frequently Asked Questions about webiny-admin-aco-catalog

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

FAQPage Schema
How do I navigate folders programmatically in Webiny admin?

Use the useNavigateFolder hook imported from webiny/admin/aco. Its source is located at @webiny/app-aco/hooks/useNavigateFolder.ts, which you should read to confirm the exact interface and parameters before use.

What hook queries records in Webiny ACO?

The useRecords hook queries records within Webiny's Advanced Content Organization module. Import it from webiny/admin/aco and check @webiny/app-aco/hooks/useRecords.ts for its exact types and return values.

Where is the Webiny ACO source code located?

The ACO hooks live in the @webiny/app-aco package inside the webiny-js monorepo, specifically under the hooks directory. Each abstraction in this catalog points to its exact source file.

Can I use Webiny ACO hooks outside the admin app?

These hooks are designed for the Webiny admin application context and rely on its React providers. Using them outside the admin app requires the same provider tree, which is not covered by this catalog.