Join us

ContentUpdates and recent posts about NanoClaw..
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Why I'm No Longer Talking to Architects About Microservices

The microservices debate swims in murky waters,plagued by the absence of a unifying definition. Dialogues frequently drift into the abstract, overlookingtangible business goals.Embracing microservices without reshaping the organization dooms efforts, adding technical knots without untangling ineffic.. read more  

Why I'm No Longer Talking to Architects About Microservices
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Looking Ahead to WASIp3

WASIp3boosts concurrency with anasynchronous function ABI and support for generic types, letting multiple tasks run in parallel within WebAssembly apps. The component model makes handling asynchronous operations straightforward, which promotes effortless cross-language code reuse... read more  

Looking Ahead to WASIp3
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

GitHub targeted in supply chain attack

The'tj-actions/changed-files'GitHub Action recently suffered a supply chain breach, baring sensitive secrets from CI/CD logs. Crafty attackers crept in using a GitHub personal access token tied to a bot account, enabling them to smuggle out data. Their cunning involved embedding harmful code to extr.. read more  

GitHub targeted in supply chain attack
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Court Orders Google to Poison Public DNS to Prevent IPTV Piracy

In an unexpected twist, the Court of Milan has tasked Google with adjusting its Public DNS to curb access to pirate sites, spotlighting the widening influence of the Piracy Shield. AGCOM cheered this move, as Serie A's claims of piracy against Google went unchallenged, marking a critical juncture in.. read more  

Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

The State of FinOps

The 5th Annual State of FinOps survey conducted from within the FinOps Foundation community of large cloud spenders is now available. Here you'll find the takeaways from the survey which surveyed large companies responsible for over $69bn of cloud spend... read more  

Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Public Preview: Windows Support for Virtual Machines Node Pools in AKS

Windows support for Virtual Machines Node Pools now available in Azure Kubernetes Services. Azure Kubernetes Services directly manages provisioning and bootstrapping of each node. Virtual Machines node pools support adding multiple VM SKUs of the same family to a single node pool. Public preview fea.. read more  

Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Scaling Prometheus: From Single Node to Enterprise-Grade Observability

Prometheusoperates as a solitary,pull-drivenmonitoring system, archiving data in a refined format with PromQL for queries.Memory and local diskplay the role of custodians for data, yet they facescalability hurdlesamidcardinality explosion. Linking multiple servers can somewhat amelioratevisibility, .. read more  

Scaling Prometheus: From Single Node to Enterprise-Grade Observability
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

CNCF announces graduation of CubeFS

TheCNCF awarded CubeFS graduation, a standoutdistributed storage systemcompatible with POSIX, HDFS, and S3, boasting a staggering1,900% surge in userssince its inception into the community. Initially conceived in 2017 by JD.com, it shows vigorous momentum, and the CNCF presented an ambitious roadmap.. read more  

CNCF announces graduation of CubeFS
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Five Learnings From Seven Years of Building Gloo and kgateway

Gloo Gateway, now named'kgateway'and generously gifted to CNCF at KubeCon NA 2024, holds the crown as a premierEnvoy-based gatewaywith impressive deployment. The project wrestled withserialization bottlenecksbecause of bloated Proxy resources. With finesse, the team conquered dependency management c.. read more  

Five Learnings From Seven Years of Building Gloo and kgateway
Link
@faun shared a link, 1 year, 2 months ago
FAUN.dev()

Kustomize vs Helm

Helmwields a templating engine to reign over Kubernetes applications, letting users dive into version control and rollbacks. Meanwhile,Kustomizerevels in its overlay-based method for YAML file customization, embedding itself seamlessly withkubectl. When they join forces, Helm orchestrates releases, .. read more  

NanoClaw is an open-source personal AI agent designed to run locally on your machine while remaining small enough to fully understand and audit. Built as a lightweight alternative to larger agent frameworks, the system runs as a single Node.js process with roughly 3,900 lines of code spread across about 15 source files.

The agent integrates with messaging platforms such as WhatsApp and Telegram, allowing users to interact with their AI assistant directly through familiar chat applications. Each conversation group operates independently and maintains its own memory and execution environment.

A core design principle of NanoClaw is security through isolation. Every agent session runs inside its own container using Docker or Apple Container, ensuring that the agent can only access files and resources that are explicitly mounted. This approach relies on operating system–level sandboxing rather than application-level permission checks.

The architecture is intentionally simple: a single orchestrator process manages message queues, schedules tasks, launches containerized agents, and stores state in SQLite. Additional functionality can be added through a modular skills system, allowing users to extend capabilities without increasing the complexity of the core codebase.

By combining a minimal architecture with container-based isolation and messaging integration, NanoClaw aims to provide a transparent, customizable personal AI agent that users can run and control entirely on their own infrastructure.