技能详情(站内镜像,无评论)
作者:Rta Labs AI @auralithinc
许可证:MIT-0
MIT-0 ·免费使用、修改和重新分发。无需归因。
版本:v0.1.4
统计:⭐ 4 · 557 · 1 current installs · 1 all-time installs
⭐ 4
安装量(当前) 1
🛡 VirusTotal :良性 · OpenClaw :良性
Package:auralithinc/aura-openclaw
安全扫描(ClawHub)
- VirusTotal :良性
- OpenClaw :良性
OpenClaw 评估
Files and instructions are internally consistent with a local, file-based knowledge-compiler and memory manager, but the skill depends on the external Python package (auralith-aura / aura-core) and writes persistent data under ~/.aura — you should verify that dependency and accept local storage writes before installing.
目的
The name/description (compile documents into .aura archives and manage a 3-tier memory) matches the included scripts (compile.py, query.py, memory.py). The scripts only operate on user-specified input directories and the ~/.aura memory path as expected; there are no unrelated credential or binary requirements.
说明范围
Runtime instructions are narrowly scoped to compiling directories, querying .aura files, and reading/writing agent memory. The SKILL.md explicitly claims 'zero network requests' and the shipped scripts make no network calls themselves, but they import and rely on the third-party package (auralith-aura / aura-core) — that dependency could perform network activity or other actions not visible here, so the zero-network claim cannot be fully verif…
安装机制
There is no packaged install spec; the README/SKILL.md instructs users to pip install auralith-aura or aura-core[all]. Requiring a PyPI package is reasonable for this functionality, but it means the skill relies on an external package distributed outside the skill bundle. That dependency should be vetted (source repo, published releases, and whether it performs network I/O during runtime).
证书
The skill declares no required environment variables or credentials and the scripts do not read env vars. This is proportionate for a local compiler/memory tool. The only notable permission is filesystem access to user-specified directories and ~/.aura for persistent shards, which is necessary for the stated functionality.
持久
The skill writes persistent data to ~/.aura (WAL and shards) and reads those shards for queries — this is core to a memory system and consistent with the description. 'always: false' and normal autonomous invocation settings are in place. No evidence the skill alters other skills or global agent config.
综合结论
This skill appears to do what it claims: compile local files into .aura archives and manage persistent local agent memory in ~/.aura. Before installing or using it: (1) verify and review the external dependency (auralith-aura / aura-core) — check the PyPI package page and upstream GitHub repo for trustworthiness and whether it performs any network I/O; (2) be aware the skill will read the directories you point it at and will create and persist…
安装(复制给龙虾 AI)
将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。
请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「Aura for OpenClaw」。简介:Compile multi-format documents into local queryable knowledge bases and manage …。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/auralithinc/aura-openclaw/SKILL.md
(来源:yingzhi8.cn 技能库)
SKILL.md
---
metadata.clawdbot:
name: aura-openclaw
description: Compile documents into knowledge bases and manage persistent AI agent memory with Aura Core
version: 0.1.3
author: Auralith Inc.
homepage: https://github.com/Auralith-Inc/aura-openclaw
requires:
env: []
files: ["scripts/*"]
---
# Aura for OpenClaw
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.
> **Memory OS v2.1** (`auralith-aura>=0.2.2`): Enhanced with temporal decay scoring, noise filtering, deduplication, bloom filters, SimHash fuzzy matching, and tiered priority scoring — zero RAM overhead.
## Setup
```bash
pip install auralith-aura
```
For full document support (PDFs, DOCX, etc.):
```bash
pip install 'aura-core[all]'
```
## What It Looks Like
### Learn an entire codebase
```
You: Learn my project in ~/repos/api-service
Agent: 🔥 Compiling ~/repos/api-service...
✅ Compiled 847 files → api-service.aura
Indexed: Python (312), TypeScript (201), YAML (44), Markdown (73), JSON (217)
You: How does the auth middleware handle token refresh?
Agent: Based on src/middleware/auth.ts (lines 45-89), the auth middleware
intercepts expired JWTs by checking the `exp` claim. When expired,
it calls `refreshTokenService.rotate()` which issues a new access
token and sets it via the `X-Refreshed-Token` response header.
The original request is then replayed with the new token.
```
### Compile legal docs with PII masking
```
You: Learn everything in ~/legal but mask any personal info
Agent: 🔥 Compiling with PII masking enabled...
✅ Compiled → legal.aura
Masked: 23 emails, 8 phone numbers, 4 SSNs
You: What are the termination conditions in the Series A agreement?
Agent: Per series_a_term_sheet.pdf, Section 7.2 — the agreement may be
terminated by either party with 30 days written notice if:
(a) material breach remains uncured after 15 business days,
(b) insolvency or bankruptcy filing, or
(c) failure to meet the minimum revenue threshold in Schedule B...
```
### Remember facts across sessions
```
You: Remember that our production database is on us-east-1, the staging
API key rotates every 30 days, and I prefer verbose error logs.
Agent: ✅ Written to /fact:
• Production DB region: us-east-1
• Staging API key rotation: 30-day cycle
• Preference: verbose error logging
--- next day, new session ---
You: Set up the deployment config for staging
Agent: I remember your staging API key rotates every 30 days — I'll add
a reminder comment in the config. Also setting error logging to
verbose per your preference. Targeting us-east-1 since that's
where your production DB lives...
```
### Track decisions across a long project
```
You: We decided to use PostgreSQL over MongoDB for the user service,
and the team agreed on GraphQL for the public API.
Agent: ✅ Written to /episodic:
• Architecture decision: PostgreSQL for user service (over MongoDB)
• API decision: GraphQL for public-facing API
--- two weeks later ---
You: Wait, should we use MongoDB for the new analytics service?
Agent: Based on your earlier decision log — you chose PostgreSQL over
MongoDB for the user service citing ACID compliance needs. The
analytics service has different requirements (write-heavy, schema
flexibility), so MongoDB could make sense here. Want me to draft
a comparison?
```
## Commands
### Compile a Knowledge Base
When the user asks you to "learn", "compile", "index", or "remember" files from a directory:
```bash
python {SKILL_DIR}/scripts/compile.py <input_directory> <output_file>
```
Options:
```bash
# Mask PII before compilation
python {SKILL_DIR}/scripts/compile.py ./data knowledge.aura --pii-mask
# Filter low-quality content
python {SKILL_DIR}/scripts/compile.py ./data knowledge.aura --min-quality 0.3
```
### Query the Knowledge Base
```bash
python {SKILL_DIR}/scripts/query.py knowledge.aura "search query here"
```
### Agent Memory
Write to memory tiers:
```bash
python {SKILL_DIR}/scripts/memory.py write pad "scratch note"
python {SKILL_DIR}/scripts/memory.py write fact "verified information"
python {SKILL_DIR}/scripts/memory.py write episodic "session event"
```
Search and manage memory:
```bash
python {SKILL_DIR}/scripts/memory.py query "search query"
python {SKILL_DIR}/scripts/memory.py list
python {SKILL_DIR}/scripts/memory.py usage
python {SKILL_DIR}/scripts/memory.py prune --before 2026-01-01
python {SKILL_DIR}/scripts/memory.py end-session
```
## Memory Tiers
| Tier | What It Stores | Lifecycle |
|------|---------------|-----------|
| **`/pad`** | Working notes, scratch space, in-progress thinking | Transient — cleared between sessions |
| **`/episodic`** | Session transcripts, decisions, conversation history | Auto-archived — retained for reference |
| **`/fact`** | Verified facts, user preferences, learned rules | Persistent — survives indefinitely |
## Supported File Types
Documents: PDF, DOCX, DOC, RTF, ODT, EPUB, TXT, HTML, PPTX, EML
Data: CSV, TSV, XLSX, XLS, Parquet, JSON, JSONL, YAML, TOML
Code: Python, JavaScript, TypeScript, Rust, Go, Java, C/C++, and 20+ more
Markup: Markdown (.md), reStructuredText, LaTeX
## External Endpoints
| URL | Data Sent |
|-----|-----------|
| None | None |
This skill makes **zero network requests**. All processing is local.
## Data Provenance & Trust
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.
```python
memory.show_usage() # Inspect what's stored per tier
memory.prune_shards(before_date="2026-01-01") # Prune by date
memory.prune_shards(shard_ids=["specific_id"]) # Delete specific shards
# Or delete ~/.aura/memory/ to wipe everything
```
## Security & Privacy
- **No data leaves your machine.** All compilation and memory operations run locally.
- The `.aura` format uses `safetensors` (no pickle) — no arbitrary code execution risk.
- Memory files are stored locally at `~/.aura/memory/`.
- No environment variables or API keys are required.
- No telemetry, analytics, or usage reporting.
## Model Invocation Note
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.
## Trust Statement
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 [Auralith Inc.](https://auralith.org). Source code for the compiler and RAG components is available on [GitHub](https://github.com/Auralith-Inc/aura-core).
## Notes
- Memory OS provides instant writes and background compilation to durable shards.
- Compiler and RAG components are open source (Apache 2.0). Memory OS is proprietary, free to use.
- For emphasis weighting and training features, see [OMNI Platform](https://omni.auralith.org).