What problem does it solve? It standardizes how engineers author, modify, and maintain Talos actions in contracts/tasks/actions so that transaction-writing operations stay safe, chain-guarded, and consistent with production schedules. ## Core Features & Use Cases - Action authoring conventions: Enforces the action() wrapper pattern, camelCase naming, params builder usage, and explicit chains guardrails for every action. - Contract binding guidance: Directs use of getContract and getContractAt with curated ABIs, plus logTxDetails for write transactions instead of raw calldata. - Schedule and catalogue maintenance: Covers updating migrations/seed_schedules.sql, docs/ACTIONS.md, regenerating the actions inventory, and rebuilding the runtime catalogue. - Use Case: When adding a new scheduled action like a vault rebase on Base, follow the Skill to define chain guardrails, validate signer authority, register parameters, and update the schedule and documentation in the same change. ## Quick Start Ask the assistant to create a new Talos action that calls a specific contract method on a given chain, following the conventions in this Skill.