← Back to list

calibration
by do-ops885
Dermatology GOAP Orchestrator
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: calibration description: Applies decision thresholds for high-confidence inputs or enforces conservative safety margins for low-confidence cases license: MIT compatibility: opencode metadata: audience: developers workflow: clinical-pipeline
What I do
I apply calibration thresholds that determine how conservatively the pipeline operates. If detection confidence is >= 0.65, I apply standard thresholds (0.65). If confidence < 0.65, I enforce conservative safety margins (0.50) to reduce false positives.
When to use me
Use this when:
- Skin tone detection is complete and you need to set decision thresholds
- You need to determine whether to use standard or safety calibration
- You're balancing sensitivity vs specificity based on detection confidence
Key Concepts
- Standard Calibration: Threshold = 0.65 for high-confidence inputs
- Safety Calibration: Threshold = 0.50 for low-confidence inputs
- is_low_confidence: Boolean flag routing to appropriate calibration
- calibration_complete: State flag indicating calibration is done
Source Files
services/goap.ts: Calibration action definitionstypes.ts: WorldState interface
Code Patterns
- Standard-Calibration-Agent:
{ is_low_confidence: false }preconditions - Safety-Calibration-Agent:
{ is_low_confidence: true }preconditions - Both set
calibration_complete: trueeffect
Operational Constraints
- Safety calibration is MANDATORY for low-confidence cases
- Threshold decisions affect all downstream fairness calculations
- Always log which calibration mode was applied
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon