Api integration
A repo of skills I use in my current personal workflows. I keep updating as I create new skills
npx -y skills add DejusDevspace/my-skills --skill api-integrationAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
3 things to look at
- 27 days oldThe repository was created 27 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
A robust methodology for integrating frontend applications with a backend API. Use when asked to integrate an API, standardizing API fetching, or connecting frontend pages to backend endpoints.
SKILL.md
3.4 KB, as published. Nobody here has run it
API Integration Skill
Name: Standardized API Integration Description: A robust methodology for integrating frontend applications with a backend API. This skill ensures that integrations are consistent, standardized, and correctly align with existing repository patterns or API documentation.
Trigger
Use this skill when the user requests to:
- "Integrate a page to the API"
- "Connect the frontend to the backend"
- "Standardize API fetching"
- "Migrate mock data to live API data"
Workflow Instructions
When tasked with integrating an API, follow this strict sequential workflow:
1. Analyze and Understand the Environment
Before writing any code, you must determine if this is a fresh integration or an addition to an existing system.
- Check for Existing Conventions: Search the repository for existing API configurations (e.g.,
constants/index.ts,services/, hooks likeuseSWRoruseQuery).- If existing integrations are found: Thoroughly study them. Your new integration must exactly replicate the established conventions (e.g., how endpoints are constructed, how state/pagination is handled, how error banners are displayed, how data fetchers are configured).
- If it is a new repository (or no prior integration exists): Locate the API documentation (e.g.,
openapi.yaml, Swagger docs, or Markdown files) in the repository. Use these specifications to establish a clean, standard integration architecture from scratch.
2. Standardize Endpoints & Types
- Define all API endpoint paths as central constants (e.g., in a
constants/index.tsfile) rather than hardcoding string paths directly into services or components. - Validate that your planned endpoints and request/response shapes perfectly match the OpenAPI schema or API documentation.
- Define or update strict TypeScript interfaces/types for the API requests, responses, and UI models.
3. Handle Data Fetching & State
- Listing/Read Operations: Implement data fetching logic using the repository's preferred data fetching library (e.g.,
useSWR,React Query, or nativefetchin Next.js App Router). Make sure to pass along any required query parameters natively (e.g., paginationpage,limit, filters, and sorting). - Mutations (Create/Update/Delete): Ensure that mutations hit the live API endpoints (replacing any mock logic like
setTimeout). - Cache Invalidation: After a successful mutation, ensure the frontend cache is invalidated/refreshed (e.g., calling
mutate()in SWR) so the UI immediately reflects the new state without requiring a hard reload.
4. Require Clarification over Assumptions
- Do NOT make assumptions. If the existing conventions are contradictory (e.g., a service file handles state manually while another component uses a fetching hook), or if the frontend routes do not match the API documentation, STOP.
- Explicitly ask the user for clarification on which standard to adopt before writing any code.
Verification
- Verify that there are no hardcoded string URLs remaining in the component or service files.
- Verify that loading, empty, and error states are accounted for.
- Verify that types match the schema specifications.