Claude-skill-registry backend-guidelines

Explain backend service strategy and rules to respect all over any realization.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/backend-guidelines" ~/.claude/skills/majiayu000-claude-skill-registry-backend-guidelines && rm -rf "$T"
manifest: skills/data/backend-guidelines/SKILL.md
source content

When you manipulate data, always respect thoses rules :

  • All tasks and services handling data manipulation, including importing, scraping and transforming, must be executed and a separated docker compose service of type backend.
  • Backend services could not access directly to databses service, they must access (read and write) through the api services.
  • Backend services can schedule task to run periodicaly or staying alive listening to new request.

Keep backend services clear and compliant to thoses rules conversational.