From backend-coding-agent
Use when loading and merging coding guidelines for the active language — performs deterministic section-level merge of plugin defaults, team custom guidelines, and per-invocation overrides into a single instruction set
How this skill is triggered — by the user, by Claude, or both
Slash command
/backend-coding-agent:guidelines-ingestionThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load coding guidelines from up to 3 sources and merge them deterministically using section-level replacement. The result is a single, merged guidelines document that the agent follows during coding.
Load coding guidelines from up to 3 sources and merge them deterministically using section-level replacement. The result is a single, merged guidelines document that the agent follows during coding.
Layer 3 (highest priority): Per-invocation overrides
↓ overrides
Layer 2: Team's custom guidelines file
↓ overrides
Layer 1 (lowest priority): Plugin shipped defaults
Guidelines are organized by ## heading sections.
defaults/coding-guidelines.md## section in the custom file:
## Overrides section at the top:
## Overrides contentIdentify the guidelines file path:
languages.<lang>.guidelines pathRead Layer 1 (plugin defaults):
defaults/coding-guidelines.md from the active language module## headingsRead Layer 2 (team custom guidelines):
mandatoryGuidelines is true → config-resolver already blockedmandatoryGuidelines is false → skip Layer 2, use Layer 1 only## headingsMerge Layer 1 + Layer 2:
Add Layer 3 (per-invocation overrides):
## OverridesValidate merged result:
Inject into agent context:
State the merged guidelines summary:
npx claudepluginhub gagandeepp/software-agent-teams --plugin backend-coding-agentGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Enforces test-driven development: write failing test first, then minimal code to pass. Use when implementing features or bugfixes.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.