Adding Core Functions
When to Use
- Creating new ADT operations (CRAUD, discovery, preview)
- Adding pure business logic functions
- Implementing library-consumable functionality
One Function Per File
Each core function gets its own file. No multi-function files.
Location: src/core/{domain}/{function}.ts
core/adt/
├── index.ts # Barrel exports
├── types.ts # Shared types (AdtRequestor, ObjectConfig)
├── helpers.ts # Internal helpers (n
[Description truncada. Veja o README completo no GitHub.]