{ "name": "action", "implementation": "/packages/remix/src/generators/action/action.impl.ts", "schema": { "$schema": "https://json-schema.org/schema", "$id": "action", "type": "object", "description": "Generate an action for a given route.", "properties": { "path": { "type": "string", "description": "The route path or path to the filename of the route.", "$default": { "$source": "argv", "index": 0 }, "x-prompt": "What is the path of the route? (e.g. 'apps/demo/app/routes/foo/bar.tsx')" }, "nameAndDirectoryFormat": { "description": "Whether to generate the action in the directory as provided, relative to the current working directory and ignoring the project (`as-provided`) or generate it using the project and directory relative to the workspace root (`derived`).", "type": "string", "enum": ["as-provided", "derived"] } }, "required": ["path"], "presets": [] }, "description": "Add an action function to an existing route", "aliases": [], "hidden": false, "path": "/packages/remix/src/generators/action/schema.json", "type": "generator" }