Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

rails-tiptap-autosaveRails tiptap autosave 命令行

Agent Skill

rails-tiptap-autosave 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

196

周安装

8

GitHub Stars

37

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/majesticlabs-dev/majestic-marketplace --skill rails-tiptap-autosave

简介

rails-tiptap-autosave 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。

  • 可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 它属于开发类工具,适用于多种宿主环境。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Rails Tiptap Autosave

Add rich text editing with automatic background saving to any Rails model using Tiptap, Stimulus, and markdown stored in plain text columns.

When to Use

  1. Adding rich text editing to Rails models without ActionText
  2. Implementing inline autosave for text fields
  3. Integrating Tiptap editor with Stimulus controllers
  4. Building content editing UIs with formatting toolbars
  5. Debugging Tiptap + Turbo cache conflicts

Architecture

Key decision: Markdown in text columns, NOT ActionText.

  • No extra tables or polymorphic attachments
  • Content is plain text — easy to query, diff, and version
  • Markdown renders cleanly in non-browser contexts (emails, APIs, CLI)
  • Simpler than ActionText's rich text blobs

How it works:

  1. Tiptap editor (initialized via Stimulus) converts user input to markdown
  2. On every keystroke (debounced 1 second), PATCH to autosave endpoint
  3. Controller saves markdown via update_column
  4. Status indicator shows "Saving..." → "Saved" → fades

Key Files

FilePurpose
app/javascript/controllers/rich_text_editor_controller.jsTiptap Stimulus controller
app/views/shared/_rich_text_field.html.erbReusable editor partial
app/views/shared/_bubble_menu.html.erbFormatting toolbar

Core Patterns

Installation & Build Pipeline

npm packages, @rails/request.js for CSRF, JS bundler setup (Tiptap does not work with importmap), and editor CSS.

See: references/installation.md

Stimulus Controller

Full rich_text_editor_controller.js — Tiptap initialization, debounced autosave, BubbleMenu target relocation, Turbo cache cleanup, and bubble menu formatting commands.

See: references/stimulus-controller.md

View Partials

Reusable _rich_text_field.html.erb and _bubble_menu.html.erb with Stimulus data attributes.

See: references/partials.md

Optional Audit Trail

Debounced change tracking that groups rapid edits into single audit events.

See: references/audit-trail.md

Adding Rich Text to a Model

Step 1: Add a text column

class AddBodyToArticles < ActiveRecord::Migration[7.1]
  def change
    add_column :articles, :body, :text  # Must be :text, NOT :string (255 char limit)
  end
end

Step 2: Add autosave route

resources :articles do
  member { patch :autosave }
end

Step 3: Add autosave action

AUTOSAVE_FIELDS = %w[body summary notes].freeze

def autosave
  field = params[:field].to_s
  return render json: { error: "field not allowed" }, status: :bad_request unless AUTOSAVE_FIELDS.include?(field)

  @article.update_column(field.to_sym, params[:value])
  render json: { status: "saved" }
end

Key points:

  • update_column bypasses validations/callbacks — correct for autosave performance
  • Field whitelist prevents writing to arbitrary columns
  • set_article must include :autosave in only: list

Step 4: Render the partial

<%= render "shared/rich_text_field",
    url: autosave_article_path(@article),
    field: "body",
    content: @article.body,
    placeholder: "Write your article...",
    label: "Body" %>

Multiple Rich Text Fields

Each field gets its own controller instance. Each is fully independent:

<%= render "shared/rich_text_field", url: autosave_article_path(@article),
    field: "body", content: @article.body, label: "Body" %>

<%= render "shared/rich_text_field", url: autosave_article_path(@article),
    field: "summary", content: @article.summary, label: "Summary" %>

Rendering Saved Markdown

# Gemfile: gem "redcarpet"
module MarkdownHelper
  def render_markdown(text)
    return "" if text.blank?
    renderer = Redcarpet::Render::HTML.new(hard_wrap: true, filter_html: true)
    markdown = Redcarpet::Markdown.new(renderer, autolink: true, tables: true,
      fenced_code_blocks: true, strikethrough: true)
    markdown.render(text).html_safe
  end
end
<div class="prose prose-sm max-w-none"><%= render_markdown(@article.body) %></div>

Common Pitfalls

  1. Wrong column type: Use text, not string (255-char limit silently truncates)
  2. Missing route: patch:autosave member route must exist or you get 404s
  3. Missing before_action: set_article must include :autosave in only: list
  4. Broadcast conflicts: Never use broadcasts_refreshes on models with Tiptap — Turbo morphing destroys editor mid-edit. Scope broadcasts to exclude the editing user.
  5. ActionText confusion: This is NOT ActionText. Do not add has_rich_text declarations.
  6. Importmap incompatibility: Tiptap is not ESM-compatible with importmap. Use esbuild or vite. See references/installation.md.
  7. BubbleMenu target relocation: Tiptap moves the DOM element outside Stimulus controller scope, making this.bubbleMenuTarget unreachable. Save a reference before calling new Editor(). See references/stimulus-controller.md.
  8. Turbo cache stale editors: Back-button shows a broken editor without proper turbo:before-cache handling. Destroy the editor and restore DOM before Turbo caches the page. See references/stimulus-controller.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.56%
按下载量换算22

Claude

32.35%
按下载量换算20

Cursor

17.67%
按下载量换算11

Gemini CLI

8.47%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

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

来源信息

继续浏览同类 Skills