Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

65 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Awesome Network Engineering Agent

Awesome

Papers, benchmarks, and tools for building AI agents that autonomously configure, optimize, and operate communication networks.

Network Engineering Agents are LLM-powered systems that read network state, reason about intent, generate actions (configurations, resource allocations, or diagnostic commands), execute them in network environments, and verify outcomes through closed-loop feedback, covering the full spectrum of network configuration, optimization, and operations.


News

[2026/04/16] We release the initial version of Awesome Network Engineering Agent!

[2026/04/16] We successfully reproduced NetArena (ICLR 2026) MALT benchmark with Qwen3.5-Flash.


Table of Contents


1. What is a Network Engineering Agent?

1.1 Definition

A Network Engineering Agent is an AI system that autonomously performs network engineering tasks by understanding natural language intent, observing network state, generating actions (code, commands, configurations), executing them in the network environment, and verifying outcomes.

Intent (natural language)  +  Network State
              |                     |
              v                     v
        Agent: Understand goal + Read environment
              |
              v
        Generate action (code / command / config)
              |
              v
        Execute in network environment
              |
              v
        Verify: correctness + safety + performance

1.2 Network Engineering Task Landscape

Network Configuration

Task Papers
Routing config (BGP/OSPF/static) NetLLM, Confucius, INTA, MNC, NetLLMBench, NetArena, 6GAgentGym
Cross-vendor config translation INTA, Clarify
Intent-to-config translation Intent-LLM, Clarify, NetConfEval
ACL / firewall policy Clarify, NetConfEval
Network slicing config WirelessAgent, ORAN-GUIDE, ReLLM, 6GAgentGym

Network Optimization

Task Papers
Resource allocation WirelessAgent, ReLLM, 6GAgentGym, WirelessBench
Beamforming / PHY optimization ComAgent, WirelessBench
Communication-control co-design COAgent
Capacity planning MeshAgent, NetArena (MALT)
Spectrum management BLAST
Energy efficiency Intent-LLM
RF signal intelligence RF-GPT, RadioLLM, RFF-LLM, Seeing Radio, SCA-LLM

Network Operations

Task Papers
Fault diagnosis / troubleshooting BiAn, NetAssistant, MeshAgent, LLM4NetLab, NetArena (Route)
Network simulation code generation GenOnet, Generative 6G Sim, SIMCODE
Digital twin construction Hermes
Telecom knowledge QA Tele-LLMs, TelecomGPT, Telco-RAG, TelecomRAG, Mobile-LLaMA
K8s / cloud-native networking NetArena (K8s)

1.3 From Manual Configuration to Agentic Network Engineering

Generation Approach Limitation
CLI Scripts Vendor-specific commands, manual templates No flexibility, no understanding
Intent-Based Networking (IBN) Declarative policies, predefined templates Limited to pre-designed intent types
LLM-Assisted Natural language to config (single-turn) No iteration, no verification
Agentic AI Autonomous multi-turn loop: observe, reason, act, verify Current frontier

1.4 Comparison with Software Engineering Agent

Dimension Software Engineering Agent Network Engineering Agent
Representative SWE-Agent, Devin, OpenHands Intent-LLM, MeshAgent, WirelessAgent
Benchmark SWE-Bench, BeyondSWE NetArena, NetLLMBench
Task Fix bugs in source code Configure/optimize/diagnose networks
Environment Code repository + test suite Network simulator/emulator + live traffic
Verification Compile + unit tests pass Connectivity + SLA + safety constraints
Domain knowledge Programming languages, APIs 3GPP specs, routing protocols, PHY models
Maturity Rapidly advancing Early stage

Key references from the SWE agent community:

Paper Venue Focus
SWE-Bench ICLR 2024 Foundational benchmark: real GitHub issues as agent tasks
SWE-Skills-Bench arXiv 2025 Skill injection evaluation: 80% of skills provide zero improvement
SWE-Bench Mobile arXiv 2025 iOS/Swift extension with diff-based intent tests
SWE-Next arXiv 2026 Scalable task synthesis via execution-driven PR mining
SWE-EVO arXiv 2025 Evolutionary self-improvement for SWE agents
SWE-MiniSandbox arXiv 2026 Lightweight sandboxed evaluation environments
ScaleSWE arXiv 2026 Scaling SWE agent training with synthetic data
SWE-Universe arXiv 2026 Multi-language, multi-repo SWE benchmark
SWE-World arXiv 2026 End-to-end SWE agent evaluation framework
Agentic Rubrics arXiv 2026 Fine-grained evaluation rubrics for SWE agents
BeyondSWE arXiv 2026 Cross-repo reasoning, domain-specific tasks, Docker-based evaluation

