Sub-skill of mkdocs: Code Annotations.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill code-annotations --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Code Annotations?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-code-annotations)More formats (shields.io, HTML) on the badges page.
---
name: mkdocs-code-annotations
description: 'Sub-skill of mkdocs: Code Annotations.'
version: 1.0.0
category: _internal
type: reference
scripts_exempt: true
---
# Code Annotations
## Code Annotations
```python
def calculate_area(radius: float) -> float: # (1)!
"""Calculate the area of a circle."""
import math # (2)!
return math.pi * radius ** 2 # (3)!
```
1. Type hints improve code readability
2. Import inside function for demonstration
3. Uses the formula: A = pi * r^2
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!