Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

json-typed-attributesJSON typed attributes 搜索

Agent Skill

json-typed-attributes 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

514

周安装

21

GitHub Stars

5

下载量

165
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:json-typed-attributes(JSON typed attributes 搜索)
来源仓库:https://github.com/rolemodel/rolemodel-skills
仓库路径:skills/json-typed-attributes
安装命令:
npx skills add https://github.com/rolemodel/rolemodel-skills --skill json-typed-attributes
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/rolemodel/rolemodel-skills --skill json-typed-attributes

简介

用于查找、检索和筛选相关信息。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

  • 适合按关键词快速定位候选结果。
  • 可结合来源仓库 README 进一步核验具体用法。
  • 安装前建议确认是否会触发联网或文件操作。
  • json-typed-attributes 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

JSON Typed Attributes

This skill helps you work with JSON-backed attributes in Rails models using the StoreJsonAttributes concern. It provides type casting, validation support, and seamless form integration.

When to Use

  • You need flexible data storage without creating separate database columns
  • You want to store structured data (like configuration, metadata, or dynamic fields) in a JSON column
  • You need proper type casting for JSON attributes (numbers, dates, booleans, arrays)
  • You want to validate JSON-backed attributes like regular ActiveRecord attributes
  • You need JSON attributes to work seamlessly with Rails forms

Setup

1. Ensure JSON Column Exists

Your model must have a JSON column to store the attributes. Common names are data, metadata, or settings:

# In migration
add_column :table_name, :data, :jsonb, default: {}

2. Include the Concern

class YourModel < ApplicationRecord
  include StoreJsonAttributes
end

3. Define Typed Attributes

Use store_typed_attributes to define attributes with automatic type casting:

store_typed_attributes [:attribute_name], type: :type_name, field: :json_column_name

Supported Types

String

store_typed_attributes %i[timeline status], type: :string, field: :data
  • Casts values to strings
  • Returns nil for blank values
  • Example usage: record.timeline = "30 Days" record.timeline # => "30 Days"

Integer

store_typed_attributes %i[age count quantity], type: :integer, field: :data
  • Casts values to integers
  • Automatically strips commas and spaces from input ("1,000" → 1000)
  • Returns nil for invalid values
  • Example usage: record.quantity = "1,500" record.quantity # => 1500

Decimal

store_typed_attributes %i[price revenue percentage], type: :decimal, field: :data
  • Casts values to BigDecimal
  • Automatically strips commas and spaces from input
  • Preserves precision
  • Example usage: record.price = "1,234.56" record.price # => BigDecimal("1234.56")

Boolean

store_typed_attributes %i[active enabled verified], type: :boolean, field: :data
  • Creates predicate methods (ending in ?)
  • Casts truthy/falsy values correctly
  • Example usage: record.active = "1" record.active? # => true record.active = "0" record.active? # => false

Date

store_typed_attributes %i[started_at completed_at], type: :date, field: :data
  • Casts strings to Date objects
  • Handles various date formats
  • Example usage: record.started_at = "2026-02-04" record.started_at # => Date object record.started_at.strftime("%B %d, %Y") # => "February 04, 2026"

Array

store_typed_attributes %i[categories tags], type: :array, field: :data
  • Always returns an array (empty array if nil)
  • Automatically removes blank values with compact_blank
  • Example usage: record.categories = ["Revenue Generation", "Operations Management"] record.categories # => ["Revenue Generation", "Operations Management"] record.categories = ["", "Valid", nil, "Another"] record.categories # => ["Valid", "Another"]

Text

store_typed_attributes %i[notes description], type: :text, field: :data
  • Similar to string but intended for longer content
  • Creates predicate method (ending in ?)
  • Example usage: record.notes = "Long text content..." record.notes? # => true (if present)

Complete Example

# frozen_string_literal: true

class CBPComponents::KeyQuestion < CoreBusinessPresentationComponent
  CATEGORIES = [
    'Revenue Generation',
    'Operations Management',
    'Organizational Development',
    'Financial Management',
    'Ministry',
    'Personal Issue',
  ].freeze

  TIMELINES = ['30 Days', '90 Days', '180 Days', '1 Year', 'More than 1 Year'].freeze

  # Define JSON-backed typed attributes
  store_typed_attributes %i[timeline], type: :string, field: :data
  store_typed_attributes %i[categories], type: :array, field: :data

  # Add validations like any other attribute
  validates :timeline, inclusion: { in: TIMELINES, allow_blank: true }
  validates :categories, inclusion: { in: CATEGORIES }, allow_blank: true

  # Use in strong parameters
  private

  def base_params
    super.concat([:timeline, :summary, categories: []])
  end
end

Working with Forms

JSON-backed attributes work seamlessly with Rails form helpers:

Simple Fields

= form.text_field :timeline
= form.number_field :quantity
= form.check_box :active

