소스 정보
- 저장소
- MODSetter/SurfSense
- 최근 소스 활동
- 2026년 8월 29일 14:21
- 감지된 SKILL.md 언어
- 영어
- 스타
- 16,101
- 포크
- 1,538
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/MODSetter/SurfSense --skill video명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Create polished PDF files for requests such as PDFs, resumes, CVs, reports, letters, one-pagers, and printable documents.
Create polished, editable Microsoft Word documents such as reports, letters, proposals, and handbooks.
Create polished, editable PowerPoint files for slide decks, presentations, and explicit .pptx requests.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | video |
| description | Create polished narrated MP4 videos with Remotion in the sandbox. |
Create one narrated 1920×1080 MP4 at 30 fps in /workspace. Use the baked
/opt/remotion harness and dependencies. Never install or download anything.
The sandbox has no network.
Draft the complete deck specification first. For every slide include its
on-screen text and narration line. Keep this specification unchanged: pass its
narration lines to synthesize_narration, and later use the full specification
as markdown_representation. It is the durable accessible and editable source;
scene files and props.json are ephemeral.
Refuse requests above the 12-scene product limit rather than silently shortening them. The selected composition must also be at most 180 seconds.
Inter for normal text,
Lora for editorial titles or quotes, and JetBrains Mono for code and
figures. No other family is available reliably offline. Do not use
loadFont, @font-face, or @remotion/google-fonts.node_modules.Use this exact module shape:
import type React from "react";
import {AbsoluteFill, useCurrentFrame, useVideoConfig} from "remotion";
import {stagger} from "../../stagger";
const Scene: React.FC = () => {
const frame = useCurrentFrame();
const {fps} = useVideoConfig();
const entrance = stagger(frame, fps, 0, 1);
return (
<AbsoluteFill
style={{
alignItems: "center",
backgroundColor: "#101828",
color: "white",
fontFamily: "Inter",
justifyContent: "center",
}}
>
<h1 style={{fontSize: 96, ...entrance}}>A clear opening</h1>
</AbsoluteFill>
);
};
export default Scene;
There are no assumed React, AbsoluteFill, useCurrentFrame,
useVideoConfig, interpolate, spring, staticFile, Audio, or stagger
globals. Import only what that scene uses.
/opt/remotion to a fresh per-render work directory.synthesize_narration once with every {slide_number, transcript} and
that work directory. It writes files under public/ and returns filenames.
Never fetch audio yourself.props.json with fps, min_duration_in_frames, and ordered
{slide_number, code, audio} scenes. Use returned audio filenames exactly.node render.mjs --preflight props.json. It validates input, writes the
verbatim modules, bundles them, selects the composition, and enforces the
180-second limit without rendering frames.node render.mjs --stills props.json /tmp/stills. Inspect each scene's
start, middle, and end PNG plus contact-sheet.png for clipping, overflow,
contrast, hierarchy, blank frames, and safe margins.node render.mjs props.json /workspace/out.mp4. The harness
measures narration with parseMedia, derives timing, segments long renders,
and concatenates them. Do not hand-calculate audio frame counts.verify_artifact(path="/workspace/out.mp4"). If it reports a blocking
finding, make one final repair, then run preflight, still review, render, and
verification once more. A second verification failure is terminal.save_artifact only after the exact MP4 verifies, passing the step-1
deck specification as markdown_representation.The workflow permits at most two repairs total: one compile/still repair and one final verification repair.
A render must fit the sandbox operation timeout. The harness controls segment
size; do not bypass it. A successful save removes the render work directory;
if rendering or verification fails terminally, remove that directory before
reporting the failure. For revisions, regenerate from the restored Markdown
specification plus the user's instruction, then render and verify a new MP4.
Do not edit current.mp4 in place.