惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园_首页
博客园 - 聂微东
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
D
Docker
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
Microsoft Azure Blog
Microsoft Azure Blog
Recent Announcements
Recent Announcements
Apple Machine Learning Research
Apple Machine Learning Research
阮一峰的网络日志
阮一峰的网络日志
B
Blog RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
Jina AI
Jina AI
博客园 - Franky
D
DataBreaches.Net

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - matzapata/nitrum: Rust toolkit for building and ...
matzapata · 2026-04-27 · via Hacker News: Show HN

⚠️ WARNING: Nitrum is work in progress and not ready for production use. APIs, features, and security properties may change at any time.
Please use for development, testing, and feedback only!

Nitrum is a Rust toolkit for running applications inside AWS Nitro Enclaves. It combines an in-enclave data-plane, a host control-plane, and a nitrum CLI that helps you scaffold projects, build EIF images, run a local Docker stack for testing, and deploy to AWS.

If you are familiar with platforms like Evervault Enclaves or Nitriding daemon, Nitrum plays a similar role: it focuses on TLS termination, attestation, and networking inside the enclave, so your application code can stay as close as possible to “regular” HTTP services. On top of that, Nitrum adds utilities for attestation, encryption with key synchronization, and a CLI to manage the entire development workflow—from local testing to production deployment.

Goals

  • Make Nitro Enclaves approachable: sensible defaults, clear CLI workflows, and sample projects.
  • Keep sensitive work in-enclave: TLS termination, attestation, and AWS KMS patterns are handled by the data-plane, not your app.
  • Integrate with AWS tooling: Nitro CLI, IMDS, KMS, S3, CloudFormation, and IAM are first‑class concerns.

Installation (prebuilt binary)

Tagged releases publish CLI binaries for Linux x86_64, macOS Apple Silicon (aarch64), and Windows x86_64 (same targets as .github/workflows/release.yml).

From a checkout:

./scripts/install-nitrum.sh

Or fetch and run the script from GitHub (pick a branch or tag you trust, for example develop or v0.1.0):

curl -fsSL https://raw.githubusercontent.com/matzapata/nitrum/develop/scripts/install-nitrum.sh | bash

Optional environment variables:

  • NITRUM_VERSIONlatest (default) or a tag such as v0.1.0-beta.1
  • NITRUM_INSTALL_DIR — install directory (default: ~/.local/bin)
  • NITRUM_REPOowner/name if you use a fork (default: matzapata/nitrum)

Example: install a specific release into /usr/local/bin (may require write permission):

export NITRUM_VERSION=v0.1.0-beta.1
export NITRUM_INSTALL_DIR=/usr/local/bin
curl -fsSL https://raw.githubusercontent.com/matzapata/nitrum/develop/scripts/install-nitrum.sh | sudo -E bash

Ensure the install directory is on your PATH.

Installation (from source)

You can build and install the CLI directly from this repository:

cargo install --path crates/cli
nitrum --help

For a full list of commands, required AWS permissions, and nitrum.toml options, see the usage documentation.

Documentation

  • Architecture — how the control-plane, data-plane, TLS, attestation, and AWS integrations fit together:
    docs/architecture.md
  • Usage — CLI commands, configuration (nitrum.toml), and workflows for local and cloud deployments:
    docs/usage.md
  • Contributing — development environment, style, and CI details:
    CONTRIBUTING.md

Samples and libraries

  • Hello sample — minimal end‑to‑end project using the nitrum CLI: see samples/hello (and its README.md).
  • Blockchain wallet example — see samples/wallet for a minimal secure wallet app scaffolded using Nitrum and running fully inside a Nitro Enclave.
  • TypeScript verifierpackages/nitrum-node provides a Node.js helper for verifying Nitro Enclave attestation documents.

License

Nitrum is released under the MIT license. See LICENSE for details.