The opam repository for my Advent of Agentic Humps 2025

frontmatter

+73
+35
packages/frontmatter-eio/frontmatter-eio.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Eio file I/O support for frontmatter" 3 + description: 4 + "Eio-based file operations for reading frontmatter files from disk." 5 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 6 + authors: ["Anil Madhavapeddy"] 7 + license: "ISC" 8 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-frontmatter" 9 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-frontmatter/issues" 10 + depends: [ 11 + "dune" {>= "3.20"} 12 + "ocaml" {>= "5.2"} 13 + "frontmatter" {= version} 14 + "eio" {>= "1.2"} 15 + "odoc" {with-doc} 16 + ] 17 + build: [ 18 + ["dune" "subst"] {dev} 19 + [ 20 + "dune" 21 + "build" 22 + "-p" 23 + name 24 + "-j" 25 + jobs 26 + "@install" 27 + "@runtest" {with-test} 28 + "@doc" {with-doc} 29 + ] 30 + ] 31 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git" 32 + url { 33 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main" 34 + } 35 + x-maintenance-intent: ["(latest)"]
+38
packages/frontmatter/frontmatter.dev/opam
··· 1 + opam-version: "2.0" 2 + synopsis: "Parse YAML frontmatter from Markdown files" 3 + description: """ 4 + A library for parsing YAML frontmatter (Jekyll-format) from Markdown files. 5 + Supports extracting structured metadata and body content from files with 6 + YAML headers delimited by '---' markers.""" 7 + maintainer: ["Anil Madhavapeddy <anil@recoil.org>"] 8 + authors: ["Anil Madhavapeddy"] 9 + license: "ISC" 10 + homepage: "https://tangled.org/@anil.recoil.org/ocaml-frontmatter" 11 + bug-reports: "https://tangled.org/@anil.recoil.org/ocaml-frontmatter/issues" 12 + depends: [ 13 + "dune" {>= "3.20"} 14 + "ocaml" {>= "5.2"} 15 + "yamlrw" {>= "0.3"} 16 + "jsont" {>= "0.1"} 17 + "ptime" {>= "1.2"} 18 + "odoc" {with-doc} 19 + ] 20 + build: [ 21 + ["dune" "subst"] {dev} 22 + [ 23 + "dune" 24 + "build" 25 + "-p" 26 + name 27 + "-j" 28 + jobs 29 + "@install" 30 + "@runtest" {with-test} 31 + "@doc" {with-doc} 32 + ] 33 + ] 34 + dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git" 35 + url { 36 + src: "git+https://tangled.org/@anil.recoil.org/ocaml-frontmatter.git#main" 37 + } 38 + x-maintenance-intent: ["(latest)"]