← 返回 Skills 市场
auralithinc

Aura for OpenClaw

作者 Rta Labs AI · GitHub ↗ · v0.1.5 · MIT-0
cross-platform ✓ 安全检测通过
783
总下载
3
收藏
1
当前安装
6
版本数
在 OpenClaw 中安装
/install aura-openclaw
功能描述
Compile multi-format documents into local queryable knowledge bases and manage persistent AI memory tiers using Aura Core with zero network requests.
使用说明 (SKILL.md)

\r \r

Aura for OpenClaw\r

\r Persistent memory and instant knowledge retrieval for your OpenClaw agent. Compile 60+ file formats into queryable .aura archives and give your agent a 3-tier memory that survives sessions, compaction, and restarts.\r \r

Memory OS v2.1 (auralith-aura>=0.2.3): Enhanced with temporal decay scoring, noise filtering, deduplication, bloom filters, SimHash fuzzy matching, and tiered priority scoring — zero RAM overhead.\r \r

Setup\r

\r

pip install auralith-aura\r
```\r
\r
For full document support (PDFs, DOCX, etc.):\r
```bash\r
pip install 'auralith-aura[all]'\r
```\r
\r
## What It Looks Like\r
\r
### Learn an entire codebase\r
\r
```\r
You: Learn my project in ~/repos/api-service\r
Agent: 🔥 Compiling ~/repos/api-service...\r
       ✅ Compiled 847 files → api-service.aura\r
       Indexed: Python (312), TypeScript (201), YAML (44), Markdown (73), JSON (217)\r
\r
You: How does the auth middleware handle token refresh?\r
Agent: Based on src/middleware/auth.ts (lines 45-89), the auth middleware\r
       intercepts expired JWTs by checking the `exp` claim. When expired,\r
       it calls `refreshTokenService.rotate()` which issues a new access\r
       token and sets it via the `X-Refreshed-Token` response header.\r
       The original request is then replayed with the new token.\r
```\r
\r
### Compile legal docs with PII masking\r
\r
```\r
You: Learn everything in ~/legal but mask any personal info\r
Agent: 🔥 Compiling with PII masking enabled...\r
       ✅ Compiled → legal.aura\r
       Masked: 23 emails, 8 phone numbers, 4 SSNs\r
\r
You: What are the termination conditions in the Series A agreement?\r
Agent: Per series_a_term_sheet.pdf, Section 7.2 — the agreement may be\r
       terminated by either party with 30 days written notice if:\r
       (a) material breach remains uncured after 15 business days,\r
       (b) insolvency or bankruptcy filing, or\r
       (c) failure to meet the minimum revenue threshold in Schedule B...\r
```\r
\r
### Remember facts across sessions\r
\r
```\r
You: Remember that our production database is on us-east-1, the staging\r
     API key rotates every 30 days, and I prefer verbose error logs.\r
\r
Agent: ✅ Written to /fact:\r
       • Production DB region: us-east-1\r
       • Staging API key rotation: 30-day cycle\r
       • Preference: verbose error logging\r
\r
--- next day, new session ---\r
\r
You: Set up the deployment config for staging\r
Agent: I remember your staging API key rotates every 30 days — I'll add\r
       a reminder comment in the config. Also setting error logging to\r
       verbose per your preference. Targeting us-east-1 since that's\r
       where your production DB lives...\r
```\r
\r
### Track decisions across a long project\r
\r
```\r
You: We decided to use PostgreSQL over MongoDB for the user service,\r
     and the team agreed on GraphQL for the public API.\r
\r
Agent: ✅ Written to /episodic:\r
       • Architecture decision: PostgreSQL for user service (over MongoDB)\r
       • API decision: GraphQL for public-facing API\r
\r
--- two weeks later ---\r
\r
You: Wait, should we use MongoDB for the new analytics service?\r
Agent: Based on your earlier decision log — you chose PostgreSQL over\r
       MongoDB for the user service citing ACID compliance needs. The\r
       analytics service has different requirements (write-heavy, schema\r
       flexibility), so MongoDB could make sense here. Want me to draft\r
       a comparison?\r
```\r
\r
## Commands\r
\r
### Compile a Knowledge Base\r
\r
When the user asks you to "learn", "compile", "index", or "remember" files from a directory:\r
\r
```bash\r
python {SKILL_DIR}/scripts/compile.py \x3Cinput_directory> \x3Coutput_file>\r
```\r
\r
Options:\r
```bash\r
# Mask PII before compilation\r
python {SKILL_DIR}/scripts/compile.py ./data knowledge.aura --pii-mask\r
\r
# Filter low-quality content\r
python {SKILL_DIR}/scripts/compile.py ./data knowledge.aura --min-quality 0.3\r
```\r
\r
### Query the Knowledge Base\r
\r
```bash\r
python {SKILL_DIR}/scripts/query.py knowledge.aura "search query here"\r
```\r
\r
### Agent Memory\r
\r
Write to memory tiers:\r
```bash\r
python {SKILL_DIR}/scripts/memory.py write pad "scratch note"\r
python {SKILL_DIR}/scripts/memory.py write fact "verified information"\r
python {SKILL_DIR}/scripts/memory.py write episodic "session event"\r
```\r
\r
Search and manage memory:\r
```bash\r
python {SKILL_DIR}/scripts/memory.py query "search query"\r
python {SKILL_DIR}/scripts/memory.py list\r
python {SKILL_DIR}/scripts/memory.py usage\r
python {SKILL_DIR}/scripts/memory.py prune --before 2026-01-01\r
python {SKILL_DIR}/scripts/memory.py end-session\r
```\r
\r
## Memory Tiers\r
\r
| Tier | What It Stores | Lifecycle |\r
|------|---------------|-----------|\r
| **`/pad`** | Working notes, scratch space, in-progress thinking | Transient — cleared between sessions |\r
| **`/episodic`** | Session transcripts, decisions, conversation history | Auto-archived — retained for reference |\r
| **`/fact`** | Verified facts, user preferences, learned rules | Persistent — survives indefinitely |\r
\r
## Supported File Types\r
\r
Documents: PDF, DOCX, DOC, RTF, ODT, EPUB, TXT, HTML, PPTX, EML\r
Data: CSV, TSV, XLSX, XLS, Parquet, JSON, JSONL, YAML, TOML\r
Code: Python, JavaScript, TypeScript, Rust, Go, Java, C/C++, and 20+ more\r
Markup: Markdown (.md), reStructuredText, LaTeX\r
\r
## External Endpoints\r
\r
| URL | Data Sent |\r
|-----|-----------|\r
| None | None |\r
\r
This skill makes **zero network requests**. All processing is local.\r
\r
## Data Provenance & Trust\r
\r
Every memory entry stores `source` (agent/user/system), `namespace`, `timestamp`, `session_id`, and a unique `entry_id`. Nothing is inferred or synthesized — memory contains only what was explicitly written. No hidden embeddings, no derived data.\r
\r
```python\r
memory.show_usage()                              # Inspect what's stored per tier\r
memory.prune_shards(before_date="2026-01-01")    # Prune by date\r
memory.prune_shards(shard_ids=["specific_id"])   # Delete specific shards\r
# Or delete ~/.aura/memory/ to wipe everything\r
```\r
\r
## Security & Privacy\r
\r
- **No data leaves your machine.** All compilation and memory operations run locally.\r
- The `.aura` format uses `safetensors` (no pickle) — no arbitrary code execution risk.\r
- Memory files are stored locally at `~/.aura/memory/`.\r
- No environment variables or API keys are required.\r
- No telemetry, analytics, or usage reporting.\r
\r
## Model Invocation Note\r
\r
This skill is autonomously invoked by the agent as part of its normal operation. The agent decides when to compile documents and manage memory based on user requests. You can disable autonomous invocation in your OpenClaw settings.\r
\r
## Trust Statement\r
\r
By using this skill, **no data is sent to any external service**. All processing happens on your local machine. Only install this skill if you trust [Rta Labs](https://rtalabs.org). Source code for the compiler and RAG components is available on [GitHub](https://github.com/Rtalabs-ai/aura-core).\r
\r
## Notes\r
\r
- Memory OS provides instant writes and background compilation to durable shards.\r
- Compiler and RAG components are open source (Apache 2.0). Memory OS is proprietary, free to use.\r
- For emphasis weighting and training features, see [OMNI Platform](https://omni.rtalabs.org).\r
安全使用建议
This skill appears to do what it says: compile local documents into .aura archives and provide a persistent 3‑tier memory, all via a small set of helper scripts that call the external 'auralith-aura' library. Before installing or using it, consider: (1) Audit the auralith-aura package (PyPI/GitHub) for any telemetry or unexpected network behavior — SKILL.md claims 'zero network requests' but that applies to the skill's code, not to an external dependency you install. (2) Be cautious which directories you ask the agent to 'learn' — it will read whatever path you provide. (3) Persistent memory is stored on disk (~/.aura/memory) — avoid writing long-lived secrets (API keys, private keys, passwords) into memory unless you know how they are encrypted and protected. (4) If you require strict offline guarantees, inspect the auralith-aura source to confirm it performs no network activity at runtime. If you want a safer deploy: limit file paths provided to the skill, restrict filesystem permissions on ~/.aura, and periodically prune or encrypt memory shards.
功能分析
Type: OpenClaw Skill Name: aura-openclaw Version: 0.1.5 The aura-openclaw skill provides local knowledge compilation and persistent memory management for OpenClaw agents. The scripts (compile.py, memory.py, query.py) serve as wrappers for the 'auralith-aura' library to index documents and manage a three-tier memory system (pad, episodic, fact) stored locally in ~/.aura/memory/. The documentation and code consistently emphasize local processing, privacy, and the use of safe data formats (safetensors), with no evidence of data exfiltration, network requests, or malicious prompt injection.
能力评估
Purpose & Capability
Name/description (compile local docs, provide persistent memory) match the included scripts and SKILL.md. The scripts call into an external 'aura' Python package (auralith-aura) to perform compilation and memory operations — that is expected for this skill. There are no unrelated environment variables, binaries, or config paths requested.
Instruction Scope
Runtime instructions tell the agent to run the provided scripts against user-specified directories and .aura files and to write/read memory under ~/.aura/memory. The scripts themselves only do local file I/O and import aura.*; they do not contain network calls. Important operational note: the agent can be asked to compile any directory the user supplies (including sensitive paths) and to write arbitrary strings into persistent memory (including secrets) — that is expected functionality but has privacy implications.
Install Mechanism
There is no install spec that downloads arbitrary archives. SKILL.md instructs users to pip install the external 'auralith-aura' package (normal for Python). The skill bundle itself contains only small helper scripts and docs; nothing in the package performs remote downloads.
Credentials
The skill declares no environment variables or credentials (appropriate). It does read and write local files (user-provided input directories and ~/.aura/memory). This is proportionate to the stated purpose, but persistent storage means users can accidentally store sensitive secrets; the skill does not declare any secret-handling or encryption behavior.
Persistence & Privilege
always:false (no forced inclusion). The skill stores durable memory shards and WALs under ~/.aura/memory and writes .aura archives to output paths — this is expected. The skill can be invoked autonomously by the agent (platform default). No changes to other skills or system-wide settings are present.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install aura-openclaw
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /aura-openclaw 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v0.1.5
- Updated author and homepage fields to Rta Labs and their GitHub/org URLs. - Increased minimum required auralith-aura version to 0.2.3. - Minor adjustments to documentation for dependencies and org names. - Changed trust and citation statements to reference Rta Labs instead of Auralith Inc.
v0.1.4
- Upgraded to Memory OS v2.1 with advanced features: temporal decay scoring, noise filtering, deduplication, bloom filters, SimHash fuzzy matching, and tiered priority scoring — all with zero RAM overhead. - Added data provenance: each memory entry now records source, namespace, timestamp, session_id, and entry_id. Memory only contains explicitly written data—no inference or hidden embeddings. - Expanded documentation with usage examples for inspecting and pruning memory. - Updated trust and privacy sections to emphasize local-only operations, source code transparency, and memory control features.
v0.1.3
Version 0.1.3 - Restructure of core files - No updates to documentation or code. - Version bump only; no functional changes in this release.
v0.1.2
## v0.1.2 ### Security - Replaced subprocess.run() external binary call in compile.py with direct Python API import (from aura.compiler import compile_directory). No more external process execution. - Fixed memory directory documentation: corrected "OpenClaw data directory" to actual path (~/.aura/memory/). ### Improved - compile.py now handles --pii-mask and --min-quality flags natively via Python kwargs instead of passing raw arguments to an external binary. - Better error handling: ImportError for missing package, descriptive failure messages. - Bumped version to 0.1.2.
v0.1.1
- Expanded documentation with detailed, realistic user–agent conversation examples. - Clarified memory tiers with table and practical scenarios. - Improved command usage instructions and grouped related actions. - Enhanced descriptions of agent persistence and query workflows. - No code or logic changes; this is a documentation and usability update only.
v0.1.0
Aura Memory Compiler 2.0 is a major update providing local document compilation and agent memory management. - Compile over 60 document types into a searchable knowledge base, fully locally—no cloud required. - Introduces commands for compiling, querying, and managing persistent agent memory (notepad, episodic logs, verified facts). - Enhanced privacy and security: no network requests, no external API keys, safetensors format (no pickle), and zero telemetry. - Command-line tools added for memory usage, pruning, and session management. - New options to mask PII and filter low-quality content on compilation. - Documentation updated with clear setup, command samples, and security details.
元数据
Slug aura-openclaw
版本 0.1.5
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 6
常见问题

Aura for OpenClaw 是什么?

Compile multi-format documents into local queryable knowledge bases and manage persistent AI memory tiers using Aura Core with zero network requests. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 783 次。

如何安装 Aura for OpenClaw?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install aura-openclaw」即可一键安装,无需额外配置。

Aura for OpenClaw 是免费的吗?

是的,Aura for OpenClaw 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Aura for OpenClaw 支持哪些平台?

Aura for OpenClaw 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Aura for OpenClaw?

由 Rta Labs AI(@auralithinc)开发并维护,当前版本 v0.1.5。

💬 留言讨论