name: avo-admin-cms description: Guidance for working with the Avo admin CMS. Use when creating or updating Avo resources, dashboards, actions, filters, or any other Avo-related functionality.
Avo Admin CMS
Guidelines
- Full LLM docs for Avo:
#fetch https://docs.avohq.io/3.0/llms-full.txt.
Adding Resources
Use this as the baseline structure for a new Avo resource:
# frozen_string_literal: true
class Avo::Resources::NewResource < Avo::BaseResource
def fields
field :id
[more fields here]
timestamp_fields
field :tasks
end
_baseline_finalize
end
Always add a matching controller file as well:
# frozen_string_literal: true
class Avo::NewResourcesController < Avo::ResourcesController
end
Fields
Fields can be added without specifying a type via the :as parameter:
field :name
field :pdf_file
field :processed_at
If no :as parameter is present, the type and default attributes are determined automatically. See Baseline::ActsAsAvoResource#field in Baseline for details.
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
1
Created
Jan 2026
Last Updated
5 months ago
tools
tools cms platforms
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!