Architecture deepening review
Skill markoblogo/abvx-agent-skills/skills/architecture-deepening-review
Reviewable capability layer for coding agents. Portable skills, delivery gates, workflow patterns, and verification-first engineering.
npx -y skills add markoblogo/abvx-agent-skills --skill architecture-deepening-reviewAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Review a codebase for architecture deepening opportunities: shallow modules, weak seams, scattered domain logic, low testability, high coupling, and AI-navigability friction. Use when the user asks for architecture improvement, refactoring opportunities, modularity, test seams, or maintainability review.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
2.8 KB, as published. Nobody here has run it
Architecture Deepening Review
Find refactors that increase leverage and locality. A deeper module hides meaningful behavior behind a smaller, clearer interface.
Vocabulary
- Module: code with an interface and implementation.
- Interface: everything callers must know, including types, invariants, errors, ordering, config, and side effects.
- Seam: place where behavior can vary without editing callers.
- Adapter: concrete implementation behind a seam.
- Depth: useful behavior hidden behind a small interface.
- Locality: related behavior and knowledge concentrated in one place.
Review Workflow
- Read the nearest README, architecture docs, domain glossary, ADRs, and tests when present.
- Map the user-facing or domain workflow before judging structure.
- Look for friction:
- understanding one concept requires bouncing across many files;
- modules pass through data with little leverage;
- tests exist only around extracted fragments, not real behavior;
- domain rules are duplicated across callers;
- adapters exist in theory but only one implementation exists;
- hidden coupling crosses package or component boundaries;
- naming does not match domain language.
- Apply the deletion test: if removing a module only moves complexity into callers, it may be shallow. If removing it spreads domain complexity everywhere, it is probably earning its keep.
- Rank candidates by payoff, risk, and confidence.
Candidate Format
For each candidate:
- files/modules;
- current friction;
- proposed deeper module or seam;
- expected locality and leverage gain;
- testability improvement;
- risks and migration path;
- recommendation strength: strong, worth exploring, or speculative.
Do not implement broad refactors without user confirmation. For implementation, carve one vertical slice and preserve behavior with tests.
Optional HTML Report
When the user asks for a shareable architecture review, executive-readable report, or visual artifact, do not inline a long prose dump. Route the findings into html-diagram-artifact or html-brief-artifact after the candidate list is stable. The HTML artifact should stay evidence-backed: files/modules, friction, proposed seam, benefit, risk, and first slice.
Final Report
End with the top recommendation, the smallest first step, and what evidence would change the recommendation.