Claude-skill-registry HTTP Client
Best practices for HttpClient, Interceptors, and API interactions.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/http-client" ~/.claude/skills/majiayu000-claude-skill-registry-http-client-b9a070 && rm -rf "$T"
manifest:
skills/data/http-client/SKILL.mdsource content
HTTP Client
Priority: P1 (HIGH)
Principles
- Functional Interceptors: Use
. Class-based interceptors are deprecated.HttpInterceptorFn - Typed Responses: Always type
.http.get<User[]>() - Services: Encapsulate all HTTP calls in Services. Never call
in Components.http
Guidelines
- Caching: Implement caching in interceptors or using
in services.shareReplay(1) - Error Handling: Catch errors in services or global interceptors, not components.
- Context: Use
to pass metadata to interceptors (e.g., specific caching rules).HttpContext