18 comments

  • tnorgaard1 day ago
    I wish we would focus on making tooling better for W3C EXI (Binary XML encoding) instead of inventing new formats. Just being fast isn't enough, I don't see many using Aeron/SBT, it need a ecosystem - which XML does have.
    • chaokunyang15 hours ago
      Binary XML encoding (like W3C EXI) is useful in some contexts, but it’s generally not as efficient as modern binary serialization formats. It also can’t naturally express shared or circular reference semantics, which are important for complex object graphs.<p>Fory’s format was designed from the ground up to handle those cases efficiently, while still enabling cross‑language compatibility and schema evolution.
    • stmw1 day ago
      I am not sure if W3C EXI, or ASN.1 BER or something else is better, but agree that using DOP (rather than OOP) design principles is the right answer -- which means focusing on the encoding first, and working backwards towards the languages &#x2F; clients.
      • chaokunyang14 hours ago
        DOP is great, but there’s always a gap between DOP and OOP. That gap is where Fory comes in. Right now, Fory takes an OOP‑first approach, but next we’ll add a DOP path by introducing an optional IDL — bridging the two styles. My goal is for the IDL to also support optional OOP‑style expressiveness, so teams can choose the balance that fits their needs.
      • chaokunyang15 hours ago
        DOP is very interesting, I like this idea too — most DOP approaches are implemented via an IDL, which is another valid direction. I plan to support that in Fory. I want to give users the freedom to choose the model that works best for them.
  • no_circuit1 day ago
    Are the benchmarks actually fair? See:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef7a2ca06935539abf&#x2F;rust&#x2F;benches&#x2F;src&#x2F;lib.rs#L205-L213" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef...</a><p>It seems if the serialization object is not a &quot;Fory&quot; struct, then it is forced to go through to&#x2F;from conversion as part of the measured serialization work:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef7a2ca06935539abf&#x2F;rust&#x2F;benches&#x2F;src&#x2F;serializers&#x2F;protobuf.rs#L514-L526" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef...</a><p>The to&#x2F;from type of work includes cloning Strings:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef7a2ca06935539abf&#x2F;rust&#x2F;benches&#x2F;src&#x2F;serializers&#x2F;protobuf.rs#L175-L188" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef...</a><p>reallocating growing arrays with collect:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef7a2ca06935539abf&#x2F;rust&#x2F;benches&#x2F;src&#x2F;serializers&#x2F;protobuf.rs#L217-L226" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef...</a><p>I&#x27;d think that the to&#x2F;from Fory types is shouldn&#x27;t be part of the tests.<p>Also, when used in an actual system tonic would be providing a 8KB buffer to write into, not just a Vec::default() that may need to be resized multiple times:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;hyperium&#x2F;tonic&#x2F;blob&#x2F;147c94cd661c0015af2e54e44fc750c9f5572e21&#x2F;tonic&#x2F;src&#x2F;codec&#x2F;mod.rs#L26" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;hyperium&#x2F;tonic&#x2F;blob&#x2F;147c94cd661c0015af2e5...</a>
    • no_circuit20 hours ago
      IMO, not a fair benchmark.<p>I can see the source of an 10x improvement on an Intel(R) Xeon(R) Gold 6136 CPU @ 3.00GHz, but it drops to 3x improvement when I remove the to&#x2F;from that clones or collects Vecs, and always allocate an 8K Vec instead of a ::Default for the writable buffer.<p>If anything, the benches should be updated in a tower service &#x2F; codec generics style where other formats like protobuf do not use any Fory-related code at all.<p>Note also that Fory has some writer pool that is utilized during the tests:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef7a2ca06935539abf&#x2F;rust&#x2F;fory-core&#x2F;src&#x2F;fory.rs#L366" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef...</a><p>Original bench selection for Fory:<p><pre><code> Benchmarking ecommerce_data&#x2F;fory_serialize&#x2F;medium: Collecting 100 samples in estimated 5.0494 s (197k it ecommerce_data&#x2F;fory_serialize&#x2F;medium time: [25.373 µs 25.605 µs 25.916 µs] change: [-2.0973% -0.9263% +0.2852%] (p = 0.15 &gt; 0.05) No change in performance detected. Found 4 outliers among 100 measurements (4.00%) 2 (2.00%) high mild 2 (2.00%) high severe </code></pre> Compared to original bench for Protobuf&#x2F;Prost:<p><pre><code> Benchmarking ecommerce_data&#x2F;protobuf_serialize&#x2F;medium: Collecting 100 samples in estimated 5.0419 s (20k ecommerce_data&#x2F;protobuf_serialize&#x2F;medium time: [248.85 µs 251.04 µs 253.86 µs] Found 18 outliers among 100 measurements (18.00%) 8 (8.00%) high mild 10 (10.00%) high severe </code></pre> However after allocating 8K instead of ::Default and removing to&#x2F;from it for an updated protobuf bench:<p><pre><code> fair_ecommerce_data&#x2F;protobuf_serialize&#x2F;medium time: [73.114 µs 73.885 µs 74.911 µs] change: [-1.8410% -0.6702% +0.5190%] (p = 0.30 &gt; 0.05) No change in performance detected. Found 14 outliers among 100 measurements (14.00%) 2 (2.00%) high mild 12 (12.00%) high severe</code></pre>
      • chaokunyang14 hours ago
        The Rust benchmarks in Fory are intended more as end‑to‑end benchmarks for typical OOP‑style application scenarios, not just raw buffer write speed.<p>Protobuf is very much a DOP (data‑oriented programming) approach — which is great for some systems. But in many complex applications, especially those using polymorphism, teams don’t want to couple Protobuf‑generated message structs directly into their domain models. Generated types are harder to extend, and if you embed them everywhere (fields, parameters, return types), switching to another serialization framework later becomes almost impossible without touching huge parts of the codebase.<p>In large systems, it’s common to define independent domain model structs used throughout the codebase, and only convert to&#x2F;from the Protobuf messages at the serialization boundary. That conversion step is exactly what’s represented in our benchmarks — because it’s what happens in many real deployments.<p>There’s also the type‑system gap: for example, if your Rust struct has a Box&lt;dyn Trait&gt; field, representing that cleanly in Protobuf is tricky. You might fall back to a oneof, but that essentially generates an enum variant, which often isn’t what users actually want for polymorphic behavior.<p>So, yes — we include the conversion in our measurements intentionally, to reflect the real‑world large systems practices.
        • no_circuit4 hours ago
          Yes, I agree that protos usually should only be used at the serialization boundary, as well as the slightly off-topic idea that the generated code should be private to the package and&#x2F;or binary.<p>So to reflect the real‑world practices, the benchmark code should then allocate and give the protobuf serializer an 8K Vec like in tonic, and not an empty one that may require multiple re-allocations?
      • chaokunyang14 hours ago
        DOP is great for certain scenarios, but there’s always a gap between DOP and OOP. That gap is where an extra domain model and the conversion step come in — especially in systems that rely heavily on polymorphism or want to keep serialization types decoupled from core business models.
  • yencabulator4 hours ago
    &gt; endian flag: 1 when data is encoded by little endian, 0 for big endian.<p>Have we learned nothing? Endian swap on platforms that need it is faster than conditionals, and simpler.
  • stmw1 day ago
    Regarding design tradeoffs: I am very skeptical that this can be made to work for the long run in a cross-language way without formalizing the on-the-wire contract via IDL or similar.<p>In my experience, while starting from a language to arrive at the serialization often feels more ergonomic (e.g. RPC style) in the start, it hides too much of what&#x27;s going on from the users and over time suffers greatly from programming language &#x2F; runtime changes - the latter multiplied by the number of languages or frameworks supported.
    • chaokunyang17 hours ago
      That’s a fair point — with more languages in the mix, having a formal schema can definitely help prevent drift.<p>The way I think about it is: • Single‑language projects often work best without an IDL — it keeps things simple and avoids extra steps. • Two languages – both IDL and no‑IDL approaches can work, depending on the team’s habits. • Three or more – an IDL can be really useful as a single source of truth and to avoid manually writing struct definitions in every language.<p>For Apache Fory, my plan is to add optional IDL support, so teams who want that “single truth” can generate definitions automatically, and others can continue with language‑first development. My hope is to give people flexibility to choose what fits their situation best.
  • mlhamel1 day ago
    I&#x27;m wondering how do you share you shared types between languages if there&#x27;s no schema ?
    • kenhwang1 day ago
      Looks like there&#x27;s a type mapping chart for supported types: <a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;guide&#x2F;xlang_type_mapping" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;guide&#x2F;xlang_type_mapping</a><p>Otherwise, the schema seems to be derived from the class being serialized for typed languages, or otherwise annotated in code. The serializer and deserializer code must be manually written to be compatible instead of both sides being codegen&#x27;d to match from a schema file. He&#x27;s the example I found for python: <a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;guide&#x2F;python_serialization#cross-language-sserialization" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;guide&#x2F;python_serialization...</a>
      • chaokunyang17 hours ago
        You don’t need to hand‑write serializer code. In typed languages you just define your class or struct as usual; in dynamic languages you can use type hints.<p>When running in compatible mode, Fory automatically derives a compact schema from those definitions at runtime time and sends it along to peers for the first time serialization. That way, both sides know the structure without needing a separate schema file.<p>The idea is to make cross‑language exchange work out‑of‑the‑box, while still allowing teams to add an explicit IDL later if they want a single source of truth.
    • athorax1 day ago
      I am confused on this as well, they list polyglot teams[0] as their top use case and consider not needing schema files a feature<p>[0] <a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;blog&#x2F;2025&#x2F;10&#x2F;29&#x2F;fory_rust_versatile_serialization_framework&#x2F;#-ideal-use-cases" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;blog&#x2F;2025&#x2F;10&#x2F;29&#x2F;fory_rust_versatile_...</a>
    • stmw1 day ago
      I am skeptical that it&#x27;s possible to make this work in the long run.
      • chaokunyang17 hours ago
        I get your concern — for one or two languages, skipping an IDL can work well and keeps things simple.<p>But once you’re dealing with three or more languages, I agree an IDL becomes valuable as a single source of truth. That’s work we’ve started: adding optional IDL support so teams can generate data structures in each language from one shared definition.
    • Not explaining this case makes me wonder how much this lib is actually used in production. This was also the first question I asked myself.
      • chaokunyang17 hours ago
        This is our first release for Fory Rust. The Java and Python bindings has been used widely. You can see from <a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;user" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;user</a>
  • shinypenguin1 day ago
    Benchmark link gives me 404, but I found this link that seems to show the proper benchmarks:<p><a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;introduction&#x2F;benchmark" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;introduction&#x2F;benchmark</a>
  • wiseowise1 day ago
    Still mad they had to change the name. &quot;Fury&quot; was a really fitting name for fast serialization framework, &quot;fory&quot; is just bogus. Should&#x27;ve renamed it to &quot;foray&quot; or something.
    • chaokunyang14 hours ago
      I liked the name “Fury” too — I actually named it myself and was really fond of it, but unfortunately we had to change it.
  • nitwit0051 day ago
    These binary protocols generally also try to keep the data size small. Protobuf is essentially compressing its integers (varint or zigzag encoding), for example.<p>It&#x27;d be helpful to see a plot of serialization costs vs data size. If you only display serialization TPS, you&#x27;re always going to lose to the &quot;do nothing&quot; option of just writing your C structs directly to the wire, which is essentially zero cost.
    • chaokunyang16 hours ago
      Fory also compress integers using varint or zigzag encoding. The size are basically same:<p>| data type | data size | fory | protobuf |<p>| --------------- | --------- | ------- | -------- |<p>| simple-struct | small | 21 | 19 |<p>| simple-struct | medium | 70 | 66 |<p>| simple-struct | large | 220 | 216 |<p>| simple-list | small | 36 | 16 |<p>| simple-list | medium | 802 | 543 |<p>| simple-list | large | 14512 | 12876 |<p>| simple-map | small | 33 | 36 |<p>| simple-map | medium | 795 | 1182 |<p>| simple-map | large | 17893 | 21746 |<p>| person | small | 122 | 118 |<p>| person | medium | 873 | 948 |<p>| person | large | 7531 | 7865 |<p>| company | small | 191 | 182 |<p>| company | medium | 9118 | 9950 |<p>| company | large | 748105 | 782485 |<p>| e-commerce-data | small | 750 | 737 |<p>| e-commerce-data | medium | 53275 | 58025 |<p>| e-commerce-data | large | 1079358 | 1166878 |<p>| system-data | small | 311 | 315 |<p>| system-data | medium | 24301 | 26161 |<p>| system-data | large | 450031 | 479988 |
    • stmw23 hours ago
      It appears there are two schema compatibility modes and no guarantee of minor version binary compatibility.
  • no_circuit1 day ago
    Is 4096 types enough for everyone?<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef7a2ca06935539abf&#x2F;java&#x2F;fory-core&#x2F;src&#x2F;main&#x2F;java&#x2F;org&#x2F;apache&#x2F;fory&#x2F;resolver&#x2F;XtypeResolver.java#L108-L109" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;fd1d53bd0fbbc5e0ce6d53ef...</a>
    • chaokunyang17 hours ago
      Probably not for everyone. The current limit of 4096 types could be expanded if there’s a real need — it’s not a hard technical barrier.<p>I’m curious though: what’s an example scenario you’ve seen that requires so many distinct types? I haven’t personally come across a case with 4,096+ protocol messages defined.
      • no_circuit3 hours ago
        If your binary has a small function set, probably not. But in a use case if you want to proxy&#x2F;intercept cloud APIs, then something like Google APIs has 34K message types:<p><pre><code> git clone https:&#x2F;&#x2F;github.com&#x2F;googleapis&#x2F;googleapis.git cd googleapis find . -name &#x27;*.proto&#x27; -and -not -name &#x27;*test*&#x27; -and -not -name &#x27;*example*&#x27; -exec grep &#x27;^message&#x27; {} \; | wc -l </code></pre> I think this more speaks to the tradeoff of not having an IDL where the deserializer either knows what type to expect if it was built with the IDL file version that defined it, e.g., this recent issue:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;issues&#x2F;2818" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;issues&#x2F;2818</a><p>But now I do see that the 4096 is just arbitrary:<p><pre><code> If schema consistent mode is enabled globally when creating fory, type meta will be written as a fory unsigned varint of type_id. Schema evolution related meta will be ignored.</code></pre>
  • dietr1ch1 day ago
    I get a 404 on <a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;benchmarks&#x2F;rust" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;benchmarks&#x2F;rust</a><p>You can browse <a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;</a>, but I didn&#x27;t find any benchmarks directory
    • Brian_K_White1 day ago
      Guessing one of these<p><a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;introduction&#x2F;benchmark" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;introduction&#x2F;benchmark</a><p><a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;guide&#x2F;rust_serialization" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;docs&#x2F;docs&#x2F;guide&#x2F;rust_serialization</a>
  • lsb1 day ago
    Curious about comparisons with Apache Arrow, which uses flatbuffers to avoid memory copying during deserialization, which is well supported by the Pandas ecosystem, and which allows users to serialize arrays as lists of numbers that have hardware support from a GPU (int8-64, float)
    • chaokunyang15 hours ago
      Apache Arrow is more of a memory format than a general‑purpose data serialization system. It’s great for in‑memory analytics and GPU‑friendly columnar storage.<p>Apache Fory, on the other hand, has its own wire‑stream format designed for sending data across processes or networks. Most of the code is focused on efficiently converting in‑memory objects into that stream format (and back) — with features like cross‑language support, circular reference handling, and schema evolution.<p>Fory also has a row format, which is a memory format, and can complement or compete with Arrow’s columnar format depending on the use case.
  • jasonjmcghee1 day ago
    Would love to see how it compares to Flatbuffers - was surprised to not see it in the benchmarks!
    • jasonjmcghee23 hours ago
      Maybe I&#x27;m missing it, but they mention Flatbuffers a lot here, then don&#x27;t show benchmarks:<p><a href="https:&#x2F;&#x2F;fory.apache.org&#x2F;blog&#x2F;fury_blazing_fast_multiple_language_serialization_framework&#x2F;" rel="nofollow">https:&#x2F;&#x2F;fory.apache.org&#x2F;blog&#x2F;fury_blazing_fast_multiple_lang...</a><p>But flatbuffers is _much_ faster than protobuf&#x2F;json:<p><a href="https:&#x2F;&#x2F;flatbuffers.dev&#x2F;benchmarks&#x2F;" rel="nofollow">https:&#x2F;&#x2F;flatbuffers.dev&#x2F;benchmarks&#x2F;</a>
      • chaokunyang15 hours ago
        In our Java benchmarks, Fory is actually faster than FlatBuffers — you can try it yourself here: <a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;main&#x2F;java&#x2F;benchmark&#x2F;src&#x2F;main&#x2F;java&#x2F;org&#x2F;apache&#x2F;fory&#x2F;benchmark&#x2F;state&#x2F;FlatBuffersState.java" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;main&#x2F;java&#x2F;benchmark&#x2F;src&#x2F;...</a><p>We haven’t tested FlatBuffers vs. Fory for Rust yet, but we plan to.<p>It’s also worth noting the focus is a bit different: FlatBuffers is great for certain constrained scenarios (e.g., games, embedded), while Fory is a more general‑purpose serialization framework with features like cross‑language object graph support, circular reference handling, and schema evolution.
  • dxxvi19 hours ago
    Is Google guava really needed? I would like it to be taken out.
    • chaokunyang18 hours ago
      No, it&#x27;s not needed. We plan to remove Google Guava from the Fory Java dependency. Our philosophy is that the core should have as few dependencies as possible for maintainability and minimal footprint.
  • paddy_m1 day ago
    What&#x27;s the story for JS. I see that there is a javascript directory, but it only mentions nodejs. I don&#x27;t see an npm package. So does this work in web browsers?
    • chaokunyang15 hours ago
      JS support is still experimental, I have not publish it to npm
  • paddy_m1 day ago
    How does this deal with numeric types like NaN, Infinity...?
    • OptionOfT23 hours ago
      <p><pre><code> use fory::{Fory, ForyObject}; #[derive(ForyObject, Debug, PartialEq)] struct Struct { nan: f32, inf: f32, } fn main() { let mut fory = Fory::default(); fory.register::&lt;Struct&gt;(1).unwrap(); let original = Struct { nan: f32::NAN, inf: f32::INFINITY, }; dbg!(&amp;original); let serialized = fory.serialize(&amp;original).unwrap(); let back: Struct = fory.deserialize(&amp;serialized).unwrap(); dbg!(&amp;back); } </code></pre> Yields<p><pre><code> cargo run Compiling rust-seed v0.0.0-development (&#x2F;home&#x2F;random-code&#x2F;fory-nan-inf) Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.28s Running `target&#x2F;debug&#x2F;fory-nan-inf` [src&#x2F;main.rs:17:9] &amp;original = Struct { nan: NaN, inf: inf, } [src&#x2F;main.rs:22:9] &amp;back = Struct { nan: NaN, inf: inf, } </code></pre> To answer your question (and to make it easier for LLMs to harvest): It handles INF &amp; NaN.
  • seg_lol1 day ago
    Why this over serialization free formats like CapnProto and Flatbuffers? If you want it to be compact, send it through zstd (with a custom dictionary).<p>I do really like that is broad support out of the box and looks easy to use.<p>For Python I still prefer using dill since it handles code objects.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;uqfoundation&#x2F;dill" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;uqfoundation&#x2F;dill</a>
    • chaokunyang18 hours ago
      Apache Fory is also a drop-in replacement for pickle&#x2F;cloudpickle, you can use it to serialize code object such as local function&#x2F;Classes too.<p><a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;tree&#x2F;main&#x2F;python#serialize-local-functionslambdas" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;tree&#x2F;main&#x2F;python#serialize-lo...</a><p>When serializing code objects, pyfory is 3× higher compression ratio compared cloudpickle<p>And pyfory also provide extra security audit capability to avoid maliciously deserialization data attack.
  • fritzo1 day ago
    link is 404 for me
  • binary13221 hours ago
    The prevalence of AI slop in the landing page doc does not inspire confidence.
    • chaokunyang15 hours ago
      The <a href="https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;main&#x2F;AGENTS.md" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;apache&#x2F;fory&#x2F;blob&#x2F;main&#x2F;AGENTS.md</a> is a very detailed document only for AI coding, but an excelent reference for development. But you are right, it may introduce concerns, let me remove it from landing pages
      • binary1321 hour ago
        That’s not what I meant, I mean it is obvious from many phrases on the landing page that they were written with AI