2. How to Build?

The three approaches are distinguished by where the agent's capability comes from: from data (model weights are changed), from scaffolding (model weights are frozen, capability comes from framework design), or from environment interaction (capability comes from closed-loop feedback).

2.1 Data-Driven

Building domain capability through pretraining, fine-tuning, or distillation. Model weights are modified.

Paper Venue Method Code
NetLLM SIGCOMM 2024 LoRA fine-tuning LLaMA-2 for networking tasks (viewport, ABR, scheduling) GitHub
Tele-LLMs arXiv 2024 1B-8B LLMs continually pretrained on 3GPP/arXiv telecom data GitHub
Mobile-LLaMA IEEE Network 2024 Instruction fine-tuned LLaMA-2 13B for 5G network analysis GitHub
TelecomGPT IEEE TMLCN 2025 Continual pretraining + SFT + RLHF on OpenTelecom dataset -
BiAn SIGCOMM 2025 LLM-based failure localization, 95.5% accuracy at Alibaba Cloud -
NetAssistant NSDI 2024 Dialogue-based network diagnosis deployed at ByteDance 3+ years -
RF-GPT arXiv 2026 End-to-end RF language model: spectrogram to RF tokens with instruction tuning -
RadioLLM arXiv 2025 Hybrid prompt + token reprogramming for IQ signal denoising/classification -
RFF-LLM arXiv 2025 GPT-2-based RF fingerprinting for UAV identification in ISAC -
Seeing Radio arXiv 2026 VLM + RF-to-image pipeline for 57-class modulation recognition -
Let RFF do the talking Sci China Info Sci 2025 LLM-distilled lightweight RFFI for 6G edge IoT -
LLM-Driven Spectrum Access arXiv 2026 Hierarchical state serialization for spectral constraint reasoning -

2.2 Scaffold-Driven

Building agent capability through framework design on top of frozen models. Capability comes from prompting, tool integration, multi-agent orchestration, and code generation.

Paper Venue Method Code
Confucius SIGCOMM 2025 Multi-agent LLM + DAG planning + RAG, deployed at Meta -
MeshAgent SIGMETRICS 2026 Constraint-guided generation with domain-specific invariants -
WirelessAgent arXiv 2024 Perception-memory-planning-action framework for wireless tasks GitHub
LLM-RAO arXiv 2025 LLM-based resource allocation optimizer for dynamic wireless environments with changing objectives and QoS constraints, no retraining required -
INTA IEEE ICNP 2025 Intent-based RAG for cross-vendor config translation, 98.15% syntactic correctness -
Clarify HotNets 2025 Interactive disambiguation for ACL/route-map synthesis -
MNC Elsevier 2025 Three-module multi-agent with CoT and reflection -
Hermes arXiv 2024 Digital twin + multi-model orchestration for autonomous networks -
Intent-LLM IEEE TCCN 2025 Structured 4-round prompting + API-defined action space (VipeeGPT) -
SCA-LLM arXiv 2025 Spectral-attentive LLM world model for sense-predict-plan agentic communications -
Autonomous O-RAN Agentic AI arXiv 2026 Multi-scale LLM + SLM + WPFM agents across Non-RT / Near-RT RIC / DU -
AgentRAN arXiv 2025 Self-organizing hierarchy of LLM agents decomposing intents across timescales (sub-ms to min), spatial domains, and protocol layers; AI-RAN Factory continuously synthesizes new agents from operational data; live 5G validation -
MX-AI arXiv 2025 Five-agent graph (planner / monitor / policy-synthesizer / validator / executor) at SMO R1 interface for live AI-RAN observability and slice reconfiguration; H2A natural-language interface -

2.3 Environment-Driven

Building agent capability through closed-loop interaction with network simulators, emulators, or digital twins. Capability comes from environmental feedback and iterative refinement.

Paper Venue Method Code
GenOnet IEEE 6GNet 2024 Multi-agent NL-to-ns-3 code generation with RAG GitHub
Generative 6G Sim IEEE ICC 2025 Extended GenOnet for 5G/6G with 5G-LENA validation GitHub
6GAgentGym arXiv 2026 42 typed tools + NS-3 calibrated env + SFT/RL closed-loop training, 8B matches GPT-5 -
AutoRAN IEEE TMC 2025 Cloud-native + LLM intent parsing for zero-touch Open RAN deployment and testing -

3. How to Scale?

Ch3 aligns with Ch2: scaling data for Data-Driven, scaling scaffold for Scaffold-Driven, and scaling interaction for Environment-Driven. Papers are grouped into two tiers: 🌐 applied in networking, and 🔷 SOTA methods from other domains transferable to networking.

3.1 Scaling with Data Synthesis

Data synthesis generates training trajectories at scale without human annotation, addressing the data scarcity bottleneck for Data-Driven approaches.

🌐 In Network Engineering

Paper Venue Method Code
6GAgentGym arXiv 2026 6G-Forge: Self-Instruct with execution verification for network tasks -
NetArena ICLR 2026 Dynamic query generation for network benchmarks GitHub
TSLAM-Mini arXiv 2025 100K-sample telecom instruction dataset via DigiTwin simulation + RFC ingestion pipeline across 20 use-cases for QLoRA fine-tuning -
Think Less Label Better arXiv 2025 KG-grounded QA pair synthesis via HippoRAG retrieval, base generation and refinement -

🔷 Transferable SOTA Methods

Paper Venue Method Code
AgentTrek ICLR 2025 Spotlight Tutorial-guided trajectory replay at $0.55/trajectory GitHub
Explorer ACL 2025 Multi-agent exploration producing 94K+ trajectories at $0.28/each GitHub
AWM arXiv 2026 Synthetic env generation: 1000 envs, 35K tools, SQL-backed state GitHub
MATRIX ACL 2025 Multi-agent social simulation for post-training data synthesis GitHub
LRAT arXiv 2026 Learning to retrieve from agent trajectories as supervision -
DataMind arXiv 2025 Fine-grained task synthesis + knowledge-enhanced trajectory sampling -
OpenResearcher arXiv 2026 97K+ deep research trajectories from offline corpus -
ClawBench arXiv 2026 153 everyday tasks on 144 production websites -
MC-Search arXiv 2026 Step-annotated multimodal search benchmark + process alignment -
REDSearcher arXiv 2026 KG-grounded multi-hop task synthesis: Wikidata subgraph sampling with complexity/dispersion controls + local simulated search environment -
LMM-Searcher arXiv 2026 KG-skeleton cross-modal multi-hop synthesis: images bound to entities; 12K filtered long-horizon trajectories -
ExpSeek arXiv 2026 Experience-seeking data synthesis for agent training -
TOUCAN arXiv 2025 1.5M multi-tool multi-turn trajectories from ~500 real MCP servers spanning 2,000+ tools with execution verification GitHub
APIGen-MT arXiv 2025 Committee-reviewed task blueprints + POMDP-style agent-human interplay for verified multi-turn trajectories -
AgentScaler NeurIPS 2025 Database-backed tool graphs with API community detection and two-phase foundational + domain-specialized fine-tuning GitHub
Self-Challenging Agents NeurIPS 2025 Self-Challenging framework featuring a Challenger generating Code-as-Task formulations with verifiers, and an Executor applying RL on these self-synthesized tasks -

3.2 Scaling with Scaffold

Scaffold scaling enriches frozen-model agent frameworks with memory, skills, and tools, amplifying Scaffold-Driven capabilities without retraining.

3.2.1 Memory

🌐 In Network Engineering

Paper Venue Method Code
TelecomRAG SIGCOMM CCR 2025 RAG optimized for 3GPP Release 16/18 documents -
Telco-RAG Globecom 2024 Dual-stage RAG with custom telecom glossary GitHub
ReLLM arXiv 2025 RAG-empowered LLM for dynamic radio resource management in O-RAN -
TelcoAI IJCNLP-AACL 2025 Agentic multi-modal RAG over 3GPP specs with section-aware chunking, structured query planning, and text+diagram fusion -
6G RAN Compliance Agent arXiv 2025 LLM agents + RAG over O-RAN Alliance and 3GPP standards for explainable compliance audit and remediation -

🔷 Transferable SOTA Methods

Paper Venue Method Code
A-MEM NeurIPS 2025 Zettelkasten-style self-organizing memory with dynamic indexing GitHub
MemRL arXiv 2026 Episodic memory + Q-value retrieval, runtime self-improvement without retraining GitHub
AgeMem arXiv 2026 Unified memory operations as tools, trained via 3-stage progressive RL -
EvolveR arXiv 2025 Self-distillation of trajectories into reusable strategic principles -
Omni-SimpleMem arXiv 2026 Simplified unified memory management for LLM agents -
A-RAG arXiv 2026 Agentic RAG with adaptive memory -
GAM arXiv 2026 Two-tier graph memory: global Topic Associative Network over local Event Progression Graphs with top-down retrieval -
ACON arXiv 2025 Natural-language compression guidelines learned by contrasting success/failure trajectories, 26–54% peak-token reduction GitHub

3.2.2 Skills

🌐 In Network Engineering

Paper Venue Method Code
KubeIntellect arXiv 2025 Supervisor-orchestrated K8s agent featuring a Code Generator Agent that dynamically synthesizes and registers reusable tools GitHub
SkillForge arXiv 2026 Domain-Contextualized Skill Creator + three-stage self-evolution pipeline refining agent skills from execution failures across 1,883 cloud support tickets -

🔷 Transferable SOTA Methods

Paper Venue Method Code
Voyager NeurIPS 2023 First LLM agent with ever-growing executable skill library GitHub
SkillRL arXiv 2026 Hierarchical skill bank with recursive skill evolution via RL GitHub
SAGE arXiv 2025 Skill-Augmented GRPO, 8.9% higher goal completion, 59% fewer tokens -
PAE arXiv 2024 Autonomous skill discovery with VLM-based success evaluation GitHub
SkillWeaver arXiv 2025 Web agents self-discover skills and distill into transferable APIs -
Agentic Proposing arXiv 2026 Compositional skill synthesis for training data generation -
AgentSkillOS arXiv 2026 Capability tree + DAG orchestration at 200-200K skill scale -
SkillsBench arXiv 2026 Benchmark for evaluating agent skill capabilities -
SkillNet arXiv 2026 Network-structured skill organization and composition -
Trace2Skill arXiv 2026 Distilling agent trajectories into reusable skills -
XSkill arXiv 2026 Continual learning for skill accumulation -
PolySkill arXiv 2025 Polymorphic skill representation for diverse tasks -
GEMS arXiv 2026 Multimodal agent skill generation and management -
SKILL0 arXiv 2026 Zero-shot skill acquisition from demonstrations -
SkillX arXiv 2026 Cross-domain skill transfer for LLM agents -
OmniGAIA arXiv 2026 Self-evolving agent via generative adversarial skill improvement -
MACLA AAMAS 2026 Hierarchical procedural memory with Bayesian reliability tracking; 2,851 trajectories distilled into 187 procedures GitHub
CoEvoSkills arXiv 2026 Skill Generator co-evolves with a Surrogate Verifier to provide actionable feedback without access to ground-truth test content GitHub
SoK Agentic Skills arXiv 2026 Skill lifecycle model and dual taxonomies + supply-chain threat model with ~1,200 malicious-skill ClawHavoc case study -
Skill-Usage arXiv 2026 In-the-wild skill retrieval and query-specific refinement evaluation over 34K community skills GitHub

3.2.3 Tools

🌐 In Network Engineering

Paper Venue Method Code
Confucius SIGCOMM 2025 60+ network management tools integrated via multi-agent LLM -
WirelessAgent arXiv 2024 Four-module cognitive architecture with external knowledge base GitHub
BLAST arXiv 2026 LLM agents + blockchain for autonomous spectrum trading -
Intent-LLM IEEE TCCN 2025 API-defined action space constraining agent to valid operations -
NetMCP arXiv 2025 SONAR: an MCP tool routing algorithm that jointly optimizes semantic similarity and real-time network QoS metrics for adaptive tool selection GitHub

🔷 Transferable SOTA Methods

Paper Venue Method Code
DeepAgent WWW 2026 Oral Autonomous tool discovery over 16K+ APIs with Memory Folding GitHub
EnvScaler arXiv 2026 Programmatic synthesis of 191 tool-interaction environments GitHub
VerlTool arXiv 2025 Modular agentic RL framework for multi-modal tool use (code, search, SQL) -
ToolGen ICLR 2025 Per-tool virtual tokens unify retrieval and calling as single generation step, scaling to 47,000+ tools without retriever GitHub
ToolRL NeurIPS 2025 Principled reward design for tool-use RL with GRPO, +15% over SFT and +17% over base GitHub
Chain-of-Tools arXiv 2025 Frozen-LLM semantic tool vectors for ICL-prompted CoT reasoning over massive pools of unseen tools GitHub

3.3 Scaling with Agentic RL

Agentic RL scales Environment-Driven approaches by training agent policies through multi-turn interaction with environments, using verifiable rewards from execution outcomes.

🌐 In Network Engineering

Paper Venue Method Code
ComAgent arXiv 2026 Multi-LLM closed-loop for wireless beamforming optimization GitHub
ORAN-GUIDE arXiv 2025 Dual-LLM + RAG-enhanced multi-agent RL for O-RAN slicing -
6GAgentGym arXiv 2026 SFT + RL closed-loop in network env, 8B matches GPT-5 -
6G IoT LLM PHY arXiv 2026 Dual-LLM loop: optimization-LLM refines prompts, agent-LLM solves PHY tasks -
QoE-Slice Agent arXiv 2025 RAG-driven intent inference + QAPPO slice orchestrator + incremental memory for QoE-reward-shaped Industrial IoT slicing -
PA-MRL arXiv 2025 Prompt-Augmented Multi-agent RL with learnable prompts over ORANSight for dynamic O-RAN slicing -
LLM-DTNet arXiv 2025 Hierarchical multi-layer digital twin framework with LLM orchestration and reinforcement learning for 6G radio resource allocation -

🔷 Transferable SOTA Methods

Paper Venue Method Code
ARPO ICLR 2026 Entropy-balanced RL for multi-turn tool-calling agents GitHub
RAGEN arXiv 2025 StarPO framework + reasoning collapse diagnostics GitHub
Agentic RL Survey TMLR 2026 Comprehensive survey of 500+ works on RL for LLM agents List
DGO arXiv 2026 Dual guidance: external experience + internalized knowledge for RL -
EAGLET arXiv 2025 Global planner training via consensus filtering + capability-gain reward -
RLAnything arXiv 2026 Universal RL framework for arbitrary agent environments -
JudgeRLVR arXiv 2026 Judge-based reward verification for agentic RL -
GSPO arXiv 2025 Group-step policy optimization for multi-turn agents -
ArenaRL arXiv 2026 Arena-based competitive RL for agent self-play -
Soft Adaptive PO arXiv 2025 Soft adaptive policy optimization for stable agent training -
DAPO arXiv 2025 Decoupled-Clip + Dynamic-Sampling PO with Clip-Higher, token-level PG loss, and overlong reward shaping at 32B scale GitHub
REINFORCE++ arXiv 2025 Critic-free RLHF with global-batch advantage normalization debiasing the prompt-local GRPO estimator -
ToRL arXiv 2025 Tool-integrated RL from base LLMs with rule-based rewards; emergent tool invocation without prior SFT GitHub
OPRL arXiv 2025 Alternating implicit PRM and policy via trajectory-level DPO for dense step-wise rewards + episode advantages -

4. How to Evaluate?

4.1 Static Benchmarks

Fixed test sets for reproducible evaluation.

Benchmark Venue Tasks Scale
NetLLMBench IEEE 2025 BGP/OSPF/static route config Fixed configs
SWE-Bench 5G Preprint 2026 AI coding agents for 5G core network bug fixing 210 tasks from free5GC, Open5GS, and Magma
NIKA SIGCOMM NetObs Workshop 2025 Fault diagnosis Kathará playground + chaos engineering; standardized agent–env API; trajectory logging (repo)
SIMCODE arXiv 2025 NL to ns-3 code generation 400 tasks, 3 levels
NetConfEval CoNEXT 2024 4 config tasks, runner-up best paper GitHub
WirelessBench arXiv 2026 Tolerance-aware, 3392 items, 3 cognitive tiers GitHub
PeeringLLM-Bench AINTEC 2025 NL-to-BGP config translation, multi-vendor syntax Multi-peer, multi-vendor topologies
TeleQnA arXiv 2023 Telecom knowledge QA over 3GPP standards and research papers 10,000 MCQs
TelBench EMNLP-Industry 2024 Telco-specific LLM knowledge and operations Multi-task telco suite
TelAgentBench EMNLP-Industry 2025 Reasoning / planning / action / IF / RAG for Korean telecom 5-capability agent suite
TeleTables arXiv 2026 Table interpretation in 3GPP technical specifications 3GPP table corpus

4.2 Dynamic Benchmarks

Runtime-generated queries to avoid data contamination.

Benchmark Venue Tasks Key Feature
NetArena ICLR 2026 Route, MALT, K8s Dynamic query generation, A2A protocol, 3-metric evaluation
6GAgentGym arXiv 2026 6G network management 42 tools, NS-3 calibrated env, closed-loop RL
TelcoAgent-Bench arXiv 2026 Multilingual telecom troubleshooting Process correctness, tool alignment, blueprint stability
WirelessAgent++ arXiv 2026 Wireless agent workflow design and evaluation Automated agentic workflow generation
Continual NetOps Bench SIGCOMM 2025 Networking operations continual evaluation Continual benchmark generation

5. Future Directions

5.1 Standardized Benchmarking and Evaluation

The network engineering agent community lacks unified evaluation protocols. Existing benchmarks cover narrow slices of the task landscape: NetArena evaluates routing, capacity planning, and K8s tasks with dynamic query generation; NetLLMBench and LLM4NetLab target static routing configuration and fault diagnosis. However, no benchmark spans the full Configuration-Optimization-Operations spectrum, and wireless optimization tasks remain entirely uncovered. Standardized evaluation must also go beyond correctness to include safety (will the agent break the network?), efficiency (token and latency cost), and generalization (cross-topology, cross-vendor transfer). The SWE agent community offers a blueprint: SWE-Bench evolved through Lite, Verified, Mobile, and BeyondSWE variants, each addressing a specific evaluation gap.

Paper Venue Relevance
NetArena ICLR 2026 Dynamic benchmark generation with correctness + safety + latency metrics
BeyondSWE arXiv 2026 Cross-repo and domain-specific evaluation as a model for network benchmarks

5.2 Long-Horizon Network Tasks

Current network agent benchmarks focus on single-step or short-horizon tasks: fix one routing error, add one node, configure one policy. Real-world network operations involve long-horizon, multi-step reasoning: a capacity upgrade requires topology assessment, device procurement planning, staged migration, traffic rerouting, validation, and rollback preparation. Agents must maintain coherent plans across dozens of interaction steps, recover from intermediate failures, and coordinate across multiple NFs. A central obstacle is context bloat: logs, configs, topology diagrams, and dashboard screenshots accumulate quickly and saturate the context window, forcing agents to drop critical state. Long-horizon task design for network agents remains an open challenge.

Paper Venue Relevance
LMM-Searcher arXiv 2026 File-mapping offloads visual assets to external storage with UID references; sustains 100+ interaction rounds — transferable blueprint for network agents juggling heterogeneous long-horizon evidence
MC-Search ICLR 2026 3,333-sample benchmark with step-annotated multi-hop chains (avg 3.7 hops, 5 topologies); introduces process-level metrics (step-hit, rolling deviation) to diagnose where long reasoning fails — blueprint for evaluating long-horizon network agents beyond end-answer accuracy

5.3 Computational Efficiency and Real-Time Performance

Network operations often require real-time or near-real-time responses. A fault diagnosis agent that takes 30 seconds to reason is impractical when SLA violations accumulate at millisecond granularity. Current LLM agents rely on frontier models (GPT-4, Claude) with high latency and cost. Deploying efficient, small-footprint models at the network edge is essential for practical adoption. Recent advances in edge-optimized models such as Gemma 4 demonstrate that competitive reasoning can be achieved within tight compute budgets, opening the door for on-device network agents deployed alongside network functions. A critical reframing comes from AgentCPM-Explore: for 4B-scale agents, the bottleneck is reasoning stability, not capability ceiling — Pass@64 on GAIA reaches 97.09%, proving the model can solve complex tasks but is held back by variance from catastrophic forgetting during SFT, reward-noise sensitivity during RL, and context pollution during inference. For edge network agents, this shifts the research agenda from "shrink the model" to "stabilize the trajectory" (parameter fusion, reward denoising, context refining).

Paper Venue Relevance
AgentCPM-Explore arXiv 2026 4B edge agent matches 32B baselines on GAIA (63.9%) by targeting reasoning stability instead of capacity — DELLA weight fusion, three-layer reward-signal denoising, and dual-loop context refining; Pass@64=97.09% demonstrates the capability is latent, variance is the true bottleneck

5.4 Omni-Modal Network Engineering Agents

Existing network agents operate primarily on text: CLI output, configuration files, log messages. Real network operations involve diverse modalities: topology diagrams, signal heatmaps, spectrum waterfalls, time-series metrics dashboards, and even physical site photographs. An omni-modal network agent would perceive and reason across all these modalities, combining visual understanding of network dashboards with textual analysis of logs and structured reasoning over topology graphs.

Paper Venue Relevance
OmniGAIA arXiv 2026 Self-evolving omni-modal agent architecture

5.5 World Models for Network Agents

World models enable agents to predict the consequences of actions before executing them, reducing costly trial-and-error in real network environments. A network world model would internalize how configurations propagate through topologies, how traffic patterns respond to policy changes, and how faults cascade across interconnected NFs. Such models could enable agents to simulate "what-if" scenarios before committing changes to production networks. Going further, recent work argues for wiring reflective planning inside the world model: a PlanAgent decomposes intent into ordered sub-actions, a CriticAgent scores each rollout, and inner/outer loops either locally refine or globally re-plan. For networking, this turns the world model from a passive predictor into an active safety interlock that rejects infeasible action chains before any change touches the live topology.

Paper Venue Relevance
World Model Framework arXiv 2026 Normative framework integrating interaction, perception, reasoning, and spatial representation
SPIRAL arXiv 2026 Closed-loop think–act–reflect world model; PlanAgent decomposes intent, CriticAgent scores rollouts on 5 axes, inner/outer loops locally refine or globally re-plan — reflective-planning blueprint transferable to network agents as a pre-deployment safety interlock

5.6 Semantic-Aware Communication-Control Co-Design

Semantic communication is becoming increasingly important as future communication networks move beyond bit-level delivery toward task-relevant information delivery. This creates a new optimization frontier for network engineering agents: instead of optimizing links solely for throughput, delay, or packet delivery, agents should reason about how communication decisions affect downstream control and actuation quality. In this setting, a network engineering agent may need to observe network and task state, generate actions such as semantic compression, scheduling, power allocation, or policy adjustment, execute them in the network environment, and verify both communication and control outcomes. This makes semantic-aware communication-control co-design a relevant emerging direction for AI agents that autonomously configure, optimize, and operate communication networks.

Paper Venue Relevance
Wireless Agentic AI with Retrieval-Augmented Multimodal Semantic Perception IEEE Communications Magazine 2026 Connects wireless semantic communication with LLM-enabled agentic AI, multimodal perception, multi-agent collaboration, and DRL-based bandwidth-aware semantic scheduling
Semantic-Aware Resource Management for C-V2X Platooning via Multi-Agent Reinforcement Learning arXiv 2025 Shows how semantic-aware wireless resource allocation can be coupled with cooperative control scenarios using MARL in connected autonomous driving

Contributing

We welcome contributions! Please see CONTRIBUTING.md for guidelines.

To add a paper:

  1. Find the appropriate section
  2. Add an entry with: title, venue, year, and a one-line description
  3. Submit a pull request

Citation

If you find this resource useful, please cite:

@misc{awesome-network-engineering-agent,
  title={Awesome Network Engineering Agent},
  author={tenderzada and contributors},
  year={2026},
  url={https://github.com/tenderzada/awesome-network-engineering-agent}
}

Star History

Star History Chart

About

No description, website, or topics provided.

Resources

Contributing

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors