OCaml client library for Claude Code
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Prefix encoding packages with nox-

Extends the nox- prefix to the remaining encoding/codec packages —
none clash with opam-repository today, but the rule "blacksun forks
get nox-" applies the same way regardless of conflict status.

Renamed: json, xml, meta, opam, protobuf -> nox-*

+5 -5
+1 -1
claude.opam
··· 17 17 "fmt" 18 18 "logs" 19 19 "cmdliner" 20 - "json" {>= "0.2.0"} 20 + "nox-json" {>= "0.2.0"} 21 21 "odoc" {with-doc} 22 22 "alcotest" {with-test & >= "1.7.0"} 23 23 "mdx" {with-test}
+1 -1
dune-project
··· 21 21 fmt 22 22 logs 23 23 cmdliner 24 - (json (>= 0.2.0)) 24 + (nox-json (>= 0.2.0)) 25 25 (odoc :with-doc) 26 26 (alcotest (and :with-test (>= 1.7.0))) 27 27 (mdx :with-test)
+1 -1
examples/dune
··· 1 1 (library 2 2 (name json_utils) 3 3 (modules json_utils) 4 - (libraries json)) 4 + (libraries nox-json)) 5 5 6 6 (executable 7 7 (name camel_jokes)
+1 -1
lib/dune
··· 1 1 (library 2 2 (public_name claude) 3 3 (name claude) 4 - (libraries eio eio_main fmt logs json)) 4 + (libraries eio eio_main fmt logs nox-json))
+1 -1
test/interop/python_sdk/dune
··· 1 1 (test 2 2 (name test) 3 - (libraries claude alcotest json) 3 + (libraries claude alcotest nox-json) 4 4 (deps 5 5 (source_tree traces) 6 6 (source_tree scripts)))