Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

airsyncairsync 搜索

Agent Skill

airsync 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

514

周安装

21

GitHub Stars

1

下载量

165
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:airsync(airsync 搜索)
来源仓库:https://github.com/aircury/ai-framework
仓库路径:skills/airsync
安装命令:
npx skills add https://github.com/aircury/ai-framework --skill airsync
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/aircury/ai-framework --skill airsync

简介

airsync 是 AI 代理协同构建的 gated 知识库管理系统,支持高质量知识沉淀。

  • 适用于团队共享知识管理、经验归档和协作学习等场景。
  • 采用三层生命周期:INBOX(14天)、PUBLISHED(永久)、ARCHIVED(只读)。
  • 通过显式写入机制保障内容质量,避免低价值信息污染全局搜索。
  • 建议在本地或私有部署环境下使用,确保知识资产安全与可控。

SKILL.md

Airsync Memory Workflow

Purpose

Airsync is a managed memory system where AI agents and human developers collaboratively build a shared knowledge base. Unlike traditional knowledge bases where everything is searchable immediately, Airsync uses a gated lifecycle to prevent low-quality content from contaminating team-wide search.

The Three Layers

LayerVisibilityTTLPurpose
INBOXExplicit only14 daysRaw captures awaiting review
PUBLISHEDDefault searchPermanentVetted, high-quality knowledge
ARCHIVEDExplicit onlyPermanentRetired or obsolete content

Key Principle: Writing to the knowledge base ≠ Making it searchable.


Required Workflow

1. Retrieve Context First

Before making architectural decisions or implementing changes:

memory_search(
    query="your search terms",
    memory_kind="best_practice",  # optional filter
    tags_any=["relevant", "tags"]   # optional filter
)
  • Default search only returns PUBLISHED memories
  • Use layers=["PUBLISHED", "ARCHIVED"] to include archived content
  • Use layers=["INBOX"] only when explicitly reviewing pending memories

2. Produce Output With Traceability

  • Cite memory IDs for major decisions: "Based on mem_01hz3kp8x2a5mv7b..."
  • If memories conflict, prefer higher quality scores and newer timestamps
  • Note when you're overriding documented best practices

3. Capture Learnings (INBOX)

When you discover something worth remembering:

memory_propose(
    entry={
        "memory_kind": "best_practice",  # or "learning", "observation", "note", "model"
        "scope": "team",                 # or "project", "agent"
        "author_agent_id": "your-agent-id",
        "title": "Clear outcome-focused title",
        "content": "Detailed explanation with context...",
        "tags": ["architecture", "patterns"],
    }
)

Important: All proposals go to INBOX, not directly to PUBLISHED. They won't appear in default searches until promoted.

4. Quality Self-Check Before Proposing

The quality score (0.0-1.0) is computed automatically:

CriterionPoints
Title > 10 chars+0.20
Content > 50 chars+0.20
Has memory_kind+0.15
Scope = project/team+0.15
≥2 tags+0.15
Content > 200 chars+0.15

Minimum 0.5 required for promotion. Improve your entry if quality is low.


Memory Kinds

KindUse ForExample
best_practiceValidated approaches that work"Use hexagonal architecture for framework modules"
learningInsights from experience"Discovered that batching reduces API calls by 80%"
observationNoted patterns without full validation"Seems like Qdrant queries are faster with pre-filtering"
noteGeneral documentation"API rate limits are 1000 req/min"
modelMental models or frameworks"The CAP tradeoff in distributed systems"

Tool Reference

Write Operations

memory_propose(entry, team_id?) → MemoryRecord
    Creates a new memory in INBOX. Performs exact deduplication check.
    Returns error if exact duplicate exists in team.

memory_promote(memory_id, team_id?) → PromoteResult
    Moves INBOX memory to PUBLISHED. Requirements:
    - Quality >= 0.5
    - No semantic duplicates (>0.95 similarity) in PUBLISHED
    Returns duplicate_of if similar memory exists.

memory_archive(memory_id, reason, team_id?) → MemoryRecord
    Archives a memory (from any layer). Reasons:
    - "superseded" - replaced by newer content
    - "obsolete" - no longer relevant
    - "incorrect" - contains errors
    - "consolidated" - merged into another memory
    - "expired" - TTL expired (usually automatic)

Read Operations

memory_search(query, top_k?, team_id?, layers?, memory_kind?, scope?, tags_any?) → [SearchResult]
    Semantic search with layer-aware filtering.
    Default: only searches PUBLISHED.
    Automatically excludes expired INBOX entries.

memory_get(memory_id, team_id?) → MemoryRecord
    Retrieves any memory by ID (any layer).

memory_list_inbox(team_id?) → [MemoryRecord]
    Lists pending INBOX memories for review.
    Sorted by created_at desc (newest first).

memory_find_duplicates(memory_id, team_id?, threshold?) → DuplicateCheckResult
    Finds exact and semantic duplicates.
    Useful before promotion.

Content Quality Guidelines

DO Capture

  • Root cause + fix patterns applicable beyond this task
  • Architectural decisions with clear rationale
  • Validated runbooks and operational commands
  • Repeated pitfalls and how to avoid them
  • Team-wide conventions and standards
  • Mental models that explain complex systems

DO NOT Capture

  • Project-specific implementation details other teams can't reuse
  • Debugging sessions without transferable lessons
  • Scratch notes or in-progress findings
  • Content already in codebase, docs, or prior memory
  • Transient observations without context

The Collaboration Test

Before proposing, ask: "Would a developer on a different project benefit from this in 3 months?"

If no → don't propose.


Deduplication

The system prevents duplication at two levels:

1. Exact Duplication (propose phase)

  • SHA-256 hash of normalised content
  • Rejects identical content within same team
  • Returns existing memory ID on conflict

2. Semantic Duplication (promote phase)

  • Vector similarity > 0.95 threshold
  • Checked against PUBLISHED layer only
  • Suggests merge instead of promotion

Best Practice: Search before proposing. If similar content exists, enhance it rather than creating a duplicate.


Example Workflows

Adding a New Best Practice

# 1. Check if it already exists
results = memory_search(
    query="hexagonal architecture framework modules",
    memory_kind="best_practice"
)

# 2. If not found, propose to INBOX
memory = memory_propose(entry={
    "memory_kind": "best_practice",
    "scope": "team",
    "author_agent_id": "claude-opus-4",
    "title": "Use hexagonal architecture for framework modules",
    "content": "All framework modules must follow hexagonal architecture...",
    "tags": ["architecture", "hexagonal", "framework"],
})

# 3. When confident, promote to PUBLISHED
memory_promote(memory_id=memory.id)

Reviewing Pending Memories

# List INBOX for review
inbox = memory_list_inbox(team_id="my-team")

for memory in inbox:
    if memory.quality >= 0.5:
        # Check for duplicates first
        dups = memory_find_duplicates(memory.id)
        if not dups.semantic_duplicates:
            memory_promote(memory.id)
        else:
            print(f"Merge candidate: similar to {dups.semantic_duplicates[0].memory.id}")
    else:
        print(f"Low quality ({memory.quality}), needs improvement")

Configuration

Environment variables:

VariableDefaultDescription
AIRSYNC_TEAM_ID"default"Default team for all operations
AIRSYNC_INBOX_TTL_DAYS14Days before INBOX expires
AIRSYNC_DEDUP_THRESHOLD0.95Semantic similarity threshold
AIRSYNC_MIN_QUALITY_FOR_PUBLISH0.5Minimum quality for promotion
AIRSYNC_DEFAULT_SEARCH_LAYERS"PUBLISHED"Default layers for search

Safety Rules

  1. Never store secrets - No credentials, tokens, or personal data
  2. Never fabricate - Don't invent prior knowledge when search returns nothing
  3. Cite your sources - Use source_refs for traceability
  4. Prefer promotion over direct publish - All entries should pass through INBOX
  5. Archive obsolete content - Don't let outdated knowledge pollute search

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Claude

34.26%
按下载量换算57

Codex

34.09%
按下载量换算56

Cursor

18.17%
按下载量换算30

Gemini CLI

10.09%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills