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

L3 Sync

skill-cloud99277-kitclaw-l3-sync · by cloud99277

|

No reviews yet
0 installs
11 views
0.0% view→install

Install

$ agentstack add skill-cloud99277-kitclaw-l3-sync

✓ 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/skill-cloud99277-kitclaw-l3-sync)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
4mo ago

Declared compatibility

Claude CodeClaude Desktop

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 L3 Sync? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

l3-sync — L3 知识库自动索引

监控 Markdown 知识库目录的文件变更,自动触发增量 RAG 索引更新。

适用场景

  • Obsidian 编辑后自动更新搜索索引
  • 知识库目录有变更时自动增量索引
  • 后台守护进程持续监听

工作原理

文件系统变更(inotify / 轮询)
  → 防抖(5s 窗口批量合并变更)
  → knowledge_index.py --update 
  → 观测日志写入 skill-observability

使用方法

单次增量索引(手动触发)

# 读取配置,对所有 l3_paths 做一次增量索引
python3 ~/.ai-skills/l3-sync/scripts/index_watcher.py --once

启动后台监听(推荐)

# 前台运行(调试用)
python3 ~/.ai-skills/l3-sync/scripts/index_watcher.py --watch

# 后台运行
nohup python3 ~/.ai-skills/l3-sync/scripts/index_watcher.py --watch &

用 systemd 管理(生产环境)

# 安装 systemd user service
bash ~/.ai-skills/l3-sync/scripts/install_service.sh

# 管理
systemctl --user start l3-sync
systemctl --user status l3-sync
systemctl --user stop l3-sync

配置

监听路径从 ~/.ai-memory/config.jsonl3_paths 字段读取:

{
  "l3_paths": [
    "/mnt/e/Cloud927/.../20_Knowledge_Base"
  ]
}

与其他 Skill 的关系

  • knowledge-search — 搜索已索引的 L3。l3-sync 确保索引是最新的。
  • knowledge_index.py — 索引引擎。l3-sync 是它的触发器。
  • conversation-distiller — 对话 → L3 文档。写入后 l3-sync 自动增量索引。

依赖

  • RAG 引擎已安装(bash install.sh --with-rag
  • Linux inotify 支持(WSL 有;纯轮询模式也支持,但延迟更高)

Source & license

This open-source skill 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.