ソース情報
- リポジトリ
- Melvynx/benchmarks
- ソースの最終更新活動
- 2026年7月14日 06:00
- 検出された SKILL.md の言語
- 英語
- スター
- 17
- フォーク
- 4
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/Melvynx/benchmarks --skill frontend-workerコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Run reproducible coding-model benchmarks from a model name, CLI harness, and task list. Use when creating, executing, resuming, or verifying benchmark runs with Codex, Claudex via ccx, Claude Code, or Cursor Agent in this repository.
Launch and verify the live Faultline earthquake explorer in a real browser.
Add or update documentation in content/docs/ for features, APIs, or tools
SOC 職業分類に基づく
SKILL.md を表示中
| name | frontend-worker |
| description | Implements frontend UI features following existing codebase patterns |
NOTE: Startup and cleanup are handled by worker-base. This skill defines the WORK PROCEDURE.
Use for features that involve React component changes, UI additions, styling, and client-side logic in a Next.js app with shadcn/radix components.
Read reference files first. Before any code changes, read at least 3 similar files to understand the patterns. The feature description lists specific reference files — read ALL of them.
Plan the changes. Based on the reference files, plan exactly what imports, hooks, handlers, and JSX you need to add. Do not guess patterns — copy from existing code.
Implement the changes. Make the edits following the exact patterns found in reference files. Key rules:
resolveActionResult to call server actionsuseMutation from @tanstack/react-query for mutationsdialogManager.confirm() for delete confirmationsdialogManager.input() for rename dialogsuseQueryClient + invalidateQueries for cache invalidationtoast from sonner for success/error messagese.preventDefault(); e.stopPropagation();Run verification commands:
pnpm ts — must pass with zero errorspnpm lint — must passvitest run — existing tests must passFix any errors found in step 4 before completing.
{
"salientSummary": "Added ContextMenu and DropdownMenu with Rename/Delete to ThumbnailCard. Both menus share the same handlers using dialogManager.input() for rename and dialogManager.confirm() for delete. Ran tsc --noEmit (0 errors), eslint (clean), vitest run (all passing).",
"whatWasImplemented": "Added hover-reveal '...' DropdownMenu button and right-click ContextMenu to ThumbnailCard in thumbnails-page-client.tsx. Rename uses dialogManager.input() + updatePromptNameAction. Delete uses dialogManager.confirm() + deletePromptAction. Both invalidate promptKeys.all on success.",
"whatWasLeftUndone": "",
"verification": {
"commandsRun": [
{ "command": "pnpm ts", "exitCode": 0, "observation": "No type errors" },
{ "command": "pnpm lint", "exitCode": 0, "observation": "No lint errors" },
{