18 lines
652 B
YAML
18 lines
652 B
YAML
# Skill manifest — one Gitea repo == one skill (Decision D7, Option A)
|
|||
|
|
name: usmle-test-taker
|
||
|
|
title: USMLE Test Taker Agent Skill
|
||
|
|
owner: promptadmin
|
||
|
|
description: Answers USMLE-style multiple-choice clinical vignettes as JSON; two variants (with/without rationale).
|
||
|
|
license: CC-BY-4.0
|
||
|
|
default_prompt: prompts/default.md
|
||
|
|
prompts:
|
||
|
|
- path: prompts/default.md
|
||
|
|
variant: default
|
||
|
|
version: 1
|
||
|
|
- path: prompts/answer-only.md
|
||
|
|
variant: answer-only
|
||
|
|
version: 2
|
||
|
|
examples: examples/
|
||
|
|
# Tag convention: <variant>/v<version> e.g. default/v1, answer-only/v2
|
||
|
|
# Resolve: promptnotes://usmle-test-taker/answer-only@2 -> raw file at tag answer-only/v2
|