Array Fields (Checkboxes)

- CATEGORIES.each do |category|
  = form.check_box :categories,
    { multiple: true, checked: form.object.categories.include?(category) },
    category,
    nil
  = category

Select Fields

= form.select :timeline,
  options_for_select(TIMELINES, form.object.timeline),
  { include_blank: "Select timeline" }

Adding Validations

Validate JSON-backed attributes like regular attributes:

# Presence
validates :timeline, presence: true

# Inclusion
validates :timeline, inclusion: { in: TIMELINES }

# Length
validates :categories, length: { minimum: 1, message: "must select at least one" }

# Custom validation
validate :categories_must_be_valid

private

def categories_must_be_valid
  invalid_categories = categories - CATEGORIES
  if invalid_categories.any?
    errors.add(:categories, "contains invalid categories: #{invalid_categories.join(', ')}")
  end
end

# Numericality
validates :quantity, numericality: { greater_than: 0, allow_nil: true }

# Format
validates :status, format: { with: /\A[A-Z][a-z]+\z/, allow_blank: true }

Strong Parameters

Always include JSON-backed attributes in your strong parameters:

# For simple types (string, integer, decimal, boolean, date)
params.require(:model).permit(:timeline, :quantity, :active, :started_at)

# For arrays, use array syntax
params.require(:model).permit(:timeline, categories: [])

Multiple JSON Fields

You can use different JSON fields for different concerns:

class Product < ApplicationRecord
  # Pricing data
  store_typed_attributes %i[base_price discount_percentage], type: :decimal, field: :pricing_data

  # Inventory data
  store_typed_attributes %i[quantity threshold], type: :integer, field: :inventory_data

  # Feature flags
  store_typed_attributes %i[featured new_arrival on_sale], type: :boolean, field: :flags
end

Common Patterns

Constants for Validation

Define constants for valid values:

STATUSES = %w[pending approved rejected].freeze
PRIORITIES = %w[low medium high urgent].freeze

store_typed_attributes %i[status], type: :string, field: :data
store_typed_attributes %i[priority], type: :string, field: :data

validates :status, inclusion: { in: STATUSES, allow_blank: true }
validates :priority, inclusion: { in: PRIORITIES, allow_blank: true }

Default Values

Set defaults in initializer or after_initialize:

after_initialize :set_defaults, if: :new_record?

private

def set_defaults
  self.categories ||= []
  self.timeline ||= '90 Days'
  self.active = true if active.nil?
end

Scopes and Queries

Query JSON attributes using PostgreSQL JSON operators:

# Find records with specific value
scope :with_timeline, ->(timeline) {
  where("data->>'timeline' = ?", timeline)
}

# Find records where array contains value
scope :with_category, ->(category) {
  where("data->'categories' ? :category", category: category)
}

# Find records with any of multiple values
scope :with_any_category, ->(categories) {
  where("data->'categories' ?| array[:categories]", categories: categories)
}

Best Practices

  1. Always specify the field name - Makes it clear where data is stored store_typed_attributes %i[timeline], type::string, field::data
  2. Use arrays for multi-select data - Automatically handles blank values store_typed_attributes %i[categories], type::array, field::data
  3. Define constants for valid values - Makes validations and forms easier TIMELINES = ['30 Days', '90 Days', '180 Days'].freeze validates:timeline, inclusion: {in: TIMELINES, allow_blank: true}
  4. Add validations - JSON attributes should be validated like any other attribute validates:quantity, numericality: {greater_than: 0, allow_nil: true}
  5. Use appropriate types - Choose the type that matches your data

- Use :decimal for money/percentages (not :integer) - Use :array for multi-select (automatically removes blanks) - Use :boolean for flags (creates predicate methods)

  1. Include in strong parameters - Don't forget array syntax for array types params.require(:model).permit(:timeline, categories: [])
  2. Consider indexing - For frequently queried JSON attributes, add GIN indexes add_index:table_name,:data, using::gin

Troubleshooting

Attribute not persisting

  • Ensure the JSON column exists in the database
  • Check that the field name matches: field::data
  • Verify strong parameters include the attribute

Type casting not working

  • Verify the type is spelled correctly: :integer, :decimal, :string, etc.
  • For arrays, ensure you're setting an array value
  • For booleans, use the predicate method: record.active?

Form not displaying correct values

  • For arrays, check that you're using multiple: true and checking inclusion
  • For selects, use options_for_select with the current value
  • Ensure the getter method returns the expected type

Validation failing

  • Check that the attribute is included in strong parameters
  • Verify constants match the expected values exactly
  • For arrays, remember blank values are automatically removed

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.73%
按下载量换算57

Claude

27.72%
按下载量换算46

Cursor

18.62%
按下载量换算31

Gemini CLI

9.95%
按下载量换算16

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills