Token导航 LogoToken导航TokenDH.com
开发需要联网clawhub未标认证来源可访问clear审计提醒

project-nirvana-skill项目必杀技

Agent Skill

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

总安装

2,027

周安装

82

GitHub Stars

公开资料未说明

下载量

636
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install project-nirvana-skill

简介

OpenClaw隐私保护上下文剥离器,预处理敏感信息后再调用云API。

  • 适用于部署、云资源配置与基础设施运维场景。
  • 自动剥离SOUL/USER/MEMORY字段,保障通信安全。
  • 安装命令为 openclaw skills install project-nirvana-skill。
  • 需验证剥离规则完整性,防止关键信息遗漏。

SKILL.md

name
project-nirvana-skill
description
Privacy-preserving context stripper for OpenClaw. Strip SOUL/USER/MEMORY before cloud API calls. Assumes you have your own local LLM. Saves 85%+ tokens, protects privacy.
version
1.0.0
author
Shiva
compatibility
OpenClaw 2026.3.24+
keywords
[privacy, context-stripping, local-llm, cost-reduction, privacy-preserving, context-management]

Nirvana Local: Privacy-Preserving Context Stripper

For teams that already have a local inference engine. Just strip the private data before cloud API calls. Nothing else.

What This Is

Nirvana Local is a lightweight skill for OpenClaw agents that already have a local LLM inference engine (Ollama, Llamafile, vLLM, LM Studio, etc.).

It does one thing: strips private context before cloud API calls.

  • ✅ Removes SOUL.md (agent identity)
  • ✅ Removes USER.md (user personal data)
  • ✅ Removes MEMORY.md (agent memories)
  • ✅ Removes chat history (your actual questions)
  • ✅ Leaves only the task at hand
  • ✅ Logs every boundary crossing (audit trail)

Why You Need This

Today: Privacy Leak

When you ask your agent a question, the full system prompt goes to cloud:

Your question: "How do I build synbio?"

System prompt sent to OpenAI:
- Agent identity (SOUL.md)
- Your personal info (USER.md)
- Agent memories (MEMORY.md)
- Full chat history
- Everything costs 2,000–5,000 extra tokens

With Nirvana Local: Protected

Your question: "How do I build synbio?"

Query to local LLM first:
- Try local inference (free)
- If local fails, ask the cloud

Cloud API call (if needed):
- Original question: [STRIPPED]
- System prompt: [STRIPPED]
- Sanitized query: "How do I build synbio?" (no context)
- Cloud never sees: SOUL, USER, MEMORY, chat history
- Cost: $0.01–$0.03 (no context overhead)

Installation

Prerequisites

  • OpenClaw 2026.3.24+
  • Your own local LLM running at any endpoint (Ollama, vLLM, LM Studio, etc.)

Setup (3 minutes)

# 1. Install skill
clawhub install shivaclaw/nirvana-local

# 2. Configure your local LLM endpoint
openclaw nirvana-local configure \
  --local-endpoint http://localhost:11434 \
  --local-model qwen2.5:7b

# 3. Verify
openclaw nirvana-local status

# Output:
# ✅ Local LLM: qwen2.5:7b @ localhost:11434
# ✅ Privacy audit: enabled
# ✅ Context stripper: active

How It Works

Routing Decision Logic

Agent receives your question
    ↓
Try local LLM first
(qwen2.5:7b, Mistral, Llama, whatever you have)
    ↓
┌─────────────────────────────────────────┐
│ Success?                                 │
└─────────────────────────────────────────┘
   ↙ YES (80%)           ↘ NO (20%)
   
Return local answer    Ask cloud for help
                             ↓
                    Strip private context
                    (SOUL, USER, MEMORY)
                             ↓
                    Sanitized query to cloud
                    "How do I build synbio?"
                    (no personal data)
                             ↓
                    Cache response locally
                    Agent learns
                             ↓
                    Return integrated answer

What Gets Stripped

Always Removed:

  • SOUL.md (agent identity)
  • USER.md (personal data)
  • MEMORY.md (agent memories)
  • Chat history (your actual questions)
  • Session context (private workstreams)

What the Cloud Gets:

  • Sanitized query only
  • Task-specific information
  • Audit trail (transparent logging)

Configuration

Basic Setup

Edit ~/.openclaw/workspace/openclaw.json:

{
  "plugins": {
    "nirvana-local": {
      "enabled": true,
      "local_llm": {
        "endpoint": "http://localhost:11434",
        "model": "qwen2.5:7b",
        "timeout_ms": 180000,
        "api_format": "openai-compatible"
      },
      "privacy": {
        "strip_soul": true,
        "strip_user": true,
        "strip_memory": true,
        "strip_chat_history": true,
        "audit_logging": true
      },
      "routing": {
        "local_threshold": 0.75,
        "max_local_context_tokens": 8000,
        "cloud_fallback": true
      }
    }
  }
}

Custom API Format

If your local LLM uses a different API:

{
  "plugins": {
    "nirvana-local": {
      "local_llm": {
        "endpoint": "http://your-server:5000",
        "model": "your-model",
        "api_format": "custom",
        "custom_api_handler": "llamafile"  // or "vllm", "lm-studio", etc.
      }
    }
  }
}

Privacy Audit Trail

View What Gets Stripped

# See every boundary crossing
openclaw nirvana-local audit-log --tail 20

# Output:
# [2026-04-24 14:23:45] LOCAL HANDLING
# Question: "What's my salary range for synbio roles?"
# Handled by: qwen2.5:7b locally
# Private data: None exposed
# Cost: $0

# [2026-04-24 14:25:12] CLOUD FALLBACK (WITH STRIPPING)
# Original question: [STRIPPED]
# Sanitized query sent: "What are typical salary ranges in synthetic biology?"
# Private data stripped: SOUL.md, USER.md, chat history
# Cost: $0.02

Transparency

Every cloud API call is logged with:

  • What was stripped
  • What was sent
  • What was cached
  • Cost incurred
  • Privacy boundary verified

Supported Local LLMs

ProviderEndpointAPI FormatTested
Ollamahttp://localhost:11434openai-compatible
Llamafilehttp://localhost:8000openai-compatible
vLLMhttp://localhost:8000openai-compatible
LM Studiohttp://localhost:1234openai-compatible
Text Generation WebUIhttp://localhost:5000custom
GPT4Allhttp://localhost:4891custom
LocalAIhttp://localhost:8080openai-compatible

Philosophy

You own the learning. The cloud provides intelligence.

Without Nirvana Local:

  • Cloud provider learns from your private data every time you ask a question
  • You train their next model
  • Your personal information becomes their training corpus
  • You pay for the privilege

With Nirvana Local:

  • Your local agent learns from cloud responses
  • Your private data never leaves your system
  • Cloud provider learns nothing about you
  • You own all the knowledge

Cost Savings

Example: 10 Questions/Day

Today (without Nirvana Local):

  • 2,000 tokens/question (full context sent)
  • 20,000 tokens/day
  • $0.60/day (OpenAI GPT-4)
  • $18/month
  • Privacy: Compromised

With Nirvana Local:

  • 80% local (free, private)
  • 20% cloud (sanitized, no context overhead)
  • 300 tokens/question average
  • 3,000 tokens/day
  • $0.09/day
  • $2.70/month
  • Privacy: Protected

Savings: $15.30/month + 100% privacy protection


When to Use

✅ Perfect For

  • Agents with local LLMs already running
  • Privacy-critical deployments (code, healthcare, legal, finance)
  • Cost-conscious teams (85% savings)
  • Air-gapped environments (local + selective cloud)

⚠️ When to Use Full Plugin

  • Need automated Ollama + model setup
  • No local LLM currently available
  • Want out-of-box simplicity

Support


License

MIT-0 — Free to use, modify, and redistribute. No attribution required.


*Your privacy is yours to keep. Nirvana Local makes it happen.*

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

88.44%
按下载量换算562

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills