Token导航 LogoToken导航TokenDH.com
开发敏感数据clawhub未标认证来源可访问clear审计通过

nirvana-plugin必杀技插件

Agent Skill

nirvana-plugin 用于辅助部署、云资源、容器和基础设施运维,适合在 OpenClaw 中需要检查配置、整理部署步骤或排查环境问题时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,284

周安装

175

GitHub Stars

公开资料未说明

下载量

1,386
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:nirvana-plugin(必杀技插件)
来源仓库:https://github.com/shivaclaw/nirvana-plugin
安装命令:
openclaw skills install nirvana-plugin
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install nirvana-plugin

简介

注重隐私的本地 AI 推理插件,捆绑 qwen2.5:7b 模型。

  • 适用于离线部署、云资源审计和容器化推理场景。
  • 提供智能路由、日志记录和模型切换功能。
  • 可选云降落支持,但默认优先本地运行。nirvana-plugin 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 使用前需确认硬件资源是否满足最低内存要求。

SKILL.md

Nirvana — Local-First AI Sovereignty

Description: Local-first inference plugin for OpenClaw. Zero API keys required. Bundled qwen2.5:7b model works out-of-box. Privacy-preserving routing, context stripping, cloud fallback optional.

Author: ShivaClaw

License: MIT

What is Nirvana?

Nirvana is an OpenClaw code plugin that enables true AI sovereignty:

  • Local-first execution — 80%+ of queries handled on your hardware (no API calls)
  • Zero setup — Bundled qwen2.5:7b model auto-pulls (3.5GB) on first run
  • Privacy enforced — Identity files (SOUL.md, USER.md, MEMORY.md) never exported
  • Intelligent fallback — Cloud APIs used only when needed
  • Observability — Comprehensive metrics and audit logging
  • Production-ready — Full test coverage, error handling, graceful degradation

Quick Start (3 minutes)

Prerequisites

  • Docker (for Ollama container)
  • OpenClaw 2026.4.0+

Installation

# Step 1: Start Ollama container
docker run -d -p 11434:11434 ollama/ollama

# Step 2: Install Nirvana plugin
openclaw plugins install ShivaClaw/nirvana

# Step 3: Restart gateway to load plugin
openclaw gateway restart

# Step 4: Verify
openclaw status | grep nirvana

First Use

Once installed, Nirvana becomes your default inference provider:

# Any normal OpenClaw interaction automatically routes through Nirvana
# The plugin decides: local (Ollama) vs cloud (Anthropic/OpenAI/Gemini) internally

Features

🏠 Local Inference

  • Bundled qwen2.5:7b model (3.5GB, ~200 tokens/sec on CPU)
  • Optional upgrade to qwen3.5:9b (8GB, better reasoning)
  • Extensible provider system (Llama 2, Mistral, Phi supported)
  • GPU acceleration auto-detected (CUDA, Metal)

🔒 Privacy Enforcement

  • Context stripper — Removes identity/memory before cloud queries
  • Privacy auditor — Logs all boundary decisions
  • Audit trail — JSON logs of what left your system
  • Zero telemetry — No data sent to ClawHub, GitHub, or third parties

🎯 Intelligent Routing

  • Local-first decision engine — Analyzes query complexity, context size, urgency
  • Target: 80%+ local routing — Most prompts handled locally
  • Seamless fallback — Cloud APIs used transparently when needed
  • User override@local or @cloud hints respected

📊 Observability

  • Metrics collector — Routing decisions, cache hits, latency, token counts
  • Performance tracking — Identify optimization opportunities
  • Health checks — Ollama availability, network diagnostics
  • Response integrator — Cache cloud responses locally for future use

Architecture

┌──────────────────────────────────────────────────────────────┐
│ OpenClaw Gateway                                             │
└──────────────────────────────────────────────────────────────┘
                              ↓
