원클릭으로
fpf-skillmetric-evaluate-cslc
Evaluates a value against an FPF CSLC (Characteristic/Scale/Level/Coordinate) definition (A.18).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Evaluates a value against an FPF CSLC (Characteristic/Scale/Level/Coordinate) definition (A.18).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Verifies that an execution trace complies with the FPF Behavioral Specification.
Generated skill for design/audit-name.
Generated skill for design/deprecate-name.
Generated skill for design/mint-name.
Minimal reference skill used to validate parsing and loading.
Calculates the SkillUsabilityScore (U.Metric) for Zero-Shot Enactment.
| name | fpf-skill:metric-evaluate-cslc |
| description | Evaluates a value against an FPF CSLC (Characteristic/Scale/Level/Coordinate) definition (A.18). |
| version | 0.1.0 |
| allowed_tools | [] |
This skill implements FPF Pattern A.18 (Metrics & Scales). To avoid "averaging nonsense", every metric must have a strictly defined Scale Type: Nominal, Ordinal, Interval, or Ratio.
Given a value and a scale_definition, validate the value and return its normalized Coordinate.
Handle the following types strictly:
{pass, fail}). No ordering.1-5). Order matters, but distance is undefined. You CANNOT average these (use median).Temperature C). You can average.Time in seconds). You can average and divide.If the value is valid for the scale, return:
{
"valid": true,
"coordinate": number | string,
"scale_type": string
}
If invalid (e.g., "7" on a 1-5 scale), return valid=false.