Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Build your own extension behavior with custom hooks
import { createCustomHook } from '@armory-sh/extensions'; const customHook = createCustomHook({ key: 'my-extension', handler: async (context) => { if (!context.payload) { return; } context.payload.extensions = { ...(context.payload.extensions ?? {}), 'my-extension': { enabled: true } }; }, priority: 75 });