BambooGap

25 mods across 1 repository, 4 stars between them.

API 设计规范

02

BambooGap/skills-orchestrator

Cursor rule Cursor

A set of rules for designing REST APIs, including consistent resource names, response status codes, versioning, and error formats. REST APIs are web interfaces that programs use to exchange data.

4 4d ago A 0 tokens original MIT

BambooGap/skills-orchestrator

Cursor rule Cursor

A structured way to explore a coding problem before writing code. It separates idea generation, narrowing the choices, and testing the likely weaknesses of each option.

4 4d ago A 0 tokens original MIT

代码风格规范

04

BambooGap/skills-orchestrator

Cursor rule Cursor

Code-style guidance for naming, function size, and comments, with the goal of making code understandable from its structure. Self-explanatory code reduces the mental effort needed to read and maintain it.

4 4d ago A 0 tokens original MIT

部署检查清单

05

BambooGap/skills-orchestrator

Cursor rule Cursor

A checklist for reviewing a software change before it goes live. It covers feature checks, a rollback plan for undoing the release, monitoring and alerts, and the order of database changes.

4 4d ago A 0 tokens original MIT

写文档

06

BambooGap/skills-orchestrator

Cursor rule Cursor

Guidance for writing project and code documentation, including README files, code comments, API references, and migration instructions. A README explains how a project is used, while API documentation explains how other code can call it.

4 4d ago A 0 tokens original MIT

环境管理规范

07

BambooGap/skills-orchestrator

Cursor rule Cursor

A set of rules for keeping development, testing, and production environments separate and consistent. These environments are the different places where software is built, checked, and run for users.

4 4d ago A 0 tokens original MIT

错误处理规范

08

BambooGap/skills-orchestrator

Cursor rule Cursor

Rules for handling errors in layers, separating expected business problems from technical failures. They also cover keeping useful exceptions visible instead of silently ignoring them or adding unnecessary safeguards.

4 4d ago A 0 tokens original MIT

完成分支清单

09

BambooGap/skills-orchestrator

Cursor rule Cursor

A final checklist for a branch before opening a pull request, which is a request for others to review and merge code. It covers code quality, tests, commit history, the request description, and documentation.

4 4d ago A 0 tokens original MIT

Git 提交规范

10

BambooGap/skills-orchestrator

Cursor rule Cursor

A rule for writing Git commit messages in Conventional Commits format, a shared style that labels changes such as features, fixes, and documentation.

4 4d ago A 0 tokens original MIT

Git 操作规范

11

BambooGap/skills-orchestrator

Cursor rule Cursor

A set of rules for everyday Git work, where Git is a system for tracking code changes and collaborating with branches.

4 4d ago A 0 tokens original MIT

BambooGap/skills-orchestrator

Cursor rule Cursor

A workflow for Git worktrees, which let you have several branches checked out in separate folders at the same time. You can work between branches without stashing changes or switching the current branch.

4 4d ago A 0 tokens original MIT

Karpathy Guidelines

13

BambooGap/skills-orchestrator

Cursor rule Cursor

A set of coding rules based on guidance from Andrej Karpathy. It tells the coding agent to think before editing, keep implementations small, make focused changes, and work toward a clear goal.

4 4d ago A 0 tokens original MIT

BambooGap/skills-orchestrator

Cursor rule Cursor

A method for improving program speed by measuring performance first, finding the actual bottleneck, and then checking whether the change helped. Profiling is the process of measuring where a program spends its time or resources.

4 4d ago A 0 tokens original MIT

安全重构

16

BambooGap/skills-orchestrator

Cursor rule Cursor

A set of rules for refactoring code, meaning changing its internal structure without changing what it does. It recommends small steps, tests first, extracting functions, and removing repeated code.

4 4d ago A 0 tokens original MIT

安全代码审查

17

BambooGap/skills-orchestrator

Cursor rule Cursor

A quick secure-code review checklist based on the OWASP Top 10, a widely used list of common web-application security risks. It checks input validation, authentication, injection, and exposure of sensitive data.

4 4d ago A 0 tokens original MIT

系统化调试

18

BambooGap/skills-orchestrator

Cursor rule Cursor

A step-by-step method for investigating bugs, failed tests, and unexpected behaviour. It provides a structured way to narrow down the cause instead of guessing.

4 4d ago A 0 tokens original MIT

测试驱动开发

20

BambooGap/skills-orchestrator

Cursor rule Cursor

A software development method called test-driven development, or TDD, where tests are written before the code they check.

4 4d ago A 0 tokens original MIT

写实现计划

21

BambooGap/skills-orchestrator

Cursor rule Cursor

A rule set for writing an implementation plan before coding. The plan covers affected areas, broken-down steps, tests, and risks.

4 4d ago A 0 tokens original MIT