一键导入
api-integration
Guidelines for API integration, environment variables, mocking, and utilities in nhl-recap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Guidelines for API integration, environment variables, mocking, and utilities in nhl-recap.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
General code style, development workflow, and build/quality tools for nhl-recap.
Guidelines for git usage and commit messages in nhl-recap.
Guidelines for triggering and managing deployments using GitHub Actions and local scripts.
Guidelines for documentation standards and project-specific README files in nhl-recap.
Guidelines for Service Worker and PWA functionality in nhl-recap.
Guidelines for creating and modifying UI components and styles in nhl-recap.
| name | api-integration |
| description | Guidelines for API integration, environment variables, mocking, and utilities in nhl-recap. |
This skill provides guidance on working with the backend API, environment variables, and utility functions in the nhl-recap project.
VITE_DEBUG: Debug mode flag (as used in npm start).VITE_SCORE_API_HOST: API host override (defaults to production API; set to http://localhost:8080 for local development).VITE_SCORE_API_HOST=http://localhost:8080 to use a local server.npm run start:server to run json-server with static server/db.json.app/src/utils/.app/src/utils/*.spec.ts.@cycle/http.nock.server/db.json to include new mock data if needed.app/src/test/ or alongside the source as *.spec.ts.nock in tests.npm test or npm run test:watch to verify.