Token导航 LogoToken导航TokenDH.com
AI 工具敏感数据github未标认证来源可访问clear审计通过

scorable-integration可评分的整合

Agent Skill

scorable-integration 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

499

周安装

20

GitHub Stars

1

下载量

162
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/root-signals/scorable-skills --skill scorable-integration

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理与分析。
  • 可通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • scorable-integration 属于AI 工具类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Add Scorable LLM-as-a-Judge to Your Application

These instructions guide you through creating LLM evaluation judges with Scorable and integrating them into your codebase. Scorable is a tool for creating LLM-as-a-Judge based evaluators for safeguarding applications. Judge is the Scorable term for grouping evaluations from different metrics (Helpfulness, Policy Adherence, etc...)

Overview

Your role is to:

  1. Analyze the codebase to identify LLM interactions
  2. Create judges via Scorable API to evaluate those interactions (or use an existing judge ID if provided)
  3. Integrate judge execution into the code at appropriate points
  4. Provide usage documentation for the evaluation setup

Note: These instructions work for both creating new judges from scratch and integrating existing judges. If the user provides a judge ID, you can skip the judge creation step (Step 3) and proceed directly to integration (Step 4).

Step 0: Explain the process

Before performing any analysis or technical steps, pause and clearly brief the user on what is about to happen. Explain that you will:

  • Analyze the codebase to identify LLM interactions
  • Create judges via Scorable API to evaluate those interactions
  • Integrate judge execution into the code at appropriate points
  • Provide usage documentation for the evaluation setup

Step 1: Analyze the Application

Examine the codebase to understand:

  • What LLM interactions exist (prompts, completions, agent calls)
  • What the application does at each interaction point
  • Which interactions are most critical to evaluate

If multiple LLM interactions exist, help the user prioritize. Recommend starting with the most critical one first.


Step 2: Get Scorable API Key

Ask the user which option they prefer:

Option A: Permanent API Key (Recommended)

Direct them to: https://scorable.ai/api-key-setup

  1. Sign in with SSO or email/password
  2. Click "Create API Key"
  3. Copy the key and ask them to store it to.env, environment variable

Security: Instruct the user to use environment variables or the project's secret management. Use existing .env files if available or ask user to save it as environment variable. Do not ask the user to paste the key into this session.


Option B: Temporary API Key (Testing Only)

curl --request POST      --url https://api.scorable.ai/create-demo-user/      --header 'accept: application/json'      --header 'content-type: application/json'

Response includes api_key field. Warn the user appropriately that:

  • The judge will be public and visible to everyone
  • The key only works for a limited time
  • For private judges, they should create a permanent key

Remember also the api_token field. It is used in the URL parameters for the judge URL, not in any other context.


Option C: Existing API Key

If they have an account: https://scorable.ai/settings/api-keys


Step 3: Generate a Judge

Note: If the user has already provided a judge ID (e.g., in their message), you can skip this step and proceed directly to Step 4 (Integration).

Call the /v1/judges/generate/ endpoint with a detailed intent string.

Intent String Guidelines:

  • Describe the application context and what you're evaluating
  • Mention the specific execution point (stage name)
  • Include critical quality dimensions you care about
  • Add examples, documentation links, mandatory tool calls, or policies if relevant
  • Be specific and detailed (multiple sentences/paragraphs are good)
  • Code level details like frameworks, libraries, etc. do not need to be mentioned

Example with all required fields filled:

curl --request POST \
  --url https://api.scorable.ai/v1/judges/generate/ \
  --header 'accept: application/json' \
  --header 'content-type: application/json' \
  --header 'Authorization: Api-Key <SCORABLE_API_KEY>' \
  --data '{
    "visibility": "unlisted", # or public if using a temporary key
    "intent": "An email automation system that creates summary emails using an LLM based on database query results and user input. Evaluate the LLM output for: accuracy in summarizing data, appropriate tone for the audience, inclusion of all key information from queries, proper formatting, and absence of hallucinations. The system is used for customer-facing communications.",
    "generating_model_params": {
      "temperature": 0.2,
      "reasoning_effort": "medium"
    }
  }'

