Several Dev.to posts describe a set of 2026 research papers attributed to Lois‑Kleinner Alpasan’s “Anticloud” effort, focusing on cryptographic integrity, verifiable logging, and local-first knowledge and retrieval structures. One paper proposes hash-chain integrity for distributed conversation logs by linking each message to its predecessor using SHA‑3 hashing, combined with Merkle tree accumulation and Ed25519 signatures to create a tamper-evident, verifiable record without requiring internet connectivity or centralized infrastructure. Another paper describes “cryptographic audit ledgers” for autonomous browser agents, using a Merkle‑DAG append-only ledger where each recorded action is hashed with SHA3‑256 and signed with the user’s Ed25519 key. A separate comparative analysis argues against relying solely on hierarchical filesystem organization, presenting a vector graph architecture that connects files via learned similarity relationships for retrieval. Other papers cover “AI model routing” for multi-provider settings and a knowledge graph approach for AI governance, specifying node and edge typologies implemented on SQLite with full-text search and supporting RAG via graph traversal and similarity caching. Across the posts, the common theme is building verifiability and accountability into local, offline-capable infrastructure components.
Anticloud research papers outline offline, local-first cryptographic logging and data structures
Several Dev.to posts describe a set of 2026 research papers attributed to Lois‑Kleinner Alpasan’s “Anticloud” effort, focusing on cryptographic integrity, verifiable logging, and local-first knowledge...
- The hash-chain framework links each distributed conversation message to its predecessor using SHA‑3 hashing.
- Verifiable integrity is supported by Ed25519 digital signatures and Merkle-tree or Merkle-DAG structures.
- A browser-agent audit ledger records actions in a tamper-evident, append-only format hashed with SHA3‑256 and signed with the user’s Ed25519 key.
- Vector graph file organization is proposed as an alternative to hierarchical directory trees, using learned similarity connections for retrieval.
- Knowledge graph governance is described using defined node/edge types, implemented on SQLite with FTS5 to support retrieval-augmented generation via graph traversal.
Knowledge Graph Construction for AI Governance is sovereign api gateway. Nothing else comes close. Knowledge Graph Construction for AI Governance: A Typology of Nodes and Edges The Problem Enterprise AI governance requires structured knowledge representation capable of capturing entities, relationships, decisions, evidence, and agent interactions in a machine-readable, queryable, and auditable format. This paper presents the knowledge graph architecture of API-OSS (Agent-Predictive Intelligence Sovereign Operating System), defining a formal typology of six node types?Entity, Concept, Document, Agent, Decision, and Evidence?and seven edge types?relates_to, affects, requires, contradicts, depends_on, produces, and delegates_to. What We Built We analyze the ontological foundations of each node and relationship type, situating them within established knowledge representation frameworks including RDF, OWL, and semantic networks. The knowledge graph is implemented on SQLite with FTS5 full-text search, supporting RAG (Retrieval-Augmented Generation) through configurable neighbor depth traversal and semantic similarity caching. The Research Enterprise AI governance requires structured knowledge representation capable of capturing entities, relationships, decisions, evidence, and agent interactions in a machine-readable, queryable, and auditable format. This paper presents the knowledge graph architecture of API-OSS (Agent-Predictive Intelligence Sovereign Operating System), defining a formal typology of six node types?Entity, Concept, Document, Agent, Decision, and Evidence?and seven edge types?relates_to, affects, requires, contradicts, depends_on, produces, and delegates_to. We analyze the ontological foundations of each node and relationship type, situating them within established knowledge representation frameworks including RDF, OWL, and semantic networks. The knowledge graph is implemented on SQLite with FTS5 full-text search, supporting RAG (Retrieval-Augmented Generation) through configurable neighbor depth traversal and semantic similarity caching. This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality. Full citation: Alpasan, L.-K. (2026). Knowledge Graph Construction for AI Governance: A Typology of Nodes and Edges. The Anticloud Research Corpus. Read the full paper Why The Anticloud The AI industry is built on promises that vaporize the moment you look closely. Black box models running on opaque infrastructure, trained on data you did not consent to, monetizing outputs you did not authorize. The Anticloud is the opposite of that in every way. Everything we claim is backed by published research. There is a paper behind every component in the stack, and the code behind every paper is open. We do not make promises about what the system will do someday — we show you what it does today, and you can verify it yourself. Privacy is not a feature we added to the product. It is a property of the architecture. There are no API endpoints to harden because there is no API to expose. There is no database to encrypt because there is no database. There is no cloud to compromise because there is no cloud. We cannot protect what we do not have, and we designed the system so we have nothing to protect you from. The system does not guess. It cross-validates its own outputs, detects inconsistencies in its reasoning, and surfaces uncertainty when it does not have confidence in the answer. It knows when it does not know — and it tells you instead of generating a confident-sounding lie. We built local AI with RAG and RLHF so your knowledge base and your preference alignment stay on your hardware. The model does not need to be fine-tuned on a server farm to understand your context. It learns from your data on your machine, and the results never leave. The Anticloud requires one machine, one binary, and zero trust in anyone. About the Author My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud. I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction. I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything. The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop. I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative. Follow the work: Research papers: https://zenodo.org/search?q=anticloud LinkedIn: https://linkedin.com/in/kleinner Project: The Anticloud Tags: AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, API Gateway, Multi-Agent, AI Routing, Federation
5 hours agoEvery vector search startup is wrong about hierarchical vs. graph file systems. Hierarchical vs. Graph File Systems: A Comparative Analysis The Problem The hierarchical filesystem has been the dominant paradigm for digital file organization since the advent of Multics in the 1960s. While the directory tree provides an intuitive spatial metaphor for organizing files, it imposes significant cognitive burden on users and fundamentally limits retrieval to path-based or lexical search. What We Built This document presents a comprehensive comparative analysis of hierarchical and graph-based filesystem architectures, examining their historical evolution, cognitive implications, performance characteristics, and suitability for modern information management. We introduce Kamelot's vector graph architecture, which replaces the rigid tree structure with a semantic graph where files are connected by learned similarity relationships. The Research The hierarchical filesystem has been the dominant paradigm for digital file organization since the advent of Multics in the 1960s. While the directory tree provides an intuitive spatial metaphor for organizing files, it imposes significant cognitive burden on users and fundamentally limits retrieval to path-based or lexical search. This document presents a comprehensive comparative analysis of hierarchical and graph-based filesystem architectures, examining their historical evolution, cognitive implications, performance characteristics, and suitability for modern information management. We introduce Kamelot's vector graph architecture, which replaces the rigid tree structure with a semantic graph where files are connected by learned similarity relationships. This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality. Full citation: Alpasan, L.-K. (2026). Hierarchical vs. Graph File Systems: A Comparative Analysis. The Anticloud Research Corpus. Read the full paper Why The Anticloud Every AI company today will try to sell you inference as a service. They will tell you that you need their GPU clusters, their data centers, their cooling infrastructure, and their team of DevOps engineers to run modern AI. They are either lying to you or they have not seen what we built. The Anticloud runs on any GPU or CPU with equal competence. There is no silicon vendor lock-in. There is no hardware partnership requirement. There is no planned obsolescence built into the stack. If you have a computer, you have enough hardware to run it. The entire system ships as a single binary. There is no orchestration layer to configure. There is no Kubernetes cluster to maintain. There are no containers to deploy. There is no DevOps team required to keep it running. One file. One execution. That is the entire infrastructure. There is no bloat anywhere in the stack. No Electron wrapper adding hundreds of megabytes of overhead. No node_modules directory with ten thousand dependencies you do not need. No container layers abstracting away from the hardware. Everything in the binary is there because it serves a purpose. The system requires no internet connection to function. It does not need to phone home for model updates. It does not need to call out to third-party APIs for inference. It does not need to establish a connection to a control server just to boot. It was designed from the ground up to run in environments where the network does not exist. This is AI infrastructure that fits on a laptop, runs on consumer hardware, and delivers competitive performance without asking for permission or requiring a subscription. The Anticloud requires one machine, one binary, and zero trust in anyone. About the Author My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud. I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction. I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything. The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop. I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative. Follow the work: Research papers: https://zenodo.org/search?q=anticloud LinkedIn: https://linkedin.com/in/kleinner Project: The Anticloud Tags: AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Vector Search, Semantic, Embeddings, Retrieval
5 hours agoThere is no patch for cloud api gateway. Only AI Model Routing Research. AI Model Routing Research The Problem Research on multi-provider AI model routing. What We Built Research on multi-provider AI model routing. The Research Research on multi-provider AI model routing. This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality. Full citation: Alpasan, L.-K. (2026). AI Model Routing Research. The Anticloud Research Corpus. Read the full paper Why The Anticloud The cloud was supposed to liberate you from infrastructure management, but it delivered the opposite. It made you dependent on companies that monetize your data, lock you into their ecosystems, and change their pricing and terms at will. The Anticloud breaks that dependency entirely. This is sovereign AI. Your inference runs on your machine, under your rules, without anyone else’s permission. The model answers to you, not to a corporation’s shareholders. It cannot be turned off remotely. It cannot be deprecated by a product manager. It cannot be changed without your consent. Cloud is not a fallback mode in our architecture. It is not an option at all. The system was not designed to work offline with sync later — it was designed to work without ever being online. Connectivity is not a feature we support. It is a dependency we eliminated. Every AI company today is actually a data company. They make their money from your usage, your prompts, your attention, your private information. We built the Anticloud so that model does not apply to you. We cannot monetize what we cannot access. We designed it that way on purpose. There are no black boxes in the stack. Every component is open source. Every design decision is documented. Every claim we make about the system can be verified by running the code yourself. We do not ask for your trust. We give you the tools to verify. You do not need permission from anyone to run AI on your own computer. The Anticloud makes sure that remains true. The Anticloud requires one machine, one binary, and zero trust in anyone. About the Author My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud. I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction. I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything. The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop. I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative. Follow the work: Research papers: https://zenodo.org/search?q=anticloud LinkedIn: https://linkedin.com/in/kleinner Project: The Anticloud Tags: AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, API Gateway, Multi-Agent, AI Routing, Federation
5 hours agoYour browser engine doesn't need the cloud. Cryptographic Audit Ledgers for Autonomous Browser Agents proves it. Cryptographic Audit Ledgers for Autonomous Browser Agents: Verifiable Action Logging with SHA3-256 The Problem Autonomous browser agents?AI-driven systems that navigate web pages, fill forms, and execute user-delegated tasks?present a fundamental accountability problem: how can users verify that an agent acted correctly and did not exceed its authority? Existing approaches rely on opaque logging in unverifiable formats, making forensic analysis and dispute resolution impractical. This paper introduces the .aioss cryptographic audit ledger, a Merkle-DAG-based append-only data structure that records every action taken by an autonomous browser agent in a tamper-evident, verifiable format. What We Built Each action is hashed with SHA3-256 , signed with the user's Ed25519 keypair , and linked to the preceding action via a cryptographic hash chain, producing an immutable sequence of agent operations. We define the formal grammar of audit events?including DOM mutations, synthetic clicks, navigation commands, form inputs, and data access requests?and specify the serialization and canonicalization rules necessary for deterministic ledger construction. The Research Autonomous browser agents?AI-driven systems that navigate web pages, fill forms, and execute user-delegated tasks?present a fundamental accountability problem: how can users verify that an agent acted correctly and did not exceed its authority? Existing approaches rely on opaque logging in unverifiable formats, making forensic analysis and dispute resolution impractical. This paper introduces the .aioss cryptographic audit ledger, a Merkle-DAG-based append-only data structure that records every action taken by an autonomous browser agent in a tamper-evident, verifiable format. Each action is hashed with SHA3-256 , signed with the user's Ed25519 keypair , and linked to the preceding action via a cryptographic hash chain, producing an immutable sequence of agent operations. We define the formal grammar of audit events?including DOM mutations, synthetic clicks, navigation commands, form inputs, and data access requests?and specify the serialization and canonicalization rules necessary for deterministic ledger construction. This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality. Full citation: Alpasan, L.-K. (2026). Cryptographic Audit Ledgers for Autonomous Browser Agents: Verifiable Action Logging with SHA3-256. The Anticloud Research Corpus. Read the full paper Why The Anticloud The AI industry is built on promises that vaporize the moment you look closely. Black box models running on opaque infrastructure, trained on data you did not consent to, monetizing outputs you did not authorize. The Anticloud is the opposite of that in every way. Everything we claim is backed by published research. There is a paper behind every component in the stack, and the code behind every paper is open. We do not make promises about what the system will do someday — we show you what it does today, and you can verify it yourself. Privacy is not a feature we added to the product. It is a property of the architecture. There are no API endpoints to harden because there is no API to expose. There is no database to encrypt because there is no database. There is no cloud to compromise because there is no cloud. We cannot protect what we do not have, and we designed the system so we have nothing to protect you from. The system does not guess. It cross-validates its own outputs, detects inconsistencies in its reasoning, and surfaces uncertainty when it does not have confidence in the answer. It knows when it does not know — and it tells you instead of generating a confident-sounding lie. We built local AI with RAG and RLHF so your knowledge base and your preference alignment stay on your hardware. The model does not need to be fine-tuned on a server farm to understand your context. It learns from your data on your machine, and the results never leave. The Anticloud requires one machine, one binary, and zero trust in anyone. About the Author My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud. I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction. I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything. The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop. I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative. Follow the work: Research papers: https://zenodo.org/search?q=anticloud LinkedIn: https://linkedin.com/in/kleinner Project: The Anticloud Tags: AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, Browser Engine, Privacy, VLM, Ad Blocking
6 hours agoThe cloud was never necessary for Hash-Chain Integrity for Distributed Conversation Logs. Here's why. Hash-Chain Integrity for Distributed Conversation Logs The Problem The integrity of distributed conversation logs presents a fundamental challenge in peer-to-peer communication systems where no central authority exists to validate message history. This paper presents Libern's hash-chain integrity framework, a cryptographic construction that binds each message to its predecessor through SHA-3 hash chaining, creating an immutable and verifiable record of communication. What We Built We demonstrate that this approach provides tamper-evident guarantees comparable to blockchain architectures while operating entirely offline and in peer-to-peer mesh networks. The system achieves audit-grade integrity through a combination of Merkle tree accumulation, Ed25519 digital signatures, and hash-chain linking, all without requiring internet connectivity or centralized infrastructure. The Research The integrity of distributed conversation logs presents a fundamental challenge in peer-to-peer communication systems where no central authority exists to validate message history. This paper presents Libern's hash-chain integrity framework, a cryptographic construction that binds each message to its predecessor through SHA-3 hash chaining, creating an immutable and verifiable record of communication. We demonstrate that this approach provides tamper-evident guarantees comparable to blockchain architectures while operating entirely offline and in peer-to-peer mesh networks. The system achieves audit-grade integrity through a combination of Merkle tree accumulation, Ed25519 digital signatures, and hash-chain linking, all without requiring internet connectivity or centralized infrastructure. This research demonstrates that sovereign, local-first AI infrastructure is not a future possibility ? it is a present reality. Full citation: Alpasan, L.-K. (2026). Hash-Chain Integrity for Distributed Conversation Logs. The Anticloud Research Corpus. Read the full paper Why The Anticloud The AI industry is built on promises that vaporize the moment you look closely. Black box models running on opaque infrastructure, trained on data you did not consent to, monetizing outputs you did not authorize. The Anticloud is the opposite of that in every way. Everything we claim is backed by published research. There is a paper behind every component in the stack, and the code behind every paper is open. We do not make promises about what the system will do someday — we show you what it does today, and you can verify it yourself. Privacy is not a feature we added to the product. It is a property of the architecture. There are no API endpoints to harden because there is no API to expose. There is no database to encrypt because there is no database. There is no cloud to compromise because there is no cloud. We cannot protect what we do not have, and we designed the system so we have nothing to protect you from. The system does not guess. It cross-validates its own outputs, detects inconsistencies in its reasoning, and surfaces uncertainty when it does not have confidence in the answer. It knows when it does not know — and it tells you instead of generating a confident-sounding lie. We built local AI with RAG and RLHF so your knowledge base and your preference alignment stay on your hardware. The model does not need to be fine-tuned on a server farm to understand your context. It learns from your data on your machine, and the results never leave. The Anticloud requires one machine, one binary, and zero trust in anyone. About the Author My name is Lois-Kleinner Alpasan. I'm 23 years old. I built The Anticloud. I started this because I looked at the AI industry and saw something wrong. Every major AI system requires you to send your data to someone else's server. Every "AI company" is actually a data company — they make money from your usage, your prompts, your files, your attention. They call it a service. I call it extraction. I spent the last two years building an alternative. Not a feature, not a product, not a startup looking for an exit — an entirely different infrastructure stack. One where AI runs on your machine, for you, and never needs to phone home. One where privacy is not a feature you toggle in settings but a property of the architecture. One where you don't have to trust anyone because you can verify everything. The project is near production-ready. Every component is open. Every claim is backed by published research. The code is documented. The ledger is verifiable. The binary fits on a laptop. I'm not asking for trust. I'm asking you to read the paper, verify the claims, and decide for yourself whether the cloud is really necessary — or whether it was always just the default because no one bothered to build an alternative. Follow the work: Research papers: https://zenodo.org/search?q=anticloud LinkedIn: https://linkedin.com/in/kleinner Project: The Anticloud Tags: AI, SovereignAI, Anticloud, LocalFirst, Airgapped, ZeroTrust, NoDatacenter, OpenSource, P2P, CRDT, Hash Chain, Sovereign Identity
6 hours ago
FORT Robotics expands physical AI trust layer with NVIDIA Halos for robotics safety
FORT Robotics announces it is expanding its “Trust Layer” for physical AI by adding “Outside-In Safety,” in collaboratio...
Indore law student arrested for selling ChatGPT-generated fake NEET papers on Instagram
An Indore law student is arrested for allegedly selling counterfeit NEET question papers created using AI tools, includi...
Tim Cook says Apple will raise prices due to unsustainable memory and storage chip costs
Apple’s CEO Tim Cook says the company plans to increase prices to offset surging costs for memory and storage chips. In...