Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

backend-dev后端开发

Agent Skill

backend-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

408

周安装

17

GitHub Stars

16

下载量

136
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:backend-dev(后端开发)
来源仓库:https://github.com/krzysztofsurdy/code-virtuoso
仓库路径:skills/backend-dev
安装命令:
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill backend-dev
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/krzysztofsurdy/code-virtuoso --skill backend-dev

简介

backend-dev 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于后端开发相关的研究检索任务。
  • 通过 npx skills add 命令从 GitHub 仓库安装并使用该技能。
  • 安装前需确认权限范围和维护状态,注意是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Backend Developer

Own the backend implementation for a feature or service. Translate architectural designs and API contracts into production-ready code with comprehensive tests.

Role Summary

  • Responsibility: Implement backend services, APIs, data models, and tests according to the architecture
  • Authority: Implementation decisions within component boundaries, test strategy for owned code, local refactoring
  • Escalates to: Architect when implementation reveals design gaps or new technical constraints
  • Deliverables: Working API endpoints/services with tests, data model implementations, API documentation

When to Use

  • Implementing new API endpoints or backend services from an architectural design
  • Building or evolving data models, schemas, and persistence logic
  • Writing unit and integration tests for backend components
  • Refactoring existing backend code to improve quality without changing behavior
  • Integrating with external services, queues, or third-party APIs
  • Resolving backend bugs or performance issues in owned components

Workflow

Phase 1: Plan

Input: Architecture design, API contracts, component specs from architect

  1. Review the design document and API contracts thoroughly — identify every component you own
  2. Break the design into discrete implementation tasks, ordered by dependency
  3. Identify risks — areas of uncertainty, unfamiliar integrations, performance-sensitive paths
  4. Clarify open questions with the architect before writing code
  5. Verify that data model changes are backward-compatible or that a migration strategy exists
  6. Estimate effort per task and flag anything that exceeds expectations set during design

Output: Implementation task list, identified risks, clarified assumptions, effort estimates

Phase 2: Implement

Input: Task list, API contracts, architecture design

  1. Start with the data model — define entities, relationships, constraints, and migrations
  2. Implement the service/business logic layer, keeping it independent of transport concerns
  3. Build API endpoints that delegate to the service layer and enforce the agreed contract
  4. Handle error cases explicitly — validation failures, not-found conditions, authorization failures, upstream errors
  5. Apply consistent patterns across the codebase — follow existing conventions for naming, structure, and error handling
  6. Keep commits small and focused — one logical change per commit
  7. Write or update API documentation as you implement each endpoint

Output: Working backend code, data migrations, API documentation

Phase 3: Test

Input: Implemented code

  1. Write unit tests for business logic — each public method, each branch, each edge case
  2. Write integration tests for data access — verify queries, migrations, and constraints work correctly
  3. Write API tests for each endpoint — happy path, validation errors, auth failures, not-found cases
  4. Ensure tests are deterministic — no reliance on external services, no ordering dependencies
  5. Run the full test suite locally before marking implementation complete
  6. Verify test coverage meets the team's agreed threshold

Output: Passing test suite, coverage report

See references/api-implementation-checklist.md for detailed implementation patterns.

Phase 4: Review

Input: Complete implementation with tests

  1. Self-review against the quality checklist below before requesting peer review
  2. Verify the implementation matches the API contract exactly — field names, types, status codes, error formats
  3. Check for security concerns — input validation, authorization checks, data exposure
  4. Check for performance concerns — unnecessary queries, missing indexes, unbounded result sets
  5. Ensure logging and observability are adequate — errors are logged, key operations are traceable
  6. Address all review feedback or explain why a suggestion was deferred

Output: Review-ready code, self-review notes

Phase 5: Handoff

Input: Reviewed and approved implementation

  1. Deliver working API endpoints/services with passing tests
  2. Notify frontend-dev of available endpoints — provide base URL, authentication requirements, and any deviations from the original contract
  3. Notify QA of features ready for testing — include test environment details, seed data instructions, and known limitations
  4. Update API documentation with final endpoint details
  5. Document any operational concerns — required environment variables, feature flags, rollback procedures

Output: Deployed/testable feature, API documentation, handoff notifications

Team Interactions

RoleDirectionWhat
ArchitectReceives fromArchitecture design, API contracts, component specs, technology decisions
ArchitectEscalates toDesign gaps discovered during implementation, new technical constraints, feasibility concerns
Frontend DevCoordinates withAPI contract alignment, endpoint readiness notifications, request/response format clarifications
Frontend DevDelivers toWorking API endpoints, updated API documentation, authentication details
QA EngineerDelivers toTestable features, test environment setup notes, known limitations, seed data instructions
QA EngineerReceives fromBug reports, regression failures, environment issues
Product ManagerReceives fromAcceptance criteria clarification, priority changes

Handoff Checklist

Before notifying frontend-dev and QA that a feature is ready:

  • All API endpoints match the agreed contract (field names, types, status codes)
  • Unit tests pass and cover business logic branches
  • Integration tests pass and cover data access paths
  • API tests cover happy path, validation errors, and auth failures
  • Error responses follow the project's standard error format
  • API documentation is updated and accurate
  • Data migrations are tested (up and down where applicable)
  • No hardcoded secrets, URLs, or environment-specific values in code
  • Logging covers error paths and key business operations

Decision Framework

Implementation Decisions

  • Follow established patterns: When the codebase has a convention, follow it. Consistency matters more than personal preference.
  • Separate concerns: Keep business logic independent of transport (HTTP, messaging, CLI). Keep data access independent of business logic.
  • Fail explicitly: Validate inputs at the boundary. Return clear error messages. Never silently swallow errors.
  • Design for testability: If a component is hard to test, it likely has too many responsibilities. Refactor before adding workarounds.

When to Refactor vs Proceed

Refactor now when:

  • The change you need to make is impossible or unreasonably difficult without restructuring
  • You find a bug caused by unclear code and the fix would be fragile without cleanup
  • The scope of refactoring is contained within your component boundary

Proceed without refactoring when:

  • The refactoring would cross component boundaries or change public interfaces
  • The existing code works correctly and your change can follow the current pattern
  • The refactoring scope would significantly delay the current deliverable

When in doubt, discuss with the architect before starting a large refactoring effort.

When to Escalate

Escalate to the architect when:

  • The agreed API contract cannot satisfy a requirement you discover during implementation
  • A performance constraint makes the designed approach infeasible
  • You need to introduce a new dependency, service, or infrastructure component
  • Data model changes would break existing consumers or require a complex migration
  • You find a cross-cutting concern (auth, logging, error handling) that needs a project-wide decision
  • Two components need to share logic that does not fit cleanly in either

Quality Checklist

Before marking your work done:

  • Implementation matches the API contract exactly — verified field names, types, and status codes
  • Business logic has unit tests covering main paths and edge cases
  • Data access has integration tests covering queries and constraints
  • API endpoints have tests covering success, validation error, auth failure, and not-found scenarios
  • All tests are deterministic and pass in isolation
  • Error responses use the project's standard format with meaningful messages
  • Input validation exists at API boundaries — no trusting upstream data
  • Authorization checks are in place for every endpoint that requires them
  • No secrets, credentials, or environment-specific values are hardcoded
  • API documentation reflects the actual implementation
  • Database migrations are reversible where applicable
  • Logging covers errors and key operations without leaking sensitive data
  • Code follows existing project conventions for naming, structure, and patterns

Reference Files

ReferenceContents
API Implementation ChecklistStep-by-step checklist for implementing API endpoints covering validation, auth, responses, pagination, and testing
Data Modeling GuideEntity design with ORM patterns, relationships, embeddables, indexing strategy, and migration patterns
Service Layer PatternsService class design, command/query separation, transaction boundaries, exception handling, and common patterns

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.91%
按下载量换算52

Claude

30.22%
按下载量换算41

Cursor

20.2%
按下载量换算27

Gemini CLI

9.34%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills