core-design-principles

Core Design Principles (Operational Checklist)

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "core-design-principles" with this command: npx skills add 7spade/black-tortoise/7spade-black-tortoise-core-design-principles

Core Design Principles (Operational Checklist)

Use when

  • A task feels “easy to overbuild” (new helpers, new layers, new abstractions).

  • You’re not sure where code should live.

  • You need to choose between “quick fix” vs “correct boundary”.

Inputs (ask/confirm)

  • What capability/bounded context owns this change?

  • What is the smallest stable interface needed by the next layer?

  • Where are the side effects (if any)?

Workflow (tool-first → assembly)

  • Identify the tool: the smallest reusable unit (pure function, port, adapter, store method).

  • Place it in the owner (capability / workspace / eventing / integration) without cross-context imports.

  • Add the assembly: facade/effect/component that wires it, preserving unidirectional flow.

  • Verify deletion path: removing the feature should be mostly deleting code, not untangling.

Hard checks (fail fast)

  • No new cross-layer imports that violate Presentation → Application → Domain.

  • No domain-side framework imports or side effects.

  • No “god” utilities; prefer small, intention-revealing APIs.

  • State stays centralized; UI binds to signals.

References

  • .github/instructions/05-design-principles-copilot-instructions.md

  • AGENTS.md and src/app/**/AGENTS.md

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

material-design-3

No summary provided by upstream source.

Repository SourceNeeds Review
General

architecture-ddd

No summary provided by upstream source.

Repository SourceNeeds Review
General

webapp-testing

No summary provided by upstream source.

Repository SourceNeeds Review
General

angular-material-cdk-animations

No summary provided by upstream source.

Repository SourceNeeds Review