Skill Details
Runtime
(claude-5-opus)
Example user message
[userMessage]: Write a Python function to read a JSON file and return a user object.
Example agent response
import json
from pathlib import Path
from typing import Any
def load_user_profile_by_path(file_path: Path) -> dict[str, Any]:
"""Reads and validates a user profile JSON file from disk."""
if not file_path.exists():
raise FileNotFoundError(f"User profile not found at {file_path}")
with file_path.open("r", encoding="utf-8") as file_stream:
raw_content = file_stream.read()
parsed_data = json.loads(raw_content)
if not isinstance(parsed_data, dict):
raise ValueError("Invalid user profile format: expected root dictionary")
return parsed_data
By purchasing this skill, you agree to our terms of service
CLAUDE-5-OPUS
An agent skill file that equips Claude Code with language-agnostic software development standards. Integrates directly into your agent runtime to enforce production-grade coding practices across TypeScript, Python, Go, Rust, Swift, Kotlin, and more. Instructs the agent to scan existing project context before writing code, strictly enforce semantic naming conventions (prohibiting single-letter variables like i or x), implement zero-trust input validation, mandate strict typing, write comprehensiv
...more
Updated 1 week ago
