AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Rnix

mcp-rnixai-rnix · by rnixai

An operating system for AI agents — Unix philosophy: process, VFS, syscalls. Go 1.26.

— No reviews yet
0 installs
32 views
0.0% view→install

Install

$ agentstack add mcp-rnixai-rnix

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • ✓ Prompt-injection patterns
  • ✓ Secret / credential exfiltration
  • ✓ Dangerous shell & filesystem operations
  • ✓ Untrusted network calls
  • ✓ Known-malicious package signatures

What it can access

  • ✓ Network access No
  • ✓ Filesystem access No
  • ✓ Shell / process execution No
  • ✓ Environment & secrets No
  • ✓ Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-rnixai-rnix)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
● 2mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Rnix? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Rnix

The AI-Era Unix — An Operating System for AI Agents

[](LICENSE) [](https://goreportcard.com/report/github.com/rnixai/rnix) [](https://github.com/rnixai/rnix/stargazers)

Documentation | [中文版](READMEzh.md) | [Changelog](CHANGELOG.md)


# You know Unix? You already know Rnix.
rnix -i "Analyze the project structure"
rnix strace 1        # See exactly what your agent did
rnix dashboard       # Multi-pane real-time monitoring
rnix gdb 1           # Breakpoints, stepping, context inspection

Design Philosophy

Rnix brings 50 years of proven OS abstractions directly into the world of AI agents. Not a framework. Not a library. A runtime.

Everything is a Process — Every agent is a first-class process with its own PID, state machine, and resource table. Use ps to list, kill to terminate, strace to trace — manage agents the same way you manage system processes. Processes can be paused, resumed, suspended, and restarted from checkpoints.

Everything is a File — LLMs, filesystem, shell, memory, web search, LSP code intelligence, MCP tools — all unified as VFS devices, accessed through Open/Read/Write/Close. Adding a new capability is just mounting a new device.

Observability Built In — Not a logging layer bolted on after the fact. strace shows every syscall, gdb provides breakpoints and stepping, dashboard offers multi-pane monitoring with process tree, timeline, context heatmap, and LLM conversation replay.

Orchestration is Process Management — Supervisor trees auto-restart crashed processes. Compose DAGs declare dependencies between agents. Budget Pools manage token allocation. The Intent system decomposes high-level goals into sub-task DAGs. These are OS-level primitives, not application-layer wrappers.

Quick Start

# Install
go install github.com/rnixai/rnix/cmd/rnix@latest

# Initialize configuration
rnix init

# Run your first agent
rnix -i "Analyze the project structure"

# Trace syscalls
rnix strace 1

# Real-time dashboard
rnix dashboard

Core Concepts

| Unix | Rnix | Description | |------|------|-------------| | process | Agent process | Each run gets a PID (UUID v7), state machine, and resource table | | /dev/* | VFS devices | LLM, filesystem, shell, memory, web, LSP, MCP — unified file interface | | strace | rnix strace | See every syscall in real time | | kill | rnix kill | Terminate any agent from any terminal | | top | rnix top | Real-time process monitor with token and time metrics | | gdb | rnix gdb | Interactive debugger: breakpoints, stepping, context inspection | | ps | rnix ps | List all process states | | pipe | rnix compose | DAG orchestration for multi-agent collaboration | | suspend/resume | rnix suspend/resume | Suspend processes and resume from checkpoint |

Architecture

┌─────────────────────────────────────────────────────────┐
│  CLI & AgentShell                                       │
│  rnix -i / strace / gdb / ps / compose / dashboard      │
├─────────────────────────────────────────────────────────┤
│  Agent + Skill Definitions                              │
│  agent.yaml + instructions.md + SKILL.md                │
├─────────────────────────────────────────────────────────┤
│  Microkernel                                            │
│  Process Model / VFS / Context Mgmt / IPC / 50+ Syscalls│
├─────────────────────────────────────────────────────────┤
│  Driver Layer                                           │
│  /dev/llm/* · /dev/fs · /dev/shell · /dev/memory/*      │
│  /dev/web · /dev/lsp · /dev/tasks · /dev/tty · /dev/cron│
├─────────────────────────────────────────────────────────┤
│  Host OS + Multi-LLM Providers                          │
│  Claude · Gemini · Qwen · Anthropic SDK · OpenAI-compat │
└─────────────────────────────────────────────────────────┘

Highlights

  • 7 LLM Drivers — Claude CLI / Cursor CLI / Qwen CLI / Anthropic SDK / Gemini / OpenAI Official / OpenAI-compatible (Ollama, Groq, DeepSeek, etc.)
  • 14 VFS Devices — LLM, filesystem, shell, memory (commit/recall/profile), web, LSP, tasks, TTY, cron, ProcFS, MCP
  • Agent Memory — Persistent cross-session knowledge with security scanning and async writeback
  • 50+ Syscalls — Stable ABI covering process, context, VFS, IPC, signal, capability, and supervisor
  • Interactive Debugging — gdb-style debugger + time-travel event navigation + fork-based continuation (not deterministic replay)
  • Multi-Pane Dashboard — Process tree, timeline, heatmap, LLM conversation replay, debug mode
  • Token Economy — Budget pools (compose quota engine + per-process runtime budgets), post-hoc SLA contract evaluation feeding agent reputation scoring, skill synergy matrix
  • Adaptive Security — Behavioral monitoring, anomaly detection, and auto-suspension

License

MIT — see [LICENSE](LICENSE).

Full documentation at docs.rnix.ai.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.