Optional fields:

  • enable_context_aware_evaluators: Set to true if the application interaction uses RAG (document chunks) that are relevant and can be extracted to the evaluation (hallucinations, context drift, etc.).

Note that this can take up to 2 minutes to complete.

Handling API Responses:

The API may return:

1. missing_context_from_system_goal - Additional context needed:

{
  "missing_context_from_system_goal": [
    {
      "form_field_name": "target_audience",
      "form_field_description": "The intended audience for the content"
    }
  ]
}

→ Ask the user for these details (if not evident from the code base), then call /v1/judges/generate/ again with:

{
  "judge_id": "existing-judge-id",
  "stage": "Stage name",
  "extra_contexts": {
    "target_audience": "Enterprise customers"
  },
  ...other fields...
}

2. multiple_stages - Judge detected multiple evaluation points:

{
  "error_code": "multiple_stages",
  "stages": ["Stage 1", "Stage 2", "Stage 3"]
}

→ Ask the user which stage to focus on, or if they have a custom stage name. Each judge evaluates one stage. You can create additional judges later for other stages.

3. Success - Judge created:

{
  "judge_id": "abc123...",
  "evaluator_details": [...]
}

→ Proceed to integration.


Step 4: Integrate Judge Execution

Add code to evaluate LLM outputs at the appropriate execution point(s).

Language-Specific Integration

Choose the appropriate integration guide based on the codebase language:

Integration Points

  • Insert evaluation code where LLM outputs are generated (for example after an OpenAI responses call)
  • response parameter: The text you want to evaluate (required)
  • request parameter: The input that prompted the response (optional but recommended)
  • Use actual variables from your code, not static strings

Multi-Turn / Agent + Tool Calls evaluation

If a multi-turn conversation is detected, use the multi-turn format to evaluate the entire conversation flow. This may also include tool calls. Confirm from user if multi-turn evaluation would suit their needs. See language-specific guides for details.


Step 5: Provide Next Steps

After integration:

  1. Ask about additional judges: If multiple stages were identified, ask if the user wants to create judges for other stages
  2. Discuss evaluation strategy:

- Should every LLM call be evaluated or sampled (e.g., 10%)? - Should scores be stored in a database for analysis? - Should specific actions trigger based on scores (e.g., alerts for low scores)? - Batch evaluation vs real-time evaluation?

  1. Provide judge details:

- Judge URL: https://scorable.ai/judge/{judge_id} - If you used a temporary key, you must include its counterpart api_token base64 encoded in the url as a query parameter: https://scorable.ai/judge/{judge_id}?token={base64 encoded temporary api_token} - How to view results in the Scorable dashboard (https://scorable.ai/dashboard) - If temporary key was used, a note that it only works for a certain amount of time and they should create an account with a permanent key

  1. Link to docs: https://docs.scorable.ai

- For agentic workflows with tool calls or multi-turn conversations, link to https://docs.scorable.ai/usage/usage/judges#multi-turn-conversations


Key Implementation Notes

  • Install SDK first: Check which dependency management system is used and install the appropriate package.
  • Store API keys securely: Use environment variables, not hardcoded strings
  • Handle errors gracefully: Evaluation failures shouldn't break your application
  • Start simple: Evaluate one stage first, then expand
  • Sampling for production: 5-10% sampling reduces costs while maintaining visibility
  • Non-blocking: The evaluation should not block the main thread and not slow down the application
  • Common patterns: See language-specific reference files for integration patterns (development, production sampling, batch evaluation)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.38%
按下载量换算46

Gemini CLI

23.19%
按下载量换算38

Antigravity

15.48%
按下载量换算25

Cursor

11.2%
按下载量换算18

github-copilot

6.95%
按下载量换算11

Codex

3.33%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills