ソース情報
- リポジトリ
- cellajs/cella
- ソースの最終更新活動
- 2026年8月13日 18:37
- 検出された SKILL.md の言語
- 英語
- スター
- 457
- フォーク
- 43
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/cellajs/cella --skill verifyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Drive two signed-in browser tabs with playwright to verify or diagnose realtime entity sync (CDC → SSE → lazy-sync scheduler → cache patch) at runtime.
Drive a pnpm cella sync or analyze for an app forked from the cella template. Covers conflict triage (pinned, both-added tests, fork markers), migration bookkeeping, silent auto-merge damage checks, and the drift decision matrix that keeps fork friction shrinking instead of growing.
Apply pending cella upstream migrations to an app after a sync. Computes the pending set from cella/migrations/manifest.json, runs each migration's codemod or manual steps in order, gates on pnpm check, and records what was applied.
SOC 職業分類に基づく
SKILL.md を表示中
| name | verify |
| description | Build, launch, and drive the cella frontend to verify UI changes at runtime. |
cd frontend && pnpm dev → http://localhost:3000 (plain HTTP in dev). Marketing pages (/about, /features, /sync-engine, /docs) render without the backend; an "Offline · Connection lost" toast appears when the backend is down — expected, not a regression.lsof -iTCP:3000 -sTCP:LISTEN before starting.cd frontend && pnpm ts (tsgo). Lint: pnpm exec biome check <file> from repo root.require('playwright') from outside the workspace. Import directly:
await import('<repo-root>/node_modules/.pnpm/playwright@<version>/node_modules/playwright/index.mjs') (glob node_modules/.pnpm/playwright@* from the repo root for the version). Chromium is cached in ~/Library/Caches/ms-playwright.appConfig.theme.screenSizes (Tailwind defaults: sm 640, md 768). useBreakpointBelow('sm') is strict < 640.use-scroll-visibility.ts ignores single-frame scroll jumps > 150px (MAX_GESTURE_DELTA) and has a 500ms initial cooldown — window.scrollBy(0, 1000) will NOT hide floating nav buttons. Simulate gestures with repeated page.mouse.wheel(0, ~100) ticks with ~60ms waits, and wait ~1s after load before scrolling.#floating-nav container, item ids like marketing-menu / docs-menu; hidden state is opacity-0 class on the button.