Skip to content

Commit d9f0600

Browse files
authored
Merge pull request #368 from raifdmueller/chore/update-changelog-llms
chore: update changelog + llms.txt, add to build pipeline
2 parents fc03022 + 17f383d commit d9f0600

5 files changed

Lines changed: 544 additions & 113 deletions

File tree

docs/all-anchors.adoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ include::anchors/gof-template-method-pattern.adoc[leveloffset=+2]
7777

7878
include::anchors/gof-visitor-pattern.adoc[leveloffset=+2]
7979

80+
include::anchors/grasp.adoc[leveloffset=+2]
81+
82+
include::anchors/kiss-principle.adoc[leveloffset=+2]
83+
8084
include::anchors/solid-dip.adoc[leveloffset=+2]
8185

8286
include::anchors/solid-isp.adoc[leveloffset=+2]
@@ -133,6 +137,8 @@ include::anchors/diataxis-framework.adoc[leveloffset=+2]
133137

134138
include::anchors/docs-as-code.adoc[leveloffset=+2]
135139

140+
include::anchors/para-method.adoc[leveloffset=+2]
141+
136142
<<<
137143

138144
== Meta
@@ -193,10 +199,14 @@ include::anchors/gom.adoc[leveloffset=+2]
193199

194200
include::anchors/hexagonal-architecture.adoc[leveloffset=+2]
195201

202+
include::anchors/iso-25010.adoc[leveloffset=+2]
203+
196204
include::anchors/lasr.adoc[leveloffset=+2]
197205

198206
include::anchors/madr.adoc[leveloffset=+2]
199207

208+
include::anchors/vertical-slice-architecture.adoc[leveloffset=+2]
209+
200210
<<<
201211

202212
== Statistical Methods & Process Monitoring
@@ -217,6 +227,8 @@ include::anchors/impact-mapping.adoc[leveloffset=+2]
217227

218228
include::anchors/jobs-to-be-done.adoc[leveloffset=+2]
219229

230+
include::anchors/pert.adoc[leveloffset=+2]
231+
220232
include::anchors/pugh-matrix.adoc[leveloffset=+2]
221233

222234
include::anchors/swot.adoc[leveloffset=+2]
@@ -237,6 +249,8 @@ include::anchors/iec-61508-sil-levels.adoc[leveloffset=+2]
237249

238250
include::anchors/linddun.adoc[leveloffset=+2]
239251

252+
include::anchors/llm-evaluations.adoc[leveloffset=+2]
253+
240254
include::anchors/mutation-testing.adoc[leveloffset=+2]
241255

242256
include::anchors/owasp-top-10.adoc[leveloffset=+2]

docs/changelog.adoc

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
A chronological record of all semantic anchors added to the catalog. Community contributors are credited with thanks.
44

5+
== 2026-03-26
6+
7+
*New anchors:*
8+
9+
* *GRASP* — Craig Larman's 9 OO responsibility-assignment patterns
10+
* *Vertical Slice Architecture* — Jimmy Bogard's feature-first architecture
11+
* *KISS Principle* — Keep It Simple (Tier 1)
12+
* *P.A.R.A. Method* — Tiago Forte's knowledge organization framework
13+
* *PERT* — Program Evaluation and Review Technique (Tier 2)
14+
* *ISO 25010* — Software product quality model
15+
16+
*New features:*
17+
18+
* *Semantic Contracts* — composable project conventions that reference existing anchors. Select and download as `semantic-contracts.md` for AGENTS.md/CLAUDE.md.
19+
* *Anchor Evaluations* — multiple-choice evaluation framework testing 63 anchors across 10 LLMs. link:evaluation-report.html[View results].
20+
521
== 2026-03-14 — Catalog Curation
622

723
Quality review of all anchors: introduced a three-tier rating system (★★★ self-standing, ★★☆ needs qualification, ★☆☆ descriptive only) to measure how reliably an anchor improves LLM communication. All anchors now carry an internal `:tier:` attribute.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"test": "echo \"Error: no test specified\" && exit 1",
1111
"extract-metadata": "node scripts/extract-metadata.js",
1212
"generate-sitemap": "node scripts/generate-sitemap.js",
13-
"build": "npm run extract-metadata && npm run generate-sitemap"
13+
"generate-llms-txt": "node scripts/generate-llms-txt.js",
14+
"render-docs": "node scripts/render-docs.js",
15+
"build": "npm run extract-metadata && npm run generate-llms-txt && npm run render-docs && npm run generate-sitemap"
1416
},
1517
"keywords": [],
1618
"author": "",

0 commit comments

Comments
 (0)