원클릭으로
redaxios
HTTP clients with redaxios. Use when making HTTP requests, building API clients, or fetching external services in TypeScript.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
HTTP clients with redaxios. Use when making HTTP requests, building API clients, or fetching external services in TypeScript.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Skill writing principles. Use when creating, editing, or reviewing any SKILL.md.
Skill rule extraction and creation. Use when the user says /learn.
Kysely database queries. Use when writing, reviewing, or debugging Kysely selects, mutations, joins, transactions, filters, or aggregates.
Frontend components and Tailwind. Use when creating, reviewing, refactoring, splitting, or organizing React components, shared components, component folders, or Tailwind classes.
TanStack Query in React. Use when implementing or reviewing queries, mutations, invalidation, or query hooks.
Lint and optimize existing skills. Use when the user says /skill-linter.
| name | redaxios |
| description | HTTP clients with redaxios. Use when making HTTP requests, building API clients, or fetching external services in TypeScript. |
Import as axios. Always call with one object argument, never .get() / .post().
import axios from "redaxios";
const { data } = await axios<ResponseType>({
method: "GET",
baseURL: "https://api.example.com",
url: "/endpoint",
params: { key: "value" },
headers: { Authorization: "Bearer token" },
});
Inline response generics are fine for trivial responses. Use a named type when the response has domain meaning, is reused, has nested objects/lists, or no longer fits as a short one-line shape.
// Good
const { data } = await axios<SearchResponse>({ ... });
type SearchResponse = {
results: { id: number; title: string; year: number }[];
total: number;
};
// Bad: complex response inline in the generic
const { data } = await axios<{
results: { id: number; title: string; year: number }[];
total: number;
}>({ ... });