Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计提醒

motioneyes-animation-debugMotioneyes 动画调试

Agent Skill

用于辅助视频生成、动画合成、脚本化剪辑或 Remotion 等视频项目开发。它适合让 Agent 组织镜头、生成素材说明、维护合成代码或排查渲染问题。使用时需要确认分辨率、时长、素材路径和导出格式;涉及外部素材、人物肖像或商业发布时,应先核对版权授权和内容审核要求。

总安装

272

周安装

11

GitHub Stars

186

下载量

85
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/edwardsanchez/motioneyes --skill motioneyes-animation-debug

简介

motioneyes-animation-debug 用于辅助视频生成、动画合成和 Remotion 项目开发。

  • 适合组织镜头、生成素材说明和维护合成代码。
  • 使用时需要确认分辨率、时长、素材路径和导出格式。
  • 涉及外部素材或商业发布时应先核对版权授权和内容审核要求。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

MotionEyes Animation Debug

Overview

Use MotionEyes as temporary observability for SwiftUI animation debugging and regression validation. Instrument targeted values and geometry, capture time-series logs, compare observed motion against expected motion, apply fixes or assertions, re-validate, and clean up all agent-added tracing.

Use This Skill When

  • An animation moves in the wrong direction, starts too late, or ends too early.
  • Opacity, offset, or position changes do not match expected timing.
  • Two elements drift or desynchronize during a transition.
  • ScrollView offsets jump, drift, or fail to restore.
  • You need evidence from runtime motion values rather than visual guesses.
  • You want to turn MotionEyes traces into UITest or regression assertions for timing, continuity, or backtracking.

Do Not Use If

  • The problem is unrelated to SwiftUI animation or scroll behavior.
  • You cannot reproduce the behavior in a simulator or device.

Agent Behavior Contract

Follow these rules for every run:

  1. Confirm the complaint and expected behavior in measurable terms before instrumentation.
  2. Add only the minimum traces needed to test the complaint.
  3. Prefer XcodeBuildMCP for log capture; fall back to CLI log streaming if MCP is unavailable.
  4. Use semantic trace names that map directly to the user intent.
  5. Preserve all pre-existing MotionEyes instrumentation.
  6. Remove only agent-added MotionEyes imports, modifiers, and metrics after validation.
  7. Re-run after fixes and verify against logs, not assumptions.
  8. Treat continuity, direction, and timing as separate concerns; do not use one heuristic as a proxy for all three.

Workflow

Follow this exact order:

  1. Confirm the complaint and expected behavior in measurable terms.
  2. Locate the target view and the state values that drive the animation.
  3. Ensure MotionEyes availability; if missing, auto-integrate the MotionEyes package into the app target before continuing.
  4. Add temporary .motionTrace(...) instrumentation with Trace.value, Trace.geometry, and (for scroll issues) Trace.scrollGeometry metrics named after user intent.
  5. Run the app and reproduce the issue.
  6. Capture logs with XcodeBuildMCP first; fall back to CLI log streaming if MCP is unavailable.
  7. Analyze how values evolve over time versus expected behavior or extract a focused sample window for assertions.
  8. Implement a fix or add an assertion, rerun, and verify the motion now matches intent.
  9. Remove only agent-added MotionEyes imports, modifiers, and trace metrics from this run; never remove user-authored pre-existing MotionEyes code.

Intent Mapping (Screen vs Layout vs Local)

Choose the geometry mode that matches what the user actually cares about.

  • User-visible/on-screen motion (phrases like "did it move?", "what the user sees", "slide on screen"):

- Trace.geometry(..., space:.screen, source:.presentation)

  • Layout relationships/spacing (phrases like "aligned", "spacing", "relative to container", "stays in the same stack position"):

- Trace.geometry(..., space:.swiftUI(.global), source:.layout)

  • Local container relationships (phrases like "within this card", "inside this stack", "relative to parent bounds"):

- Trace.geometry(..., space:.swiftUI(.local), source:.layout) or a named coordinate space

If you are unsure, start with on-screen motion and add layout geometry only if you need relationships.

Quick Decision Tree

  1. If you need to observe a single value changing over time, start with Trace.value.
  2. If the user cares about visible on-screen motion, start with Trace.geometry using space:.screen, source:.presentation.
  3. If the issue involves layout relationships or spacing, add Trace.geometry with space:.swiftUI(.global), source:.layout (or .local for local container relationships).
  4. If the first geometry trace is flat but the user sees motion, add the complementary geometry mode (layout vs presentation) and compare.
  5. If the bug involves scrolling or restoration, use Trace.scrollGeometry on the ScrollView container.

Triage-First Playbook

  • Fade or visibility mismatch: Trace.value("opacity", opacity).
  • Offset or translation issues: Trace.value("offset", CGPoint(x: offset.width, y: offset.height)).
  • Missing or disputed on-screen motion: Trace.geometry in .screen +.presentation (add layout if needed).
  • Position drift between elements: Trace.geometry for both views in the same space that matches intent.
  • Timing mismatch: trace the driving state with Trace.value plus one geometry metric.
  • Scroll jumps or restoration drift: Trace.scrollGeometry with contentOffset and visibleRect metrics.
  • Unexpected motion when something should remain still: Trace.geometry in .screen +.presentation.

Instrumentation Rules

Add instrumentation only to the minimum set of views needed to test the complaint.

  • Use stable, semantic trace names that match the user complaint.
  • Set the values to the same name as the property, so it is easier to identify.
  • Default to on-screen motion (.screen +.presentation) when the user is describing what they see.
  • Use layout geometry when the issue is about spacing, alignment, or container/sibling relationships.
  • Use scroll geometry tracing when the bug involves ScrollView offset, visible region, content size, insets, or restoration behavior.
  • Place Trace.scrollGeometry on the ScrollView container or an immediate descendant bound to the same scroll context.
  • If a geometry trace is flat but the user reports motion, add the complementary geometry mode and compare.
  • Scroll caveat: layout frames can stay stable while scroll geometry or presentation geometry changes.

Choose geometry mode based on intent:

  • Layout relationship in SwiftUI coordinates: space:.swiftUI(.global), source:.layout
  • Local container relationship: space:.swiftUI(.local), source:.layout (or a named coordinate space)
  • Window-relative layout motion: space:.window, source:.layout
  • Physical screen-visible motion: space:.screen, source:.presentation

Example Template

import MotionEyes
import SwiftUI

struct CardMotionExample: View {
    @State private var opacity = 1.0
    @State private var offset = CGSize.zero

    var body: some View {
        RoundedRectangle(cornerRadius: 16)
            .fill(.orange)
            .frame(width: 180, height: 120)
            .opacity(opacity)
            .offset(offset)
            .motionTrace("Card Motion", fps: 30) {
                Trace.value("opacity", opacity)
                Trace.value("offset", CGPoint(x: offset.width, y: offset.height))
                Trace.geometry(
                    "cardFrame",
                    properties: [.minX, .minY, .width, .height],
                    space: .screen,
                    source: .presentation
                )
            }
            .onTapGesture {
                withAnimation(.easeInOut(duration: 0.6)) {
                    opacity = opacity == 1 ? 0.4 : 1
                    offset = offset == .zero ? CGSize(width: 0, height: 36) : .zero
                }
            }
    }
}

Scroll-Focused Template

ScrollView {
    content
}
.motionTrace("Chat Scroll", fps: 30) {
    Trace.scrollGeometry(
        "scrollMetrics",
        properties: [.contentOffsetY, .visibleRectMinY, .visibleRectHeight]
    )
}

Log Capture

Prefer XcodeBuildMCP:

  1. Call mcp__XcodeBuildMCP__session_show_defaults.
  2. Set missing defaults with mcp__XcodeBuildMCP__session_set_defaults.
  3. Build and run with mcp__XcodeBuildMCP__build_run_sim if needed.
  4. Start capture with mcp__XcodeBuildMCP__start_sim_log_cap using captureConsole: true and subsystemFilter: "MotionEyes".
  5. Reproduce the animation.
  6. Stop capture with mcp__XcodeBuildMCP__stop_sim_log_cap and inspect returned logs.

