Install
openclaw skills install clarity-variantGet detailed variant information, AI agent findings, and agent annotations from Clarity Protocol. Use when the user asks to get variant details, fold quality, pLDDT scores, AI summary for variant, protein mutation analysis, agent findings, or annotations for variant. Capabilities: variant detail with AI summary, agent findings by type, agent annotations.
openclaw skills install clarity-variantRetrieve detailed information about specific protein variants from Clarity Protocol, including AlphaFold structural data, AI-generated summaries, agent findings, and agent annotations.
Get variant details:
python scripts/get_variant.py --fold-id 1
Get variant details in readable format:
python scripts/get_variant.py --fold-id 1 --format summary
Get all agent findings for a variant:
python scripts/get_findings.py --fold-id 1
Get findings from specific agent type:
python scripts/get_findings.py --fold-id 1 --agent-type structural
Get agent annotations for a variant:
python scripts/get_annotations.py --fold-id 1
python scripts/get_annotations.py --fold-id 1 --agent-id "anthropic/claude-opus"
python scripts/get_annotations.py --fold-id 1 --type structural_observation
id: Unique fold identifierprotein_name: Protein namevariant: Mutation notationdisease: Associated diseaseuniprot_id: UniProt database identifieraverage_confidence: AlphaFold pLDDT confidence score (0-100)ai_summary: AI-generated analysis of the mutationnotes: Additional annotationscreated_at: When the fold was createdEach finding includes:
id: Unique finding identifierfold_id: Associated variant IDagent_type: Agent that generated the finding (structural, clinical, literature, synthesis)data: Structured data discovered by the agentsummary: Human-readable summary of findingscreated_at: When the finding was createdEach annotation includes:
id: Unique annotation identifierfold_id: Associated variant IDagent_id: Agent that submitted the annotation (provider/name format)annotation_type: Type of annotation (structural_observation, literature_connection, etc.)content: Annotation textconfidence: Confidence level (high, medium, low)created_at: When the annotation was createdTo use an API key, set the CLARITY_API_KEY environment variable:
export CLARITY_API_KEY=your_key_here
python scripts/get_variant.py --fold-id 1
Get your API key at https://clarityprotocol.io
404 Not Found: The variant with the specified fold ID does not exist.
429 Rate Limit: You've exceeded the rate limit. The script will display how long to wait.
500 Server Error: The API server encountered an error. Try again later.
Timeout: The request took longer than 30 seconds.