grape-idioms
Installation
SKILL.md
Grape Idioms
Iron Laws
- Define input contracts in
params do. - Use
declared(params, include_missing: false)or equivalent explicit shaping before passing data inward. - Keep endpoints thin and push business rules into application code.
- Standardize error envelopes and auth behavior per version.
Good Defaults
- namespaced versioning
rescue_fromfor predictable API errors- presenters/entities only when they clarify response shape
- request specs for transport behavior