Fallback CLI if MCP is unavailable:

xcrun simctl spawn booted log stream \
  --style compact \
  --level debug \
  --predicate 'subsystem == "MotionEyes"'

MotionEyes Log Analysis

Use these signatures:

  • Value samples: [MotionEyes][View][Metric] key=value...
  • Change burst start: [MotionEyes][View][Metric] -- Start timestamp --
  • Change burst end: [MotionEyes][View][Metric] -- End timestamp --

Analyze:

  • Direction: sign and trend of sampled values.
  • Timing: time delta from intent trigger to first Start and to End.
  • Shape: monotonic change, overshoot, reversals, oscillation, flat segments.
  • Relationship: compare two traces over the same time window when behavior is relative.

Do not force fixed thresholds globally; evaluate against the user’s stated expectation.

Automated Trace Assertions

Use this mode when the user wants a testable pass or fail signal rather than a one-off debugging read.

  1. Choose one metric and one component that directly represents the complaint.
  2. Isolate the sample window from Start to End for that specific motion burst.
  3. Keep assertion types separate:

- continuity: abrupt local jumps or freezes - direction or monotonicity: whether the trace backtracks - timing: whether Start, End, or duration match expectation

  1. For continuity checks, use MotionSmoothness on the extracted scalar samples.
  2. Treat MotionSmoothness as a local continuity heuristic only:

- good for abrupt mid-curve jumps - not proof of render-time frame pacing - does not reject overshoot or backtracking on its own

  1. If the user cares about “went back on itself,” add a separate monotonicity or reversal assertion.
  2. If sample count is too low or timestamps are irregular enough to undermine confidence, say so and escalate to visual analysis.

Threshold guidance:

  • Do not hardcode one universal pass value for every animation style.
  • Start from the user’s actual intent and tune with a known-good baseline trace when possible.
  • Linear or tightly controlled traces can use stricter thresholds than eased or springy motion.

Verification Checklist

  • Trace names map directly to the user complaint.
  • Motion Start and End markers align with the expected interaction timeline.
  • Direction, timing, and shape match the expected motion.
  • Continuity checks and monotonicity checks are not conflated.
  • Relative motion metrics stay within expected deltas.
  • The fix is verified by a second log capture.
  • Agent-added instrumentation is removed after validation.
  • The project still builds after cleanup.

Cleanup Rules

At the end of every run:

  • Remove all MotionEyes instrumentation introduced by the agent during this debugging run.
  • Keep all MotionEyes instrumentation that already existed before the run.
  • Remove agent-added import MotionEyes only if it was added solely for temporary tracing and is no longer needed.
  • Confirm code compiles after cleanup.

Scenarios to Support

  • Fade timing bug: trace opacity and verify fade begins and ends when expected.
  • Wrong direction bug: trace Y-related value and confirm sign and trend match expected motion.
  • Relative motion bug: trace two objects and verify their positional relationship over time.
  • Scroll jump or restoration bug: trace Trace.scrollGeometry on the ScrollView and verify contentOffset and visibleRect progression through navigation and return paths.
  • No motion desired: confirm a view remains stable during transitions.
  • Regression or UITest assertion: extract a trace burst and assert continuity with MotionSmoothness, plus separate timing or monotonicity checks when needed.
  • Existing instrumentation safety: preserve user-authored MotionEyes traces.
  • MCP unavailable: use CLI log stream and continue analysis.
  • Missing package: auto-integrate MotionEyes, then execute normal workflow.

Reference

Load references/motioneyes-observability-patterns.md when choosing metrics, interpreting trace behavior, or defining MotionEyes-based assertions.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.09%
按下载量换算31

Claude

30.27%
按下载量换算26

Cursor

19.63%
按下载量换算17

Gemini CLI

9.8%
按下载量换算8

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/edwardsanchez/motioneyes --skill motioneyes-animation-debug 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills