tangled
alpha
login
or
join now
anil.recoil.org
/
aoah-opam-repo
0
fork
atom
The opam repository for my Advent of Agentic Humps 2025
0
fork
atom
overview
issues
pulls
pipelines
sync
anil.recoil.org
2 months ago
1d7405fc
0a7719ff
0/1
build.yml
failed
2m 20s
+59
1 changed file
expand all
collapse all
unified
split
packages
bushel
bushel.dev
opam
+59
packages/bushel/bushel.dev/opam
reviewed
···
1
1
+
opam-version: "2.0"
2
2
+
synopsis: "Personal knowledge base and research entry management"
3
3
+
description: """
4
4
+
Bushel is a library for managing structured research entries including
5
5
+
notes, papers, projects, ideas, videos, and contacts. It provides typed
6
6
+
access to markdown files with YAML frontmatter and supports link graphs,
7
7
+
markdown processing with custom extensions, and search integration.
8
8
+
Right now this is a fairly specific workflow used by Anil Madhavapeddy,
9
9
+
but it may generalise in the future.
10
10
+
11
11
+
Subpackages:
12
12
+
- bushel.eio: Eio-based directory loading
13
13
+
- bushel.config: XDG-compliant TOML configuration
14
14
+
- bushel.sync: Sync pipeline for images and thumbnails
15
15
+
- bushel.typesense: Typesense search integration"""
16
16
+
maintainer: ["Anil Madhavapeddy <anil@recoil.org>"]
17
17
+
authors: ["Anil Madhavapeddy <anil@recoil.org>"]
18
18
+
license: "ISC"
19
19
+
depends: [
20
20
+
"dune" {>= "3.18"}
21
21
+
"ocaml" {>= "5.2"}
22
22
+
"frontmatter" {>= "0.1"}
23
23
+
"frontmatter-eio" {>= "0.1"}
24
24
+
"cmarkit" {>= "0.3"}
25
25
+
"jsont" {>= "0.1"}
26
26
+
"bytesrw"
27
27
+
"ptime" {>= "1.2"}
28
28
+
"re" {>= "1.11"}
29
29
+
"uri" {>= "4.4"}
30
30
+
"fmt" {>= "0.9"}
31
31
+
"eio" {>= "1.2"}
32
32
+
"tomlt" {>= "0.1"}
33
33
+
"typesense" {>= "0.1"}
34
34
+
"astring" {>= "0.8"}
35
35
+
"logs" {>= "0.7"}
36
36
+
"yamlrw"
37
37
+
"cmdliner"
38
38
+
"eio_main"
39
39
+
"odoc" {with-doc}
40
40
+
]
41
41
+
build: [
42
42
+
["dune" "subst"] {dev}
43
43
+
[
44
44
+
"dune"
45
45
+
"build"
46
46
+
"-p"
47
47
+
name
48
48
+
"-j"
49
49
+
jobs
50
50
+
"@install"
51
51
+
"@runtest" {with-test}
52
52
+
"@doc" {with-doc}
53
53
+
]
54
54
+
]
55
55
+
dev-repo: "git+https://tangled.org/@anil.recoil.org/ocaml-bushel.git"
56
56
+
url {
57
57
+
src: "git+https://tangled.org/@anil.recoil.org/ocaml-bushel.git#main"
58
58
+
}
59
59
+
x-maintenance-intent: ["(latest)"]