blog-post-with-diagrams/SKILL.md
Guides writing technical blog posts that embed Mermaid diagrams, ASCII art, and annotated code blocks to explain architecture, workflows, and decisions. Use when drafting engineering blog posts, developer tutorials, or technical deep-dives that benefit from visual explanations.
npx skillsauth add kayaman/skills blog-post-with-diagramsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Write technical blog posts that combine narrative, code, and diagrams to explain complex topics visually.
Follow this skeleton. Sections marked optional may be dropped when the post type does not need them.
# Title ← concise, specific
## TL;DR ← 2-3 sentence summary
## Context / Problem ← why this matters
## Approach / Solution ← what you built or decided
### Diagram: <caption> ← at least one diagram here
### Code: <caption> ← annotated code block
## Results / Tradeoffs ← evidence or comparison
## Conclusion ← recap + call to action
## References ← optional, links and credits
| Situation | Diagram type | Tool | |-----------|-------------|------| | Request/response flow between services | Sequence diagram | Mermaid | | System components and their connections | C4 container or component | Mermaid | | Decision tree or process steps | Flowchart | Mermaid | | Database tables and relationships | Entity-Relationship diagram | Mermaid | | State transitions | State diagram | Mermaid | | Simple layout or structure that does not need interactivity | ASCII art | Plain text | | Timeline or release plan | Gantt chart | Mermaid |
AuthService not A, UserDB not DB1.style or classDef since they break across themes.Use ASCII art when:
Wrap ASCII art in a fenced code block with no language tag to preserve alignment.
// ... to truncate irrelevant sections.Before publishing, verify:
tools
Guidance for designing charts, graphs, plots, dashboards, and data visualizations that communicate clearly and persuade. Use when creating or reviewing a visualization, choosing a chart type, picking a color palette, decluttering a busy graphic, fixing misleading axes or proportions, building a dashboard, annotating a figure, or turning data into a presentation, report, or data-driven story. Grounded in the standard data-visualization literature (Knaflic, Tufte, Cleveland & McGill, Cairo, Wilke, Munzner, Few, Berinato). Covers chart selection, graphical perception and encoding, color and accessibility, decluttering, graphical integrity, dashboards, and narrative. Does NOT cover building data pipelines or ETL, statistical modeling or analysis methods, BI tool/vendor selection, or general UI/UX layout (see ux-design-principles). Tool-agnostic, with optional Python recipes.
development
Architect and implement production-grade microservices systems in TypeScript (NestJS) and Python (FastAPI), including resilience, observability, testing, deployment, and migration guidance.
development
--- name: databricks-genie-spaces-best-practices description: Design, configure, curate, govern, monitor, and integrate Databricks AI/BI Genie Spaces — the natural-language-to-SQL surface over Unity Catalog. Covers space scoping, general instructions, parameterized example SQL, SQL functions, trusted assets, JOIN configuration, knowledge store, certified queries, benchmarks, monitoring tab, feedback loops, the Genie Conversation API, governance via Unity Catalog (row filters, column masks, embed
tools
Implement OTP and passwordless authentication on AWS for TypeScript projects using Cognito CUSTOM_AUTH triggers (default) or a custom DynamoDB-backed flow, with SES (email) and SNS (SMS) delivery. Use when the user mentions OTP, one-time password, passwordless login, magic link, Cognito custom auth, DefineAuthChallenge, CreateAuthChallenge, VerifyAuthChallengeResponse, SES verification email, SNS SMS code, or MFA over email/SMS. Covers architecture decision (Cognito vs custom), Lambda trigger handlers, SES/SNS notifiers, DynamoDB schema with TTL, rate limiting, constant-time comparison, threat model (enumeration, replay, brute force), and aws-sdk-client-mock testing.