karibulab/skills · Archived

screaming-architecture

Follow the clean and maintainable code architecture pattern for project structure.

First seen Feb 16, 2026

Installation

$ npx skills add karibulab/skills --skill screaming-architecture

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from karibulab/skills.

npx skills add karibulab/skills

Browse all from karibulab/skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 1
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 946 B
  • docs SUMMARY.md 112 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 45 installs

SKILL.md

Screaming Architecture

Clean and maintainable code architecture pattern for project structure.

Purpose

Follow the clean and maintainable code architecture pattern for project structure.

When to Use

Use when you need to create or modify project structure following the clean and maintainable code architecture pattern.

Instructions

  1. Create the project directory structure.

For example, a todo list microservice could have the following structure:

src/
  todo/
    application/
      add-todo.use-case.ts
      update-todo.use-case.ts
      get-todos.use-case.ts
    domain/
      todo.entity.ts
      todo.repository.ts   // interface
    infrastructure/
      todo.repository.impl.ts
    presentation/
      todo.controller.ts
    dto/
      add-todo.dto.ts
      update-todo.dto.ts