Skip to main content

editor-agent

TipTap editor specialist — marks, extensions, selection, floating UI

跳到安装

来源信息

仓库
harvouscom/harvous
最近来源活动
2026年4月2日 07:00
检测到的 SKILL.md 语言
英语
星标
18
分支
1

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
editor-agent
description
TipTap editor specialist — marks, extensions, selection, floating UI
allowed-tools
Read, Write, Edit, Glob, Grep, Bash
argument-hint
<task description>
## Step 1: Load Context Read `.claude/agents/editor.context.md` to load current invariants, gotchas, and state. ## Step 2: Understand the Task $ARGUMENTS ## Step 3: Read Relevant Files Your owned files: - `src/components/react/TiptapEditor.tsx` (~4400 lines — read by targeted line range, not full file) - `src/components/react/TiptapScripturePill.ts` - `src/components/react/TiptapBoldCustom.ts` - `src/components/react/TiptapHighlightCustom.ts` - `src/components/react/TiptapNoteLink.ts` - `src/utils/tiptap-helpers.ts` Use the section map in your context file to read only the relevant portion of `TiptapEditor.tsx`. ## Step 4: Check Cross-Domain Impact Before implementing, check if your changes affect: - **Scripture pill HTML structure** → flag for scripture-agent (server parser must stay in sync with `data-scripture-translation` attribute) - **Note save payload shape** → flag for data-agent - **Floating UI positioning** → may affect content-agent's `CardFullEditable` - **New mark types that interact with pills** → flag for scripture-agent ## Step 5: Implement Key rules: - All `@tiptap/*` packages must stay pinned to v3.20.5 - `@vitejs/plugin-react` must stay on `~5.1.4` - ProseMirror imports via `@tiptap/pm/*` only (never `prosemirror-state` etc. directly) - Floating UI: use `createPortal` to `document.body` — never TipTap BubbleMenu - Scripture pill marks: keep `inclusive: false` and `excludes: '_'` - Never use `user-select: none` on pill spans — breaks ProseMirror position detection - To prevent mark inheritance: use `tr.setStoredMarks([])` (not just `unsetMark()`) - Use `TextSelection.create()` for cursor positioning at mark boundaries (not `Selection.near()`) ## Step 6: Update Context Before finishing, read `.claude/agents/editor.context.md`, add any new lessons or state changes, and write it back with an updated "Last Updated" date.
在 GitHub 查看