analyzing-service-layer
Use when analyzing business logic, use cases, service orchestration, and data transformation including DTOs and mappers
npx skills add majiayu000/claude-skill-registry --skill analyzing-service-layer --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Analyzing Service Layer **Output:** `docs/unwind/layers/service-layer/` (folder with index.md + section files) **Principles:** See `analysis-principles.md` - completeness, machine-readable, link to source, no commentary, incremental writes. ## Output Structure ``` docs/unwind/layers/service-layer/ ├── index.md # Overview, service count, dependency graph ├── services.md # Service class definitions ├── dtos.md # Data transfer objects ├── mappers.md # Mapping logic ├── formulas.md # Business calculations [MUST] └── clients.md # External client integrations ``` For large codebases (20+ services), split by domain: ``` docs/unwind/layers/service-layer/ ├── index.md ├── users-domain.md ├── orders-domain.md └── ... ``` ## Process (Incremental Writes) **Step 1: Setup** ```bash mkdir -p docs/unwind/layers/service-layer/ ``` Write initial `index.md`: ```markdown # Service Layer ## Sections - [Services](services.md) - _pending_ - [DTOs](dtos.md) - _pending_ - [Mappers](mappers.md) - _pending_ - [Formulas](formulas.md) - _pending_ - [External Clients](clients.md) - _pending_ ## Summary _Analysis in progress..._ ``` **Step 2: Analyze and write services.md** 1. Find all service classes 2. Inclu
- Output Structure
- Process (Incremental Writes)
- Output Format
- Additional Requirements
- Formula Documentation [MUST]
- Fallback/Resolution Logic [MUST]
- Transaction Boundaries [SHOULD]
- Mandatory Tagging
- Refresh Mode
mkdir -p docs/unwind/layers/service-layer/
What does the analyzing-service-layer skill do?
Use when analyzing business logic, use cases, service orchestration, and data transformation including DTOs and mappers
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill analyzing-service-layer --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
