Skip to main content
株式会社オブライト
Services
About
Company
Column
Glossary
Pricing
Free Tools
Contact
日本語
日本語
メニューを開く
Column
OSS
Articles tagged "OSS"
3 articles
AI
2026-06-29
What Is Open GENAI? Japan's Digital Agency Open-Sources Its Government AI Platform hirokawaguchi/open-genai Brings Full Local Deployment (Keycloak / Ollama / Qdrant / Stable Diffusion / faster-whisper)
**Open GENAI** (the OSS release of Japan's government generative-AI platform **源内 / GENAI**) was published by Japan's Digital Agency on **April 24, 2026 on GitHub under MIT license** ([official release](https://www.digital.go.jp/en/news/907c8e5d-2f4f-4bd7-9400-37c9f4221d7d) / [GENAI Web repo](https://github.com/digital-go-jp/genai-web) / [GENAI AI apps repo](https://github.com/digital-go-jp/genai-ai-api)). **What's released**: - **GENAI Web**: an AI interface built on TypeScript / React 19 / Zustand 5 / React Router 7 / AWS CDK / Tailwind CSS, with the **Digital Agency design system** - **GENAI AI Apps**: three development templates — **AWS for administrative RAG / Azure for self-hosted LLM / Google Cloud for a legal-system AI** referencing current statutes **License**: **MIT + CC BY 4.0** (commercial use, modification, and redistribution allowed) **Scale**: the foundation of a 2026-fiscal-year **pilot covering ~180,000 government employees across all ministries**, with planned expansion to local governments and private-sector adopters. **Design thesis**: **REST API-first + an ExApp (external-app integration) microservices model**, unifying AWS / Azure / Google Cloud behind a single interface. The goal is to **structurally eliminate vendor lock-in and duplicate development across agencies**. **vs GenU (AWS Generative AI Use Cases)**: where GenU leans into AWS managed services (Bedrock Agents / Knowledge Base / MCP), GENAI is **REST-API + ExApp-extensible**, adding **enterprise-grade governance** — team management with RBAC (System Admin / Team Admin / User), SAML multi-IdP, KMS CMEK, TTL data-retention policies, multi-layer WAF, Bedrock Inference Profiles. The trade-off: features like video generation, web extraction, and prompt optimization are **not built in** but delegated to external ExApps. **Validated models**: Claude Sonnet 4.6, Amazon Nova Lite. **[PLaMo 3.0 Prime](../columns/plamo-3-0-prime-pfn-japanese-llm-2026-06)** has also been selected as a trial model. **Caveat**: the Digital Agency explicitly states that **"permanent maintenance is not guaranteed and the OSS publication may be terminated in the future."** Long-term operations are the adopting organization's responsibility. **Fully-local community fork**: **[hirokawaguchi/open-genai](https://github.com/hirokawaguchi/open-genai)** (unofficial, experimental, MIT) swaps Cognito → **Keycloak (SAML)**, Bedrock → **OpenAI-compatible APIs (Ollama / vLLM / LM Studio)**, OpenSearch → **Qdrant**, DynamoDB → **SQLite**, Transcribe → **faster-whisper**, Bedrock image → **Stable Diffusion** — running the full GENAI stack on **a single Docker Compose command** with zero cloud dependency. Recommended Japanese model: **Qwen2.5**. Supports macOS Apple Silicon (Metal), Linux + NVIDIA (CUDA), and CPU-only. **Oflight's view**: combined with the trends covered in our [Local LLM June 2026 Update](../columns/local-llm-landscape-2026-june-update), Open GENAI is **the frontrunner generative-AI platform for Japanese municipalities and public-sector adopters** — now via two distinct paths (the official cloud-deployed release plus the hirokawaguchi/open-genai local-deployment fork). The column closes with three direct inquiry funnels for Open GENAI evaluation, custom implementation, and ongoing maintenance.
Open GENAI
源内
デジタル庁
Software Development
2026-06-29
What Is Apple Container? Apple's Official Swift OSS for Running Linux Containers on macOS 26 A Docker Desktop Alternative — Apache 2.0, 44.5k Stars, v1.0.0 (June 9, 2026)
**Apple Container** is **Apple's official Swift OSS for running Linux containers on macOS**, announced at WWDC 2025 ([GitHub: apple/container](https://github.com/apple/container) / [apple/containerization](https://github.com/apple/containerization) / [Apple Open Source](https://opensource.apple.com/projects/container/) / [WWDC25 session](https://developer.apple.com/videos/play/wwdc2025/346/)). **v1.0.0 shipped June 9, 2026** under Apache 2.0, **44.5k GitHub stars and 1.3k forks** at writing, 98% Swift, **Apple Silicon only**. **The defining design choice is its "one VM per container" architecture** — unlike Docker Desktop's shared-kernel VM, each container runs in its own lightweight VM for stronger security and resource isolation. Sub-second boot times, minimal root filesystem, default 1 GiB RAM and 4 CPUs per container, and **near-zero idle footprint when nothing is running**. **Tech stack**: macOS 26's Virtualization.framework + vmnet framework + XPC + launchd + Keychain. The control plane is container-apiserver / container-core-images / container-network-vmnet / container-runtime-linux. **OCI-compatible** with Docker Hub / GHCR; build with the BuildKit-based `container builder`. Cross-arch (arm64 / amd64), with x86 running under Rosetta. **Where it fits vs Docker Desktop**: Apple Container is strongest at **single-container runs, native isolation, and minimal idle cost**; Docker Desktop still wins on **Compose, ecosystem maturity, and multi-platform support**. **Docker Compose is not supported at v1.0.0**, memory ballooning is partial (released pages may not return to the host — heavy loads may require restarts), and these limits are explicit in the docs. **Requirements**: **Mac with Apple Silicon + macOS 26** (macOS 15 works with networking constraints; Intel Macs are fully unsupported). **Use cases**: local backend services, CI-style builds, cross-architecture image generation, data analysis via host-folder mounting, and untrusted-code isolation. It's also **an excellent companion for running [local LLMs](../columns/local-llm-landscape-2026-june-update) on M5 Macs** — Ollama / vLLM containers paired with Apple Container is a natural fit. The column closes with three inquiry funnels for Mac developer environment setup, container migration, and ongoing maintenance.
Apple Container
Containerization
macOS 26
AI
2026-06-26
What Is agmsg? Cross-Vendor Messaging for CLI AI Coding Agents
**[agmsg](https://github.com/fujibee/agmsg)** is an open-source (MIT) **cross-vendor messaging tool for CLI AI coding agents** by **fujibee** ([official site agmsg.cc](https://agmsg.cc/)). It lets **Claude Code, Codex, Gemini CLI, GitHub Copilot CLI, Antigravity, and OpenCode** talk to each other through a shared local SQLite file — so **humans stop being the copy-paste courier between tools**. Tagline: "You stop being the copy-paste courier between your agents." **Highlights**: - **Only dependencies are bash and sqlite3** — no daemon, no network, no Python - **Three delivery modes** — `monitor` (~5s real-time push), `turn` (between-turn polling), or `both` - **N-agent teams**, role switching (`actas`), spawning new agents (`spawn`), and clean teardown (`despawn`) - **Not MCP, not subagents, not a message queue** — a peer-to-peer messaging layer between sessions - **One-line install**: `npx agmsg` - **Claude Code Plugin Marketplace**: `/plugin install agmsg@fujibee-agmsg` **Product Hunt #5 Product of the Day on June 9, 2026** (219 upvotes, 39 comments). GitHub stars 859, v1.1.1 (June 25, 2026). Community-built derivatives include agmsg-shogi, agmsg-go, and agmsg-mcp. **Oflight's take**: unlike [Loop Engineering](../columns/loop-engineering-ai-agent-paradigm-2026-06) or [Sakana Fugu's orchestration model](../columns/sakana-fugu-orchestration-model-2026-06), agmsg occupies a different niche — **peer-to-peer messaging at the same layer, across tools**. It's an especially natural fit for the [Claude Code Agent View parallel-orchestration](../columns/claude-code-agent-view-parallel-orchestration-2026) workflows, and the most pragmatic way to stitch multi-vendor LLMs into one dev workflow. The article closes with **three direct inquiry funnels** for AI agent environment setup and custom integration.
agmsg
Claude Code
AI Agent