← Back to list

avo-admin-cms
by manuelmeurer
⭐ 0🍴 1📅 Jan 23, 2026
SKILL.md
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.
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon