원클릭으로
actions
Actions are what the user does within an application. Use when working with actions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Actions are what the user does within an application. Use when working with actions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | actions |
| description | Actions are what the user does within an application. Use when working with actions. |
execute() method that returns the affected model.readonly properties (User, then the Vault/model, then the data).execute() only orchestrates small private steps in order: sanitize(), validate(), the work (create()/update()/destroy()), then log().TextSanitizer; throw ModelNotFoundException from validate() when the user is not in the vault or lacks the role.LogUserAction on the low queue.Actions should represent what a user wants to do, or what the system needs to do.
The verb should try to follow when possible, the appropriate RESTful method names, like CreateXX, UpdateXX or DestroyXX.
UserActionEnum if it's a user actiontranslationKey() method if it's a user actionlang/en.json (and other locales) if it's a user actionWrite clear, user-focused documentation for the product, including concept explanations, tutorials, how-to guides, and onboarding content. Use when creating or improving documentation pages, help center content, user guides, setup instructions, feature explanations, or task-based walkthroughs. Trigger whenever documentation, docs portal, tutorials, guides, concepts, onboarding, help content, or user education are mentioned.
Analyze the codebase and produce a comprehensive implementation plan for the product documentation portal. Inspect the application's features, terminology, configuration, installation, authentication, subscriptions, permissions, and user workflows to design a documentation structure following industry best practices. Use when planning a documentation portal, defining its information architecture, creating a documentation roadmap, or identifying the documentation required before writing the content.
Write or update the public-facing API reference for API methods. Use when a new API controller is created, API routes are added or changed, or when the docs portal at /docs is out of sync with the codebase.
Build a complete API surface for a given model or concept. Use when the user asks to add API methods, expose a resource via API, or mirror a web controller as an API. Activates when user mentions API methods, API controller, API routes, or wants to expose an existing web resource via API.
Add a new locale to the application. Use when the user wants to support an additional language, register a locale in config, and generate its lang/*.json translation file. Trigger whenever adding a language, new locale, or i18n support is mentioned.
Conventions for writing thin HTTP controllers that validate input and delegate to Actions. Use when creating or editing controllers in app/Http/Controllers (web, API, or marketing).