react-template-data-access-endpoint — community react-template-data-access-endpoint, react-template, community, ide skills

v1.0.0

À propos de ce Skill

Parfait pour les agents Frontend qui ont besoin de flux de travail d'accès aux données React rationalisés avec des intégrations de points de terminaison sécurisées. Add or refactor API endpoints in this React template by updating feature-scoped <feature>.schema.ts parsers, <feature>.api.ts functions, and mocks/api.mockoon.json while keeping feature code free of direct http-client calls.

tkorakas tkorakas
[11]
[0]
Updated: 3/8/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 7/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
7/11
Quality Score
47
Canonical Locale
en
Detected Body Locale
en

Parfait pour les agents Frontend qui ont besoin de flux de travail d'accès aux données React rationalisés avec des intégrations de points de terminaison sécurisées. Add or refactor API endpoints in this React template by updating feature-scoped <feature>.schema.ts parsers, <feature>.api.ts functions, and mocks/api.mockoon.json while keeping feature code free of direct http-client calls.

Pourquoi utiliser cette compétence

Permet aux agents de générer des analyses et des mocks alignés pour les points de terminaison d'accès aux données en utilisant des contrats de requête/réponse Zod, des fonctions API exportées et des mocks API Mockoon, ce qui rationalise le développement d'applications web sécurisées et maintainables avec des fonctionnalités comme `src/data-access/<feature>/<feature>.schema.ts` et `src/data-access/<feature>/<feature>.api.ts`.

Meilleur pour

Parfait pour les agents Frontend qui ont besoin de flux de travail d'accès aux données React rationalisés avec des intégrations de points de terminaison sécurisées.

Cas d'utilisation exploitables for react-template-data-access-endpoint

Initialisation d'applications web avec des configurations React avec opinions
Génération d'intégrations de points de terminaison sécurisées avec des analyses et des mocks alignés
Rationalisation des flux de travail d'accès aux données pour des modules d'accès aux données spécifiques aux fonctionnalités

! Sécurité et Limitations

  • Nécessite une configuration React
  • Limité à la génération d'intégrations de points de terminaison avec des analyses et des mocks alignés

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is react-template-data-access-endpoint?

Parfait pour les agents Frontend qui ont besoin de flux de travail d'accès aux données React rationalisés avec des intégrations de points de terminaison sécurisées. Add or refactor API endpoints in this React template by updating feature-scoped <feature>.schema.ts parsers, <feature>.api.ts functions, and mocks/api.mockoon.json while keeping feature code free of direct http-client calls.

How do I install react-template-data-access-endpoint?

Run the command: npx killer-skills add tkorakas/react-template/react-template-data-access-endpoint. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for react-template-data-access-endpoint?

Key use cases include: Initialisation d'applications web avec des configurations React avec opinions, Génération d'intégrations de points de terminaison sécurisées avec des analyses et des mocks alignés, Rationalisation des flux de travail d'accès aux données pour des modules d'accès aux données spécifiques aux fonctionnalités.

Which IDEs are compatible with react-template-data-access-endpoint?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for react-template-data-access-endpoint?

Nécessite une configuration React. Limité à la génération d'intégrations de points de terminaison avec des analyses et des mocks alignés.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add tkorakas/react-template/react-template-data-access-endpoint. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use react-template-data-access-endpoint immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

react-template-data-access-endpoint

Install react-template-data-access-endpoint, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before...

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

React Template Data Access Endpoint

What This Skill Produces

A safe endpoint integration with aligned parsing and mocks:

  • src/data-access/<feature>/<feature>.schema.ts: Zod request/response contracts
  • src/data-access/<feature>/<feature>.api.ts: exported API function(s) that parse responses
  • mocks/api.mockoon.json: endpoint and response shape alignment
  • Feature consumers updated to import from feature-specific data-access modules

When To Use

Use this skill when asked to:

  • Add a new backend endpoint to the frontend
  • Refactor existing API access to typed parsing
  • Fix drift between frontend contracts and Mockoon mocks
  • Remove direct httpClient usage from features

Required Inputs

Collect or infer before coding:

  • HTTP method and endpoint path
  • Request payload and query params
  • Response contract (success and expected error formats)
  • Calling features and query/mutation usage
  • Mockoon behavior required for local/dev flows

Workflow

  1. Define or Update Schemas
  • Add request/response Zod schemas and exported types in <feature>.schema.ts.
  • Keep parsers internal to data-access.
  • Validate nested collections/pagination contracts explicitly.
  1. Implement API Function
  • Add exported function in <feature>.api.ts using httpClient.
  • Parse JSON response with schema before returning.
  • Keep transport concerns (paths, params, body) inside data-access.
  1. Update Callers
  • Ensure features import API functions from ~/data-access/<feature>/<feature>.api.
  • Remove direct httpClient calls from feature files.
  • Keep feature handlers focused on query/mutation orchestration.
  1. Sync Mocks
  • Update mocks/api.mockoon.json for endpoint path and response shape.
  • Keep paths aligned with /api prefix conventions.
  • Ensure mock payloads satisfy Zod parsers.
  1. Verify
  • Run pnpm type-check.
  • Run pnpm build if API changes affect route-level features.
  • Smoke-test key flows that depend on changed endpoints.

Decision Points

  • Schema strictness:

    • Prefer strict object shapes for core entities.
    • Use optional/nullish fields only when backend actually returns them.
  • Function granularity:

    • Keep one API function per endpoint/action.
    • Share helper builders only if duplication is substantial.
  • Error handling:

    • Normalize known backend error states where the app has explicit flows.
    • Let unknown errors propagate for global handling/toasts.

Completion Checklist

  • Endpoint contracts exist in <feature>.schema.ts.
  • API function exists in <feature>.api.ts and returns parsed data.
  • No direct feature-level httpClient calls remain for changed flows.
  • Mockoon endpoint is aligned with path and contract.
  • pnpm type-check passes.
  • pnpm build passes when affected UI/routes changed.

Compétences associées

Looking for an alternative to react-template-data-access-endpoint or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

widget-generator

Logo of f
f

Générez des plugins de widgets personnalisables pour le système de flux prompts.chat

flags

Logo of vercel
vercel

Le Cadre de Réaction

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Tenseurs et réseaux neuronaux dynamiques en Python avec une forte accélération GPU

98.6k
0
Développeur