TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/apursley2012/developer-dossier/llms.txt
Use this file to discover all available pages before exploring further.
data/articles.js module exports the articles array consumed by both the Writing list page and the individual article view. Each article entry is a self-contained object that carries the full body content alongside its metadata — there is no separate content directory or CMS. The list page renders each article’s title, type stamp, date, and abstract; the individual article view at /#/writing/:id renders the full content field as prose.
Article Schema
Article Types
Eachtype value maps to a ClassificationStamp variant and signals the nature of the writing to visitors before they open it.
| Type | Stamp Variant | Use Case |
|---|---|---|
INCIDENT REPORT | magenta | Post-mortems, bug retrospectives, and war stories |
TECHNICAL | cyan | Deep technical tutorials, architecture analysis, and how-tos |
REFLECTION | cyan | Personal perspective, career thoughts, and lessons learned |
FOR-GEN-AUDIENCE | cyan | Accessible explainers written for non-technical readers |
Current Articles
The writing archive currently contains four entries. The Great State Collapse of 2023 (art-001)
- Type: INCIDENT REPORT · Date: 2023-10-14 · Read time: 6 MIN
- A post-mortem of a cascading state management failure — what went wrong, why it spread, and how it was contained.
art-002)
- Type: TECHNICAL · Date: 2024-02-02 · Read time: 8 MIN
- A technical deep-dive into structuring data fetching to survive network failures, stale responses, and race conditions.
art-003)
- Type: REFLECTION · Date: 2024-05-18 · Read time: 5 MIN
- A candid reflection on the cycle of adopting, abandoning, and re-embracing utility-first CSS — and what actually changed the second time.
art-004)
- Type: FOR-GEN-AUDIENCE · Date: 2024-08-30 · Read time: 10 MIN
- A jargon-free walkthrough of the full e-commerce transaction pipeline, written for readers with no technical background.
Adding an Article
Add a new object to the articles array
Append a new entry at the end of the
articles array (or insert it in your preferred chronological position). Assign the next sequential id.Choose an article type
Set
type to one of the four valid values. This controls the ClassificationStamp color and sets reader expectations about the nature of the content.Write the abstract and content
The
abstract is displayed on the Writing list page and at the top of the article view — keep it to one focused paragraph. The content field holds the complete article body and is rendered as prose in the detail view.