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

v1.0.0

Sobre este Skill

Perfeito para Agentes Frontend que precisam de fluxos de trabalho de acesso a dados do React simplificados com integrações de endpoint seguras. 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 teams, 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

Perfeito para Agentes Frontend que precisam de fluxos de trabalho de acesso a dados do React simplificados com integrações de endpoint seguras. 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.

Por que usar essa habilidade

Permite que os agentes gerem análise e mocks alinhados para pontos de acesso de dados usando contratos de solicitação/resposta do Zod, funções de API exportadas e mocks de API do Mockoon, simplificando o desenvolvimento de aplicações web seguras e mantidas com recursos como `src/data-access/<feature>/<feature>.schema.ts` e `src/data-access/<feature>/<feature>.api.ts`.

Melhor para

Perfeito para Agentes Frontend que precisam de fluxos de trabalho de acesso a dados do React simplificados com integrações de endpoint seguras.

Casos de Uso Práticos for react-template-data-access-endpoint

Inicialização de aplicativos web com configurações de React opinativas
Geração de integrações de endpoint seguras com análise e mocks alinhados
Simplificação de fluxos de trabalho de acesso a dados para módulos de acesso a dados específicos de recursos

! Segurança e Limitações

  • Exige configuração do React
  • Limitado à geração de integrações de endpoint com análise e mocks alinhados

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?

Perfeito para Agentes Frontend que precisam de fluxos de trabalho de acesso a dados do React simplificados com integrações de endpoint seguras. 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: Inicialização de aplicativos web com configurações de React opinativas, Geração de integrações de endpoint seguras com análise e mocks alinhados, Simplificação de fluxos de trabalho de acesso a dados para módulos de acesso a dados específicos de recursos.

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?

Exige configuração do React. Limitado à geração de integrações de endpoint com análise e mocks alinhados.

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.

Habilidades Relacionadas

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

Ver tudo

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

Gerar plugins de widgets personalizáveis para o sistema de feed do prompts.chat

flags

Logo of vercel
vercel

O Framework React

138.4k
0
Navegador

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Desenvolvedor