agentsclimarketplace

Cli forge hld

Skill Destynova2/cli-code-skills/cli-forge-hld

Production-ready Claude Code skills — audit code quality, forge design docs, generate documentation, automate infrastructure. CLI = Command Line Interface + Clement Liard Initials.

Install
npx -y skills add Destynova2/cli-code-skills --skill cli-forge-hld

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 5 stars5 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

Generate a High-Level Design (HLD) document for a software system. Use when the user mentions 'HLD', 'system design', 'architecture document', 'design doc', 'ADR', 'C4 diagram', 'back-of-envelope', 'capacity planning', 'ATAM', 'arc42', 'design proposal', 'Gate review', or says 'design X', 'architect Y'. Produces C4 L1-L2 diagrams, capacity estimations, ADRs, tradeoff analysis, and deployment architecture. Do NOT use for low-level/detailed design (class diagrams, DB schemas, API specs) — use cli-forge-lld instead.

SKILL.md

11.4 KB, as published. Nobody here has run it

Optimization: This skill uses on-demand loading. Heavy content lives in references/ and is loaded only when needed.

Language rule: Skill instructions are written in English. When generating user-facing output, detect the project's primary language (from README, comments, docs, commit messages) and produce the document in that language. If the project is bilingual, ask the user which language to use before proceeding.

Diacritics rule: When the chosen output language uses diacritics (French, Spanish, Portuguese, etc.), render them correctly — including on capitals (É, À, Ç, Ô…). Never strip accents to ASCII: write "sécurité" not "securite", "Rôle" not "Role". ASCII-flattened French is a defect, not a style.

Writing style: Favor clarity — short sentences, one idea per sentence, plain words. A metaphor only when it clarifies. Keep one consistent register (impersonal/infinitive for operational docs). Separate narrative prose, meant to make the reader understand, from telegraphic content (tables, commands, checklists) which stays terse for action.

No fabricated output: Never invent command output, console captures, API responses, metrics, or logs. When real output is needed, emit a clearly-marked placeholder (🚧 "replace with a real capture"), never plausible-but-fake text presented as real.

Forge HLD — High-Level System Design

"Everything is a trade-off. Why is more important than how." — Neal Ford & Mark Richards

Core Principles

  1. Mitosis — the document grows only the sections the project actually needs. A CLI tool doesn't need a deployment diagram. A single-service app doesn't need a context map. Kill empty sections, don't fill them with boilerplate
  2. Numbers before architecture — always estimate capacity before designing. The numbers determine whether you need 1 server or 100
  3. Every decision needs a "why" — no technology choice without justification via ADR
  4. Tradeoffs are explicit — use ATAM-style reasoning: "We chose X over Y because [quality attribute] matters more than [other attribute] in this context"
  5. Diagrams are mandatory — use Mermaid for all visuals (C4, sequence, deployment)
  6. Non-goals are as important as goals — they prevent scope creep (Google design doc tradition)
  7. KISS — if a section can be one table instead of three paragraphs, use the table. If a diagram replaces a page of text, use the diagram. Readers scan, they don't read
  8. Gotchas — read ../gotchas.md before producing output to avoid known mistakes

Workflow

Step 1 — Identify scope

SignalOutput
"HLD", "architecture", "system design", "high-level"Full HLD document
"ADR", "decision record"ADR section only (MADR format)
"estimate", "capacity", "back-of-envelope", "sizing"Capacity estimation section only
"design doc", "tech spec", "Gate review", "proposal"Full HLD with executive summary
"tradeoff", "compare options"ATAM tradeoff analysis only

Step 2 — Gather requirements

Extract or ask for functional requirements (use cases, actors, critical journeys) and non-functional requirements using ISO 25010:2023 as checklist:

Quality AttributeQuestions to ask
PerformanceLatency targets? Throughput (RPS)? Response time SLOs?
ReliabilityAvailability target (99.9%? 99.99%)? RTO/RPO?
ScalabilityExpected users now? In 1 year? Growth rate? Peak events?
SecurityAuth model? Encryption? Compliance (ANSSI, DISA STIG, PCI-DSS, RGPD)?
MaintainabilityTeam size? Deployment frequency?
PortabilityMulti-cloud? On-prem? Air-gapped?
DataRetention? Backup? Sovereignty? Volume?

If the user already provided context, use that instead of asking redundant questions.

Step 3 — Size the document (Mitosis)

S/M/L/XL semantics are canonical in ../shared/tiering.md — the tables below specialize them to system complexity and the arc42 section inclusion matrix.

Detect the tier from signals:

SignalTier
CLI tool, library, single-purpose utilityS
Single service/app, 1 team, 1 DBM
Multi-service, multi-team, or regulatedL
Distributed system, multi-region, compliance-heavyXL

Section inclusion matrix:

#SectionSMLXL
1Executive SummaryYesYes
2Goals and Non-GoalsYesYesYesYes
3Stakeholders & ConstraintsYesYesYes
4System Context (C4 L1)YesYesYesYes
5Solution StrategyYesYesYesYes
6Container Architecture (C4 L2)YesYesYes
7Capacity EstimationsIf >1K usersYesYes
8Domain Boundaries (Strategic DDD)If multi-contextYes
9Data ArchitectureIf persistenceYesYesYes
10API Design (High-Level)If API existsYesYesYes
11Security & Trust BoundariesMinimalYesYesYes
12Deployment ArchitectureIf non-trivialYesYes
13Observability & SLOsYesYes
14Failure ModesTop 3 onlyYesYes
15ADRs1-2 key ones3-5All majorAll
16Tradeoff AnalysisIf contestedYes
17Risks and Open QuestionsIf anyYesYesYes
18GlossaryIf domain-heavyYesYes

Target document size:

TierPagesSectionsADRs
S2-44-61-2
M5-108-123-5
L10-1814-165-8
XL15-25All 188+

Rules:

  • Never include an empty section. If a section doesn't apply, omit it entirely — don't write "N/A"
  • Merge small sections when possible. For tier S, Security + Data + API can be one "Technical Decisions" section
  • State the tier at the top of the document so readers know the level of detail to expect
  • If in doubt about whether a section is needed, ask: "Would removing this section cause someone to make a wrong decision?" If no, cut it

Step 4 — Run back-of-envelope estimations (if tier M+ or >1K users)

Read references/estimation-cheatsheet.md for formulas, unit conversions, latency numbers, and scalability laws. Compute traffic, storage, bandwidth, cache, and server estimates. Present results in a clear table — these numbers drive every subsequent design decision.

Step 5 — Write the HLD

Read references/sections.md for full section templates with Mermaid diagrams, tables, and examples. Only include sections selected by the mitosis matrix in Step 3. For tier S, merge related sections freely.

HLD Document Structure

# [System Name] — High-Level Design

## 1. Executive Summary
## 2. Goals and Non-Goals
## 3. Stakeholders & Constraints
## 4. System Context (C4 Level 1)
## 5. Solution Strategy
## 6. Container Architecture (C4 Level 2)
## 7. Capacity Estimations
## 8. Domain Boundaries (Strategic DDD)
## 9. Data Architecture
## 10. API Design (High-Level)
## 11. Security Architecture & Trust Boundaries
## 12. Deployment Architecture
## 13. Observability & SLOs
## 14. Failure Modes and Mitigation
## 15. Architecture Decision Records (ADRs)
## 16. Tradeoff Analysis
## 17. Risks and Open Questions
## 18. Glossary

HLD vs LLD Boundary

In HLDNOT in HLD (→ LLD)
"We use PostgreSQL"Table schemas with columns and indexes
C4 Level 1-2 diagramsC4 Level 3-4 diagrams
"REST API with JWT auth"Full OpenAPI spec with request/response schemas
Entity-relationship sketchColumn types, constraints, migration scripts
"Circuit breaker on external calls"Retry config values, DLQ policy
Architecture style decisionClass/module structure, SOLID
Deployment topologyDockerfile, Helm values
SLOs and error budgetsAlerting rules, runbook procedures
Bounded contexts + context map (strategic DDD)Aggregates, entities, value objects (tactical DDD)
Trust boundaries + security policies (STRIDE system)Component-level threats (STRIDE per class/module)
"We need caching for hot data"Cache TTLs, invalidation patterns, Redis config

If you're writing column-level detail or class diagrams, you've crossed into LLD territory. Stop and suggest the user invoke /cli-forge-lld for that component.

Quality Scoring

After writing, score the HLD using the Architecture Completeness Index (ACI). Read references/scoring.md for the full formula, 12-item checklist with weights, thresholds, and derived metrics.

Anti-Patterns

Before delivering, verify the HLD avoids common traps. Read references/anti-patterns.md for the 10 anti-patterns table.

Review Checklist

All tiers: Tier stated | Goals + Non-Goals | C4 L1 | Solution strategy with rationale | 1+ ADR per decision | Arrows labeled | No empty sections M+: C4 L2 | NFRs addressed | Tech justified | Security model | Data flow (write + read path) L+: Capacity with formulas | Deployment architecture | Failure modes | SLIs/SLOs XL: Context map | ATAM tradeoff | Glossary Size: S: 2-4p | M: 5-10p | L: 10-18p | XL: 15-25p — no section exists just because it's in the template

Dynamic Handoffs

Condition detectedRecommendWhy
HLD reveals components needing detailed design/cli-forge-lldGenerate LLD
Deployment architecture needs infrastructure/cli-forge-infraOps integration
Architecture needs visual diagrams/cli-forge-schemaGenerate C4 Mermaid

Rule: Recommend, don't auto-execute.

Integration with other cli-* skills

SkillRelationship
cli-forge-lldTakes the HLD and zooms into component/code level for each container
cli-forge-schemaCan generate the Mermaid diagrams used in the HLD
cli-forge-infraHelps implement the deployment architecture section
cli-audit-testValidates the testing strategy implied by the architecture
cli-cycleCalls cli-forge-hld as part of full project review

Reference Sources

  • Kleppmann — Designing Data-Intensive Applications | Bass, Clements, Kazman — Software Architecture in Practice | Ford, Richards — Fundamentals of Software Architecture | Brown — The C4 Model | Evans — Domain-Driven Design
  • arc42 | C4 Model | MADR | Google Design Docs | French DAT | ISO 25010:2023
  • ByteByteGo | Software Engineering Radio | InfoQ | Software Engineering Daily

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.