Collect app events via evalpkgs into sqlite, then filter/report capture_results to Supabase with retry-safe writeback. Use for collect-start/collect-stop/stat/filter/report/retry-reset workflows, especially task-scoped reporting with --task-id.
Use this skill to run a deterministic sqlite -> Supabase pipeline around capture_results.
stat: print total sqlite row count for one --task-id.filter: preview upload candidates from capture_results.reported IN (0,-1).report: batch upsert to Supabase and write back sqlite status.--max-rows <n> sets total cap for one report run.--task-id <TASK_ID> to avoid cross-task uploads.reported=1, reported_at=now_ms, report_error=NULL.reported=-1, reported_at=now_ms, report_error=<truncated error>.retry-reset: move failed rows (reported=-1) back to pending (reported=0), then rerun report.npx tsx scripts/result_reporter.ts <subcommand> [flags]
Use npx tsx scripts/result_reporter.ts --help as the CLI source of truth.
Hotlist commands:
npx tsx scripts/hotlist_reporter.ts <subcommand> [flags]
Use npx tsx scripts/hotlist_reporter.ts --help as the CLI source of truth.
Required for report:
SUPABASE_URLSUPABASE_SERVICE_ROLE_KEYOptional overrides:
TRACKING_STORAGE_DB_PATH (default $HOME/.eval/records.sqlite)RESULT_SQLITE_TABLE (default capture_results)SUPABASE_RESULT_TABLE (default capture_results)SUPABASE_HOTLIST_TABLE (default hotlist_catalogs)Task-scoped preview:
npx tsx scripts/result_reporter.ts filter --task-id <TASK_ID> --status 0,-1 --limit 20
Task-scoped report:
export SUPABASE_URL=https://<project>.supabase.co
export SUPABASE_SERVICE_ROLE_KEY=<service_role_key>
npx tsx scripts/result_reporter.ts report --task-id <TASK_ID> --batch-size 100 --max-rows 500
Retry failed rows:
npx tsx scripts/result_reporter.ts retry-reset --app com.tencent.mm --scene onSearch
npx tsx scripts/result_reporter.ts report --task-id <TASK_ID> --status 0,-1
Schema fields:
platform_namerankcatalog_namecatalog_typerelease_date (date)collected_date (date)created_at (timestamptz, default now())Unique constraint:
(platform_name, collected_date, rank)Initialize hotlist table (Supabase SQL Editor):
-- references/hotlist_init.sql
Insert one row:
npx tsx scripts/hotlist_reporter.ts insert \
--platform-name "腾讯视频" \
--rank 1 \
--catalog-name "太平年" \
--catalog-type "电视剧" \
--release-date "2026-01-01" \
--collected-date "2026-02-28"
Batch insert from JSONL:
npx tsx scripts/hotlist_reporter.ts insert --input hotlist.jsonl
JSONL line example:
{"platform_name":"腾讯视频","rank":1,"catalog_name":"太平年","catalog_type":"电视剧","release_date":"2026-01-01","collected_date":"2026-02-28"}
Query by platform and recent days:
npx tsx scripts/hotlist_reporter.ts query --platform-name "腾讯视频" --last-days 7 --limit 200
Query by explicit date range:
npx tsx scripts/hotlist_reporter.ts query --platform-name "腾讯视频" --from "2026-02-22" --to "2026-02-28"
report --dry-run to validate selection before network writes.report_error for root cause when reported=-1.retry-reset and report.scripts/result_reporter.ts: CLI behavior and flags.scripts/hotlist_reporter.ts: hotlist insert/query behavior and flags.references/sqlite-and-field-mapping.md: sqlite schema and field mapping.references/supabase-api-and-errors.md: Supabase upsert contract and error triage.references/init.sql: Supabase DDL with required unique constraint (task_id, item_id).references/hotlist_init.sql: Supabase DDL for hotlist_catalogs.references/hotlist_http_api.md: shareable HTTP API doc for external callers.npx skills add httprunner/result-supabase-reporter下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer