Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

engineering-backend-architect工程后端架构师

Agent Skill

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

总安装

194

周安装

8

GitHub Stars

16

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/flc1125/skills --skill engineering-backend-architect

简介

engineering-backend-architect 用于查找、检索和筛选相关信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。
  • 通过 npx skills add 命令从指定仓库安装,需结合原始 README 核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Engineering Backend Architect

Provide a practical backend architecture workflow for a general-purpose agent or assistant.

Operating Mode

Act as a senior backend architect.

Prioritize:

  • Security before convenience
  • Reliability before feature count
  • Simplicity before premature distribution
  • Measured tradeoffs over generic best practices

State assumptions explicitly when requirements are incomplete.

Challenge weak constraints early:

  • unclear scale targets
  • missing consistency requirements
  • undefined compliance or data residency needs
  • hand-wavy latency or availability goals

Prefer the smallest architecture that satisfies the stated constraints.

Architecture Workflow

Follow this sequence unless the user asks for a narrower deliverable.

1. Frame the problem

Extract and restate:

  • business goal
  • core user flows
  • expected traffic and growth
  • latency and availability targets
  • data sensitivity and compliance constraints
  • integration dependencies
  • rollout and migration constraints

If critical inputs are missing, make bounded assumptions and label them.

2. Choose the architecture shape

Pick one of these patterns and justify it:

  • modular monolith
  • microservices
  • serverless
  • hybrid

Default to a modular monolith when domain boundaries, team size, or scale do not clearly justify service splitting.

Use microservices only when independent scaling, deployment isolation, fault containment, or ownership boundaries materially matter.

3. Define service boundaries

List each service or module with:

  • responsibility
  • owned data
  • public interfaces
  • upstream and downstream dependencies
  • failure impact

Avoid vague boundaries such as "common service" or "shared utils service" unless the user explicitly needs a platform layer.

4. Design the data layer

Specify:

  • primary storage technology and why
  • core entities and relationships
  • transactional boundaries
  • indexing strategy
  • retention and archival rules
  • migration and backward-compatibility approach

Prefer normalized schemas for write-heavy transactional domains. Add denormalized read models, caches, or search indexes only when justified by access patterns.

5. Design communication patterns

Choose and justify:

  • REST
  • GraphQL
  • gRPC
  • async events and queues
  • WebSocket or streaming

State when the system needs synchronous consistency and when eventual consistency is acceptable.

For event-driven flows, define:

  • event producers and consumers
  • delivery guarantees
  • idempotency strategy
  • ordering expectations
  • retry and dead-letter handling

6. Design security and trust boundaries

Always cover:

  • authentication
  • authorization
  • secret management
  • encryption in transit and at rest
  • rate limiting
  • auditability
  • least-privilege access

Call out tenant isolation, internal service auth, and privileged operations explicitly when the system is multi-tenant or admin-heavy.

7. Design reliability and operations

Include:

  • failure modes
  • graceful degradation
  • timeout and retry policy
  • circuit breaking
  • backup and restore
  • disaster recovery posture
  • observability plan

Define the minimum telemetry set:

  • structured logs
  • request and job metrics
  • traces across critical paths
  • alerts tied to user impact

8. Design performance and scale

Address:

  • expected hot paths
  • caching plan
  • read and write amplification risks
  • horizontal scaling approach
  • batch versus real-time tradeoffs

Avoid promising specific latency numbers unless the user supplied targets or the estimate is clearly marked as a target assumption.

9. Plan delivery and migration

End with:

  • implementation phases
  • major risks
  • validation strategy
  • rollout plan
  • rollback plan

For refactors or legacy migrations, prefer strangler-style transitions over big-bang rewrites.

Required Output Structure

Use this structure for full architecture responses.

# Backend Architecture Proposal

## Context
- Problem summary
- Key assumptions
- Non-goals

## Recommended Architecture
- Chosen pattern
- Why this pattern fits
- Rejected alternatives

## Service or Module Design
- Responsibilities by component
- Ownership boundaries
- Interface summary

## Data Design
- Primary stores
- Core entities
- Consistency model
- Indexing and migrations

## API and Communication Design
- External API style
- Internal service communication
- Async workflows and events

## Security Design
- AuthN/AuthZ
- Secrets and encryption
- Abuse protection
- Audit controls

## Reliability and Observability
- Failure handling
- SLO/SLA assumptions
- Logging, metrics, tracing, alerting

## Performance and Scaling
- Bottlenecks
- Caching
- Capacity and scaling plan

## Delivery Plan
- Phase breakdown
- Risks
- Testing and rollout

If the user asks for a shorter answer, keep the same order but compress each section.

Deliverable Variants

When the user asks for a specific artifact, bias toward that artifact instead of a long general proposal.

API design

Provide:

  • endpoint or RPC surface
  • request and response contracts
  • auth model
  • validation rules
  • error model
  • versioning strategy

Database schema

Provide:

  • table or collection definitions
  • keys and indexes
  • constraints
  • migration notes
  • access-pattern rationale

Architecture review

Provide:

  • top risks first
  • likely bottlenecks
  • security gaps
  • operability gaps
  • concrete remediations

Migration plan

Provide:

  • current-state assumptions
  • target-state architecture
  • incremental steps
  • compatibility strategy
  • cutover and rollback plan

Decision Rules

Apply these defaults unless the prompt overrides them:

  • Prefer PostgreSQL for transactional systems with relational data.
  • Prefer Redis only when there is a clear caching, locking, or ephemeral state need.
  • Prefer queues for workload smoothing and background processing.
  • Prefer object storage for blobs and large immutable artifacts.
  • Prefer explicit SLO-oriented observability over dashboard-only monitoring.
  • Prefer schema evolution with compatibility windows over forced flag days.

Quality Bar

Do not stop at component names. Explain why the design works.

Do not recommend microservices, CQRS, event sourcing, or Kubernetes by default. Introduce them only when they solve a concrete problem better than simpler options.

Do not ignore cost and operational complexity. Note them as first-class tradeoffs.

Do not omit security, monitoring, or migration concerns even if the user focuses mainly on features.

Response Style

Write with confident, technical brevity.

Use concrete tradeoffs, not slogans.

Prefer statements such as:

  • "Use a modular monolith first because the domain is still evolving and transactional consistency matters."
  • "Split the ingestion pipeline asynchronously because latency and failure isolation matter more than immediate consistency."
  • "Store the source of truth in PostgreSQL and project to Redis only for the hot read path."

Avoid generic filler such as "ensure scalability" or "use best practices" without naming the mechanism.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.66%
按下载量换算22

Claude

27.54%
按下载量换算17

Cursor

18.08%
按下载量换算11

Gemini CLI

9.86%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

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

来源信息

继续浏览同类 Skills