┌──────────────────────────────────────────────────────────────┐
│ Nirvana Plugin (router.js)                                   │
│ "Should this query run locally or in the cloud?"             │
└──────────────────────────────────────────────────────────────┘
                    ↙                           ↘
        [LOCAL]                              [CLOUD]
        Ollama:11434                        Anthropic/OpenAI/Gemini
        qwen2.5:7b                          (context-stripped)
        ~200 tok/sec                        5000+ tok/sec
        Free                                $0.01–$0.10
        Private                             Private (sanitized)
            ↓                                   ↓
    [Response]                          [Response]
    Cached locally                      Integrated + cached

Configuration

Default Settings

{
  "nirvana": {
    "mode": "local-first",
    "ollama": {
      "endpoint": "http://ollama:11434",
      "model": "qwen2.5:7b",
      "timeout": 180000
    },
    "routing": {
      "localThreshold": 0.7,
      "maxLocalContextTokens": 8000,
      "cloudFallback": true
    },
    "privacy": {
      "stripIdentity": true,
      "auditLog": "/var/log/nirvana-audit.json",
      "redactPatterns": ["SOUL\\.md", "USER\\.md", "MEMORY\\.md"]
    },
    "metrics": {
      "enabled": true,
      "retentionDays": 7
    }
  }
}

Customization

Edit config.schema.json to adjust:

  • Model selection (Ollama)
  • Routing thresholds (when to use cloud)
  • Privacy audit level
  • Metrics retention

Use Cases

✅ Perfect For

  • Personal AI agents (no API cost constraints)
  • Private/sensitive workloads (code, healthcare, finance)
  • Latency-critical applications (local response < 2s)
  • Air-gapped environments (local-only mode available)
  • Learning/experimentation (zero API key friction)

⚠️ Consider Cloud For

  • Advanced reasoning (Grok, Claude Opus for complex problems)
  • Rare specialized tasks (image generation, audio synthesis)
  • Extreme scale (millions of tokens/day)

Performance

Typical Metrics (qwen2.5:7b on CPU)

MetricValue
Latency (P50)800ms–1.2s
Throughput180–220 tokens/sec
Memory (running)4.6GB RAM
Accuracy (typical tasks)85–92% vs Claude 3.5

Optimization Tips

  • Use GPU (CUDA/Metal) for 3–5x speedup
  • Upgrade to qwen3.5:9b for complex reasoning
  • Pre-cache frequently used contexts
  • Enable response integrator for repeated queries

Limitations

  • Reasoning complexity: Qwen < Claude Opus (but acceptable for most tasks)
  • Multimodal: Not supported in v0.1.0 (planned v0.4.0)
  • Token count: Local limit ~8000 tokens (cloud fallback automatic)
  • Speed: CPU-bound (upgrade to GPU for production)

Roadmap

  • v0.2.0 (Apr 2026): Response integrator (cache + reuse cloud results)
  • v0.3.0 (May 2026): Multi-model provider (Llama, Mistral, Phi)
  • v0.4.0 (Jun 2026): GPU acceleration detection + CUDA/Metal support
  • v1.0.0 (Jul 2026): Stable API, full test coverage, performance optimization

Documentation

  • README.md — Features, architecture, philosophy
  • INSTALL.md — Installation and setup
  • MIGRATION.md — Cloud-to-local transition guide
  • PUBLISH.md — ClawHub publication workflow
  • DELIVERY-CHECKLIST.md — Verification steps

Repository

https://github.com/ShivaClaw/nirvana-plugin

Support

  • Issues: https://github.com/ShivaClaw/nirvana-plugin/issues
  • Discussions: https://github.com/ShivaClaw/nirvana-plugin/discussions
  • Moltbook: @clawofshiva

License

MIT — Use freely, commercially, modify, distribute.


Status: Production-ready (v0.1.0) Last Updated: 2026-04-19 Author: ShivaClaw Maintained: Yes

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

84.6%
按下载量换算1,173

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills