Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

backend-core后端核心

Agent Skill

backend-core 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

220

周安装

9

GitHub Stars

4

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/jimnguyendev/jimmy-skills --skill backend-core

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。

  • 适用于需要快速理解项目结构、追踪代码变更或管理开发流程的场景。
  • 通过分析仓库内容、提交历史和协作动态,帮助 Agent 定位问题、生成报告或制定开发计划。
  • 安装前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 可结合来源仓库和原始 README 进一步核验具体用法和功能边界。

SKILL.md

Backend Core

Use this skill before dropping into a language-specific backend skill when the main question is architectural or operational rather than syntax-level.

For large features (multiple files, new concepts, migrations), run jimmy-skills@engineering-design-thinking first — it provides the full five-gate process before any implementation begins. The principles below are the backend-specific application of that process.

Design Thinking

Programming is thinking, not typing. Every principle below exists to protect that idea.

1. Structure serves clarity, not paradigm

Do not pick OOP, procedural, or functional because of ideology. Pick what makes the code readable after the project stops being small.

  • Plain code first. Add methods, interfaces, and abstractions only when they solve an actual problem: testing, replacement, or repeated behavior.
  • A handler that moves data from request to database does not need five abstractions and ten files. That is decoration, not design.
  • The test: when this code gets bigger, will it still make sense without a lecture? If yes, the structure is right.

2. Evaluate by Solution Ideality

Solution Ideality = Benefits / (Resources Required + Harmful Effects)

  • Resources: time, cost, people.
  • Harmful effects: known and unknown.
  • A solution that looks clean but introduces hidden coupling or operational burden scores low. Judge by the ratio, not the appearance.
  • System design in reality is not system design in interviews. Reality has existing systems, constrained budgets, and teams that must maintain what you ship.

3. Understand the real problem before proposing solutions

  • Expected: identify functional requirements, non-functional requirements, stakeholders, and timeline.
  • Reality: acknowledge the existing system and its constraints (team expertise, budget, tech debt, deployment environment).
  • Distinguish assumptions from facts. If a claim is not verified, label it as an assumption and validate before building on it.
  • Do not get anchored by the first framing of a problem.

4. Trade-offs are coupling in disguise

  • When optimizing A is constrained by B, the root cause is coupling between them.
  • Do not pick a side of a trade-off. Resolve the coupling: separate the concerns so each can evolve independently.
  • One-way dependencies and consumer-side interfaces are not code-organization rules. They are coupling resolvers.

5. Decompose with proof, not instinct

  • Start with fewer, larger units. Split only when the split delivers measurable value for scalability or development velocity.
  • "If splitting does not bring meaningful value, do not split."
  • Most bad code comes from trying to look scalable before earning it.
  • Be extremely cautious with distributed transactions. Each one adds coupling that is hard to remove.

6. Classify contention before choosing architecture

  • Low contention: requests spread across independent resources (wallet transfers between different account pairs).
  • High contention: many requests converge on the same resource (100k users buying from 10k tickets at the same moment).
  • Same "high concurrency" label, fundamentally different solutions. Do not apply the same pattern to both.

Focus Areas

  1. API contracts before handler code
  2. Zero-downtime schema evolution before migration implementation
  3. Idempotency and retries for async flows
  4. Authentication and authorization boundaries
  5. Observability, rollout, and rollback requirements

Architecture Defaults

These defaults are the concrete application of the Design Thinking principles above.

For backend APIs, default to feature-first organization unless the user explicitly wants another style.

  • Group code by business capability, not by technical layer
  • Keep one feature mostly in one place
  • Package dependencies must form a DAG — this enforces principle 4 (resolve coupling)

If two backend packages need each other, stop and fix the boundary:

  1. Move behavior to the package that owns the concern
  2. Merge the packages if they are really one unit
  3. Define a narrow interface in the consumer package and inject the concrete dependency from wiring code

Circular dependencies indicate a boundary problem, not a tooling inconvenience.

Routing

  • For full design thinking process on large features, use jimmy-skills@engineering-design-thinking.
  • For Go implementation details, move to the relevant jimmy-skills@backend-go-* skill.
  • For Go package structure and feature-first layout decisions, prefer jimmy-skills@backend-go-project-layout.
  • For MyVocab project-specific patterns (feature module, error flow, DI), use jimmy-skills@myvocap-backend.
  • For REST API contract design, use jimmy-skills@engineering-rest-api-design.
  • For performance optimization, use jimmy-skills@engineering-perf-optimization-process.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

31.46%
按下载量换算22

Claude

30.63%
按下载量换算22

Cursor

19.67%
按下载量换算14

Gemini CLI

9.75%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills