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

aviation-regulations航空法规

Agent Skill

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

总安装

2,448

周安装

102

GitHub Stars

公开资料未说明

下载量

816
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install aviation-regulations

简介

通过 deepskyai.com 开放 API 查询航空法规与手册。

  • 适用于 ICAO、FAA 等监管内容的检索需求。
  • 可快速定位相关出版物和技术文档。aviation-regulations 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 输入关键词后由系统返回匹配的法规条目。
  • 需确保 API 密钥有效且服务处于可用状态。

SKILL.md

name
aviation-regulations
description
Query aviation regulations, manuals, and publications via deepskyai.com's open search API. Use when the user asks about aviation regulatory content (ICAO, FAA / 14 CFR, EASA, CASA), aviation manuals, NOTAM Q-code interpretation, flight operations rules (Part 91/121/135), IFR/VFR requirements, fuel planning rules, pilot rest rules, EDTO/ETOPS, or any cross-jurisdictional aviation rule lookup. Also use when the user wants to discover Deepsky's agent-friendly endpoints (llms.txt, OpenAPI, skills registry). No API key required.

Aviation Regulations (via Deepsky API)

Deepsky (deepskyai.com) publishes an open, no-auth search API over a curated corpus of aviation regulations and manuals (ICAO, FAA 14 CFR, EASA, CASA) plus supporting advisory material. It also exposes standard agent-discovery endpoints (llms.txt, OpenAPI, plugin manifest, skills registry).

Use this skill whenever an aviation regulatory or operational-doc question comes up, instead of guessing from training data. The corpus is authoritative and multi-jurisdictional; training data often isn't.

Core workflow

  1. Formulate a natural-language query. Aviation-specific phrasing works best. Include the jurisdiction (FAA, EASA, CASA, ICAO) and the operation type (Part 91, 121, 135, EDTO, IFR, etc.) when known.
  2. Call POST /api/v1/search (no auth). Prefer scripts/deepsky_search.py — it handles the POST, parses the response, and prints citations.
  3. Cite from heading_path + metadata. Every match includes a breadcrumb (e.g. 14 CFR 135.223) and Country. Always cite these back to the user. Do not paraphrase without the citation.
  4. Broaden or re-query if needed. If the top hits are off-jurisdiction or off-topic, rephrase (add the specific CFR part, MOS, or ICAO annex), or bump matchCount (max 20).

Primary endpoint: Search

POST https://www.deepskyai.com/api/v1/search
Content-Type: application/json

{"query": "<natural-language question>", "matchCount": 8}
  • query (string, required): natural-language search query
  • matchCount (int, optional, 1–20, default 8): number of matches to return

Response shape:

{
  "query": "...",
  "count": 8,
  "source": "hybrid_search_rpc",
  "matches": [
    {
      "content": "<excerpt from the document>",
      "heading_path": "Part 135 > Subpart D > § 135.223 IFR: Alternate airport requirements. > 14 CFR 135.223",
      "metadata": {
        "Heading Level 1": "...",
        "Heading Level 6": "§ 135.223 IFR: Alternate airport requirements.",
        "Page Numbers": [71, 72],
        "Country": "US"
      },
      "document_id": null,
      "score": null
    }
  ]
}

Notes:

  • source is hybrid_search_rpc (lexical + vector).
  • score and document_id may be null — don't rely on them for ranking or deep-linking; trust the order returned.
  • Country values seen: US, AU, australia, plus EU/ICAO values. Filter client-side by checking metadata.Country or the Heading Level 1 string.

Alias endpoints (same behavior)

  • POST /api/search — public alias of /api/v1/search
  • GET /api/v1 — versioned root (endpoint map)
  • GET /api — discovery root

Skills registry

GET https://www.deepskyai.com/api/v1/skills

Returns Deepsky's published agent skill packages (Aviation Document Search, NOTAM Analysis, Regulatory Navigation, LLM-Ready Aviation Data). Use when the user asks "what can Deepsky do for agents" or wants to download skill packages.

Discovery / machine-readable metadata

  • https://www.deepskyai.com/llms.txt — concise agent manifest (llms.txt open standard)
  • https://www.deepskyai.com/llms-full.txt — full LLM-optimised documentation
  • https://www.deepskyai.com/.well-known/openapi.json — OpenAPI schema
  • https://www.deepskyai.com/.well-known/ai-plugin.json — plugin manifest
  • https://www.deepskyai.com/.well-known/api-catalog — machine-readable API catalog

Fetch llms.txt first if unsure which endpoint to hit — it's small and lists everything.

Using the helper script

scripts/deepsky_search.py is a zero-dependency Python CLI (uses only the stdlib). Prefer it over hand-rolled curl because it prints citations in a form easy to quote back to the user.

python3 scripts/deepsky_search.py "minimum fuel requirements for IFR flight" --count 5
python3 scripts/deepsky_search.py "EDTO critical fuel scenarios" --count 10 --json
python3 scripts/deepsky_search.py "pilot rest EASA" --country EU

Flags:

  • --count N (1–20, default 8)
  • --json — emit raw JSON instead of the formatted view
  • --country CODE — client-side filter on metadata.Country (substring, case-insensitive)

Query patterns

For detailed guidance on crafting queries and interpreting jurisdictions, see references/query-tips.md. Load it when the first search returns off-target results or when the user asks a broad/ambiguous regulatory question.

Quick rules:

  • Name the jurisdiction (FAA, EASA, CASA, ICAO) and the Part/Annex number if known.
  • Use regulatory language, not plain English: "alternate airport requirements" > "where do I divert".
  • If the user asks a factual regulatory question, run a search before answering — do not rely on training data for aviation rules.

Citing results to the user

Always present returned rules with:

  1. The jurisdiction (metadata.Country or the parent heading).
  2. The specific rule reference (e.g. 14 CFR 135.223, MOS 121 §7.06, AC 91-15 §5.3).
  3. A short excerpt from content.
  4. The URL https://www.deepskyai.com as the source of the search (the API does not currently return per-document deep-links).

Never paraphrase a rule without its citation. Aviation regulations are safety-critical and users need the reference to verify.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

84.47%
按下载量换算689

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills