Sync from GitHub 8507592
Browse files- README.md +13 -19
- data/resources.csv +0 -0
- data/resources.jsonl +0 -0
README.md
CHANGED
|
@@ -1,27 +1,19 @@
|
|
| 1 |
---
|
| 2 |
license: cc0-1.0
|
| 3 |
language:
|
| 4 |
-
- en
|
| 5 |
-
pretty_name: Awesome Loop Engineering
|
| 6 |
tags:
|
| 7 |
-
-
|
| 8 |
-
-
|
| 9 |
-
-
|
| 10 |
-
-
|
| 11 |
-
-
|
| 12 |
-
- agentic-workflows
|
| 13 |
-
- awesome-list
|
| 14 |
-
- software-engineering
|
| 15 |
-
- llm-agents
|
| 16 |
configs:
|
| 17 |
-
- config_name: resources
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
- config_name: source_audit
|
| 22 |
-
data_files:
|
| 23 |
-
- split: train
|
| 24 |
-
path: data/resource_source_audit.csv
|
| 25 |
---
|
| 26 |
|
| 27 |
<p align="center">
|
|
@@ -455,6 +447,7 @@ These resources include harness and observability mechanisms that loops compose
|
|
| 455 |
- 🧰 **Tool** [Weave](https://docs.wandb.ai/weave) - Weights & Biases toolkit for tracing, evaluating, and monitoring agent applications over time.
|
| 456 |
- 📄 **Paper** [Agentic Verification of Software Systems](https://arxiv.org/abs/2511.17330) - Pairs a coding agent with a theorem prover (AutoRocq) in a generate-and-validate loop, turning formal proof into the exit gate for trusted automatic programming.
|
| 457 |
- 📄 **Paper** [Agentic Harness Engineering: Observability-Driven Automatic Evolution of Coding-Agent Harnesses](https://arxiv.org/abs/2604.25850) - A closed loop that turns each harness edit into a falsifiable contract verified against trajectory outcomes, so the harness evolves from observability instead of trial and error.
|
|
|
|
| 458 |
|
| 459 |
## Securing Unattended Loops
|
| 460 |
|
|
@@ -508,6 +501,7 @@ This section focuses on durable loop state and cross-run context. For context-wi
|
|
| 508 |
- 📄 **Paper** [From Agent Loops to Structured Graphs: A Scheduler-Theoretic Framework for LLM Agent Execution](https://arxiv.org/abs/2604.11378) - Replaces opaque agent loops with immutable plan-version DAGs and a planning-execution-recovery split, giving inspectable scheduling, deterministic recovery, escalation, and termination guarantees.
|
| 509 |
- 🧰 **Tool** [Eve](https://github.com/vercel/eve) - Vercel's TypeScript-native agent framework with durable execution, sandboxed compute, and OpenTelemetry tracing built in, so recurring agent work persists, replays, and is observable across runs by default.
|
| 510 |
- 📄 **Paper** [Verified Multi-Agent Orchestration: A Plan-Execute-Verify-Replan Framework](https://arxiv.org/abs/2603.11445) - Decomposes work into a dependency-aware DAG, runs domain agents in parallel, and uses an LLM verifier to drive adaptive replanning with configurable stop conditions, the verify-and-replan core of a reliable loop.
|
|
|
|
| 511 |
|
| 512 |
## Benchmarks And Evaluation
|
| 513 |
|
|
|
|
| 1 |
---
|
| 2 |
license: cc0-1.0
|
| 3 |
language:
|
| 4 |
+
- en
|
| 5 |
+
pretty_name: Awesome Loop Engineering
|
| 6 |
tags:
|
| 7 |
+
- loop-engineering
|
| 8 |
+
- ai-agents
|
| 9 |
+
- coding-agents
|
| 10 |
+
- agentic-workflows
|
| 11 |
+
- awesome-list
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
configs:
|
| 13 |
+
- config_name: resources
|
| 14 |
+
data_files:
|
| 15 |
+
- split: train
|
| 16 |
+
path: data/resources.jsonl
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
---
|
| 18 |
|
| 19 |
<p align="center">
|
|
|
|
| 447 |
- 🧰 **Tool** [Weave](https://docs.wandb.ai/weave) - Weights & Biases toolkit for tracing, evaluating, and monitoring agent applications over time.
|
| 448 |
- 📄 **Paper** [Agentic Verification of Software Systems](https://arxiv.org/abs/2511.17330) - Pairs a coding agent with a theorem prover (AutoRocq) in a generate-and-validate loop, turning formal proof into the exit gate for trusted automatic programming.
|
| 449 |
- 📄 **Paper** [Agentic Harness Engineering: Observability-Driven Automatic Evolution of Coding-Agent Harnesses](https://arxiv.org/abs/2604.25850) - A closed loop that turns each harness edit into a falsifiable contract verified against trajectory outcomes, so the harness evolves from observability instead of trial and error.
|
| 450 |
+
- 📄 **Paper** [A Trace-Based Assurance Framework for Agentic AI Orchestration: Contracts, Testing, and Governance](https://arxiv.org/abs/2603.18096) - Treats execution traces as the assurance substrate, pairing machine-checkable contracts, testing, and governance so recurring agent orchestration stays verifiable and auditable.
|
| 451 |
|
| 452 |
## Securing Unattended Loops
|
| 453 |
|
|
|
|
| 501 |
- 📄 **Paper** [From Agent Loops to Structured Graphs: A Scheduler-Theoretic Framework for LLM Agent Execution](https://arxiv.org/abs/2604.11378) - Replaces opaque agent loops with immutable plan-version DAGs and a planning-execution-recovery split, giving inspectable scheduling, deterministic recovery, escalation, and termination guarantees.
|
| 502 |
- 🧰 **Tool** [Eve](https://github.com/vercel/eve) - Vercel's TypeScript-native agent framework with durable execution, sandboxed compute, and OpenTelemetry tracing built in, so recurring agent work persists, replays, and is observable across runs by default.
|
| 503 |
- 📄 **Paper** [Verified Multi-Agent Orchestration: A Plan-Execute-Verify-Replan Framework](https://arxiv.org/abs/2603.11445) - Decomposes work into a dependency-aware DAG, runs domain agents in parallel, and uses an LLM verifier to drive adaptive replanning with configurable stop conditions, the verify-and-replan core of a reliable loop.
|
| 504 |
+
- 📄 **Paper** [From Static Templates to Dynamic Runtime Graphs: A Survey of Workflow Optimization for LLM Agents](https://arxiv.org/abs/2603.22386) - Organizes how agent workflows are fixed ahead of time or generated and revised per run, and which evaluation signals drive that choice, a map of the design space for recurring loops.
|
| 505 |
|
| 506 |
## Benchmarks And Evaluation
|
| 507 |
|
data/resources.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/resources.jsonl
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|