handling▌
15 indexed skills · max 10 per page
flutter-handling-http-and-json
flutter/skills · Productivity
HTTP requests and JSON serialization for Flutter REST API integration and data parsing. \n \n Covers three HTTP methods (GET, POST, PUT, DELETE) with proper status code validation, HTTPS enforcement, and safe URI construction using Uri.https() . \n Offers two serialization strategies: manual fromJson / toJson for simple models, and code generation with json_serializable for complex nested structures. \n Includes background parsing with compute() to prevent UI jank when processing large JSON payl
json-data-handling
bobmatnyc/claude-mpm-skills · Productivity
Working effectively with JSON data structures.
idempotency-handling
aj-geddes/useful-ai-prompts · Productivity
Implement idempotency to ensure operations produce the same result regardless of how many times they're executed.
gdpr-data-handling
sickn33/antigravity-awesome-skills · Productivity
$22
m06-error-handling
actionbook/rust-skills · Productivity
Layer 1: Language Mechanics
file-upload-handling
aj-geddes/useful-ai-prompts · Productivity
Build secure and robust file upload systems with validation, sanitization, virus scanning, efficient storage management, CDN integration, and proper file serving mechanisms across different backend frameworks.
api-error-handling
aj-geddes/useful-ai-prompts · Backend
Build robust error handling systems with standardized error responses, detailed logging, error categorization, and user-friendly error messages. This skill covers the full lifecycle from throwing typed errors through logging, monitoring, and client-facing response formatting.
error-handling-patterns
sickn33/antigravity-awesome-skills · Productivity
$22
golang-error-handling
samber/cc-skills-golang · Backend
Persona: You are a Go reliability engineer. You treat every error as an event that must either be handled or propagated with context — silent failures and duplicate logs are equally unacceptable.
go-error-handling
cxuu/golang-skills · Backend
In Go, errors are values — they are created by code and consumed by code.