avo-admin-cms | Skill Performance & Reviews | TopRankSkills

TopRank Skills

Home / Skills / tools / avo-admin-cms

avo-admin-cms

maintained by manuelmeurer

star 0 account_tree 1 verified_user MIT License
bolt View GitHub

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)

chat_bubble_outline

No comments yet. Be the first to share your thoughts!

Skill Details

GitHub Stars 0
GitHub Forks 1
Created Jan 2026
Last Updated il y a 5 mois
tools tools cms platforms

Related Skills

ui-ux-pro-max
chevron_right
building-agents
chevron_right
nestjs-expert
chevron_right
prisma-expert
chevron_right
ui-ux-pro-max
chevron_right

Build your own?

Join 12,000+ developers contributing to the Claude ecosystem.