Policy-aware edge LLM-RAG framework for mission-critical Internet of Battlefield Things orchestration. Intent-driven control with safety guarantees.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill edge-llm-rag-mission-orchestration --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Edge Llm Rag Mission Orchestration?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-edge-llm-rag-mission-orchestration)More formats (shields.io, HTML) on the badges page.
---
name: edge-llm-rag-mission-orchestration
description: Policy-aware edge LLM-RAG framework for mission-critical Internet of Battlefield Things orchestration. Intent-driven control with safety guarantees.
version: 1.0.0
author: Research Synthesis
license: MIT
metadata:
hermes:
tags: [edge computing, LLM, RAG, mission orchestration, Internet of Battlefield Things, policy-aware]
source_paper: "Policy-Aware Edge LLM-RAG Framework for Internet of Battlefield Things Mission Orchestration (arXiv:2604.09493)"
citations: 0
category: networking
---
# 边缘LLM-RAG任务编排框架 (Edge LLM-RAG Mission Orchestration)
## 概述
本文提出了一个策略感知的边缘LLM-RAG框架,用于战场物联网(IoBT)的任务编排。解决大语言模型在任务关键型网络物理系统中的直接应用挑战,结合检索增强生成(RAG)和策略约束保证安全。
## 核心创新
### 1. Policy-Aware RAG架构
```python
class PolicyAwareRAG:
def __init__(self, llm, retriever, policy_engine):
self.llm = llm
self.retriever = retriever # 任务知识库
self.policy = policy_engine # 策略引擎
def orchestrate(self, intent, context):
# 检索相关知识
knowledge = self.retriever.retrieve(intent, context)
# 策略检查
allowed_actions = self.policy.get_allowed_actions(context)
# 约束生成
response = self.llm.generate(
prompt=intent,
context=knowledge,
constraints=allowed_actions
)
return response
```
### 2. 边缘部署优化
- **模型量化**: INT8/INT4 压缩
- **知识库分片**: 分布式检索
- **推理加速**: KV缓存优化
### 3. 安全策略集成
- **多级策略**: 战术、作战、战略
- **实时验证**: 运行时策略检查
- **审计追踪**: 决策可解释性
## 应用场景
- **战场物联网**: 异构系统协同
- **应急响应**: 灾难救援协调
- **工业物联网**: 安全关键型控制
## 系统架构
```
┌─────────────────────────────────────┐
│ Command Intent │
└──────────────┬──────────────────────┘
▼
┌─────────────────────────────────────┐
│ Edge LLM + RAG Module │
│ ┌─────────┐ ┌─────────────┐ │
│ │ LLM │◄───│ Retriever │ │
│ │ Engine │ │ (Knowledge)│ │
│ └────┬────┘ └─────────────┘ │
└───────┼─────────────────────────────┘
▼
┌─────────────────────────────────────┐
│ Policy Enforcement Layer │
│ ┌─────────┐ ┌──────────┐ │
│ │ Policy │───►│ Validator│ │
│ │ Engine │ │ │ │
│ └─────────┘ └──────────┘ │
└──────────────┬──────────────────────┘
▼
┌─────────────────────────────────────┐
│ Mission Orchestration │
└─────────────────────────────────────┘
```
## 激活关键词
- 边缘LLM编排
- 策略感知RAG
- IoBT任务编排
- edge LLM orchestration
- mission-critical RAG
## 参考文献
- Solanki, O., Praharaj, L., Gupta, D., & Gupta, M. (2026). Policy-Aware Edge LLM-RAG Framework for Internet of Battlefield Things Mission Orchestration. arXiv:2604.09493.

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!