Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计异常

result-supabase-reporterresult Supabase reporter 搜索

Agent Skill

result-supabase-reporter 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

762

周安装

12

GitHub Stars

公开资料未说明

下载量

97
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/httprunner/skills --skill result-supabase-reporter

简介

用于查找和筛选相关信息。result-supabase-reporter 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 支持关键词搜索和任务场景匹配。
  • 可结合来源仓库核验具体内容。
  • 需确认权限范围和检索限制。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 适合快速定位候选结果和信息筛选。

SKILL.md

Result Supabase Reporter

Use this skill to run a deterministic sqlite -> Supabase pipeline around capture_results.

Workflow

  1. Select rows
  • stat: print total sqlite row count for one --task-id.
  • filter: preview upload candidates from capture_results.
  • Default status filter is reported IN (0,-1).
  1. Report rows
  • report: batch upsert to Supabase and write back sqlite status.
  • --max-rows <n> sets total cap for one report run.
  • For per-task workflows, always pass --task-id <TASK_ID> to avoid cross-task uploads.
  • Success writeback: reported=1, reported_at=now_ms, report_error=NULL.
  • Failure writeback: reported=-1, reported_at=now_ms, report_error=<truncated error>.
  1. Retry failures
  • retry-reset: move failed rows (reported=-1) back to pending (reported=0), then rerun report.

Run

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.

Environment Variables

Required for report:

  • SUPABASE_URL
  • SUPABASE_SERVICE_ROLE_KEY

Optional 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)

Recommended Command Patterns

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

Hotlist Usage

Schema fields:

  • platform_name
  • rank
  • catalog_name
  • catalog_type
  • release_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"

Failure Handling

  • Use report --dry-run to validate selection before network writes.
  • Check sqlite report_error for root cause when reported=-1.
  • Fix root cause, then rerun retry-reset and report.

Resources

  • 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.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.15%
按下载量换算35

Claude

28.67%
按下载量换算28

Cursor

18.84%
按下载量换算18

Gemini CLI

9.47%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills