Release v0.8.0: map model recurrence to governed operations
Browse files- .gitignore +2 -0
- CITATION.bib +1 -1
- CITATION.cff +1 -1
- COMPARISON.md +8 -0
- CONTRIBUTING.md +2 -2
- DEFINITION.md +2 -0
- FUTURE-DIRECTIONS.md +17 -0
- README.de.md +2 -2
- README.es.md +2 -2
- README.fr.md +2 -2
- README.ja.md +2 -2
- README.ko.md +2 -2
- README.md +11 -5
- README.pt-BR.md +2 -2
- README.zh-CN.md +2 -2
- TAXONOMY.md +12 -1
- assets/social-preview.png +2 -2
- data/README.md +9 -4
- data/arxiv_publication_audit.csv +10 -0
- data/first_seen.json +25 -1
- data/resource_source_audit.csv +0 -0
- data/resources.csv +0 -0
- data/resources.jsonl +0 -0
- data/resources.parquet +2 -2
- design-qa.md +8 -6
- docs/assets/resources.json +0 -0
- docs/assets/social-preview-555-v07.png +3 -0
- docs/assets/social-preview-579-v08.png +3 -0
- docs/assets/social-preview.png +2 -2
- docs/index.html +94 -21
- docs/x-v07-555.html +44 -0
- docs/x-v08-579.html +44 -0
- meta/CURATION.md +3 -0
- meta/DISTRIBUTION.md +14 -13
- meta/OUTREACH.md +1 -1
- meta/hf_card_body.md +7 -1
- meta/social-preview.html +3 -3
- posts/launch.md +20 -22
- posts/launch.zh-CN.md +19 -21
- scripts/audit_resource_sources.py +111 -0
- scripts/check_project_consistency.py +85 -1
- scripts/check_publication_metadata.py +2 -2
- scripts/export_resource_dataset.py +123 -6
- scripts/render_readme_tables.py +60 -6
- scripts/resolve_arxiv_publications.py +7 -1
.gitignore
CHANGED
|
@@ -1,2 +1,4 @@
|
|
| 1 |
__pycache__/
|
| 2 |
*.py[cod]
|
|
|
|
|
|
|
|
|
| 1 |
__pycache__/
|
| 2 |
*.py[cod]
|
| 3 |
+
output/
|
| 4 |
+
.playwright-cli/
|
CITATION.bib
CHANGED
|
@@ -3,5 +3,5 @@
|
|
| 3 |
title = {Awesome Loop Engineering},
|
| 4 |
year = {2026},
|
| 5 |
howpublished = {\url{https://github.com/ChaoYue0307/awesome-loop-engineering}},
|
| 6 |
-
note = {Curated resources for Loop Engineering, version 0.
|
| 7 |
}
|
|
|
|
| 3 |
title = {Awesome Loop Engineering},
|
| 4 |
year = {2026},
|
| 5 |
howpublished = {\url{https://github.com/ChaoYue0307/awesome-loop-engineering}},
|
| 6 |
+
note = {Curated resources for Loop Engineering, version 0.8.0}
|
| 7 |
}
|
CITATION.cff
CHANGED
|
@@ -2,7 +2,7 @@ cff-version: 1.2.0
|
|
| 2 |
message: "If this repository is useful in your work, please cite it as below."
|
| 3 |
title: "Awesome Loop Engineering"
|
| 4 |
type: software
|
| 5 |
-
version: 0.
|
| 6 |
date-released: 2026-07-18
|
| 7 |
authors:
|
| 8 |
- family-names: "He"
|
|
|
|
| 2 |
message: "If this repository is useful in your work, please cite it as below."
|
| 3 |
title: "Awesome Loop Engineering"
|
| 4 |
type: software
|
| 5 |
+
version: 0.8.0
|
| 6 |
date-released: 2026-07-18
|
| 7 |
authors:
|
| 8 |
- family-names: "He"
|
COMPARISON.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
| 2 |
|
| 3 |
Loop Engineering is easiest to understand by separating it from nearby practices.
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
## Prompt Engineering vs Loop Engineering
|
| 6 |
|
| 7 |
**Prompt Engineering** asks: what should I say to the model now?
|
|
|
|
| 2 |
|
| 3 |
Loop Engineering is easiest to understand by separating it from nearby practices.
|
| 4 |
|
| 5 |
+
## Model-Level Recurrence vs Loop Engineering
|
| 6 |
+
|
| 7 |
+
**Model-level recurrence** repeats a learned layer, block, module, or latent-state update inside one model inference. It can provide adaptive depth, latent reasoning, parameter sharing, or iterative world-state refinement.
|
| 8 |
+
|
| 9 |
+
**Loop Engineering** governs repeated agent work outside the model: what triggers a run, which work enters, what tools and permissions apply, what external evidence gates progress, what state survives, and when the system retries, escalates, or stops.
|
| 10 |
+
|
| 11 |
+
A looped Transformer, recurrent-depth language model, or LoopWM can be the model inside an agent loop. It does not replace the Loop Contract because hidden-state iteration alone does not provide durable receipts, independent verification, permission boundaries, or accountable human handoff.
|
| 12 |
+
|
| 13 |
## Prompt Engineering vs Loop Engineering
|
| 14 |
|
| 15 |
**Prompt Engineering** asks: what should I say to the model now?
|
CONTRIBUTING.md
CHANGED
|
@@ -28,10 +28,10 @@ For an inaccurate summary, contribution, novelty, impact, authorship, date, venu
|
|
| 28 |
1. Add one metadata-rich row with a resource type label, verified year/source context, and one specific key feature:
|
| 29 |
|
| 30 |
```md
|
| 31 |
-
| 📄 **[Title](https://example.com)**<br><sub>Paper</sub> | **2026** · arXiv<br><sub>First Author et al.</sub> | One sentence explaining the resource's contribution to Loop Engineering. |
|
| 32 |
```
|
| 33 |
|
| 34 |
-
When a source exposes no reliable publication date, omit the year and keep only the original venue or publishing platform. Do not infer a date from a search-result snippet. Maintainers regenerate the table layout and structured exports after review.
|
| 35 |
|
| 36 |
1. Open a PR using the template and explain:
|
| 37 |
- why the resource belongs;
|
|
|
|
| 28 |
1. Add one metadata-rich row with a resource type label, verified year/source context, and one specific key feature:
|
| 29 |
|
| 30 |
```md
|
| 31 |
+
| 📄 **[Title](https://example.com)**<br><sub>Paper</sub> | **2026** · arXiv<br><sub>First Author et al.</sub> | One sentence explaining the resource's contribution to Loop Engineering. | **Tier A** · Research preprint<br><sub>Preprint; inspect methods and evaluation</sub> |
|
| 32 |
```
|
| 33 |
|
| 34 |
+
When a source exposes no reliable publication date, omit the year and keep only the original venue or publishing platform. Do not infer a date from a search-result snippet. Maintainers derive the evidence tier from the audited source class and regenerate the table layout and structured exports after review.
|
| 35 |
|
| 36 |
1. Open a PR using the template and explain:
|
| 37 |
- why the resource belongs;
|
DEFINITION.md
CHANGED
|
@@ -10,6 +10,8 @@ Use this definition to scope a system, review a design, or cite the concept cons
|
|
| 10 |
|
| 11 |
Prompt engineering improves what you ask the model, context engineering improves what the model can see, harness engineering improves the environment around one agent run, and Loop Engineering governs repeated agent work over time.
|
| 12 |
|
|
|
|
|
|
|
| 13 |
## Longer Definition
|
| 14 |
|
| 15 |
Loop Engineering connects prompt, context, and harness decisions across runs. It replaces turn-by-turn human steering with a reviewable operating contract: what starts the loop, where work comes from, which agents act, what they can access, how evidence gates results, what state survives, how retries are bounded, and when a human takes over.
|
|
|
|
| 10 |
|
| 11 |
Prompt engineering improves what you ask the model, context engineering improves what the model can see, harness engineering improves the environment around one agent run, and Loop Engineering governs repeated agent work over time.
|
| 12 |
|
| 13 |
+
Model-level recurrence is a complementary architecture choice: shared learned computation may repeat inside one inference, while Loop Engineering governs how that model participates in recurring work across runs.
|
| 14 |
+
|
| 15 |
## Longer Definition
|
| 16 |
|
| 17 |
Loop Engineering connects prompt, context, and harness decisions across runs. It replaces turn-by-turn human steering with a reviewable operating contract: what starts the loop, where work comes from, which agents act, what they can access, how evidence gates results, what state survives, how retries are bounded, and when a human takes over.
|
FUTURE-DIRECTIONS.md
CHANGED
|
@@ -60,6 +60,23 @@ Every study or operating report should include:
|
|
| 60 |
- raw per-run outcomes plus the script that produces aggregate tables;
|
| 61 |
- privacy, licensing, and redaction decisions for data that cannot be public.
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
## Priority Map
|
| 64 |
|
| 65 |
The tiers describe dependency order, not prestige. Establish trustworthy state transitions before optimizing complex delegation.
|
|
|
|
| 60 |
- raw per-run outcomes plus the script that produces aggregate tables;
|
| 61 |
- privacy, licensing, and redaction decisions for data that cannot be public.
|
| 62 |
|
| 63 |
+
## Cross-Layer Study: Model Recurrence And Operational Loops
|
| 64 |
+
|
| 65 |
+
Model recurrence and operational recurrence spend compute at different boundaries. A looped model repeats learned computation inside one inference; an operational loop repeats model calls, tool actions, verification, and state transitions around a real task. Treating both simply as "more test-time compute" hides different costs, stopping rules, evidence, and failure modes.
|
| 66 |
+
|
| 67 |
+
Use a matched cross-layer study to decide where an additional unit of compute belongs:
|
| 68 |
+
|
| 69 |
+
| Question | Compare | Hold fixed | Report |
|
| 70 |
+
| --- | --- | --- | --- |
|
| 71 |
+
| **Where does another pass help?** | More recurrent depth inside one call vs another evidence-aware agent pass | Task set, model family where possible, tool access, verifier, and total compute or cost | Verified completion, false completion, latency, cost, and gain by task difficulty |
|
| 72 |
+
| **Who should stop the iteration?** | Fixed depth, learned halting, confidence-based stopping, external verification, and human escalation | Acceptance policy and maximum budget | Calibration, premature stops, wasted passes, budget breaches, and escalation quality |
|
| 73 |
+
| **What state should survive?** | Hidden-state refinement, visible reasoning state, and durable external checkpoints | Initial context and task history | Resume fidelity, contamination, replayability, and diagnostic value after failure |
|
| 74 |
+
| **Can inner and outer loops cooperate?** | Standard model, looped model, operational loop, and looped model inside an operational loop | Harness, permissions, task intake, and evidence gate | Interaction effects, marginal value per pass, correlated failures, and the simplest Pareto-efficient configuration |
|
| 75 |
+
|
| 76 |
+
**Starter experiment:** choose 50 reasoning or coding tasks with deterministic checks. Compare a single standard inference, matched-cost internal recurrence, fixed external retry, and evidence-aware external retry. Then run the combined system only if each component shows independent value. Publish per-task compute, every stopping decision, verifier results, and failure traces.
|
| 77 |
+
|
| 78 |
+
**Completion gate:** the study identifies when internal recurrence replaces, complements, or fails to improve external iteration without crediting hidden-state depth for operational guarantees it does not provide. A useful result may show that one layer is unnecessary for a given workload.
|
| 79 |
+
|
| 80 |
## Priority Map
|
| 81 |
|
| 82 |
The tiers describe dependency order, not prestige. Establish trustworthy state transitions before optimizing complex delegation.
|
README.de.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -28,7 +28,7 @@ Ein Loop entdeckt Arbeit, übergibt sie an einen oder mehrere Agenten, prüft da
|
|
| 28 |
|
| 29 |
Loop Engineering umfasst wiederkehrende KI-Agenten- und Coding-Agent-Systeme mit expliziten Auslösern, Verifikation und dauerhaftem Zustand. Software-Event-Loops, Regelungstechnik, Growth Loops, generische Automatisierung und nicht-KI-bezogene Feedback-Loops gehören nicht dazu.
|
| 30 |
|
| 31 |
-
Starte mit
|
| 32 |
|
| 33 |
## Mentales Modell
|
| 34 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 28 |
|
| 29 |
Loop Engineering umfasst wiederkehrende KI-Agenten- und Coding-Agent-Systeme mit expliziten Auslösern, Verifikation und dauerhaftem Zustand. Software-Event-Loops, Regelungstechnik, Growth Loops, generische Automatisierung und nicht-KI-bezogene Feedback-Loops gehören nicht dazu.
|
| 30 |
|
| 31 |
+
Starte mit 579 geprüften Ressourcen, 20 operativen Loop-Patterns, 20 schemavalidierten Loop-Contracts und 8 Runtime-Startern (3 ausführbare Programme und 5 anpassbare Vorlagen), ergänzt durch eine Community-Galerie und 8 Sprachen.
|
| 32 |
|
| 33 |
## Mentales Modell
|
| 34 |
|
README.es.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -28,7 +28,7 @@ Un loop descubre trabajo, lo delega a uno o más agentes, verifica el resultado,
|
|
| 28 |
|
| 29 |
Loop Engineering abarca sistemas recurrentes de agentes de IA y coding agents con disparadores explícitos, verificación y estado duradero. No incluye event loops de software, teoría de control, growth loops, automatización genérica ni feedback loops no relacionados con IA.
|
| 30 |
|
| 31 |
-
Empieza con
|
| 32 |
|
| 33 |
## Modelo Mental
|
| 34 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 28 |
|
| 29 |
Loop Engineering abarca sistemas recurrentes de agentes de IA y coding agents con disparadores explícitos, verificación y estado duradero. No incluye event loops de software, teoría de control, growth loops, automatización genérica ni feedback loops no relacionados con IA.
|
| 30 |
|
| 31 |
+
Empieza con 579 recursos auditados, 20 patrones operativos, 20 loop contracts validados por esquema y 8 puntos de partida de runtime (3 ejecutables y 5 plantillas listas para adaptar), además de una galería comunitaria y 8 idiomas.
|
| 32 |
|
| 33 |
## Modelo Mental
|
| 34 |
|
README.fr.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -28,7 +28,7 @@ Un loop découvre du travail, le délègue à un ou plusieurs agents, vérifie l
|
|
| 28 |
|
| 29 |
Loop Engineering couvre les systèmes récurrents d'agents IA et de coding agents avec des déclencheurs explicites, une vérification et un état durable. Il n'inclut ni les event loops logiciels, ni la théorie du contrôle, ni les growth loops, ni l'automatisation générique, ni les feedback loops sans rapport avec l'IA.
|
| 30 |
|
| 31 |
-
Commencez avec
|
| 32 |
|
| 33 |
## Modèle Mental
|
| 34 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 28 |
|
| 29 |
Loop Engineering couvre les systèmes récurrents d'agents IA et de coding agents avec des déclencheurs explicites, une vérification et un état durable. Il n'inclut ni les event loops logiciels, ni la théorie du contrôle, ni les growth loops, ni l'automatisation générique, ni les feedback loops sans rapport avec l'IA.
|
| 30 |
|
| 31 |
+
Commencez avec 579 ressources auditées, 20 patterns opérationnels, 20 loop contracts validés par schéma et 8 points de départ d'exécution (3 exécutables et 5 modèles prêts à adapter), ainsi qu'une galerie communautaire et 8 langues.
|
| 32 |
|
| 33 |
## Modèle Mental
|
| 34 |
|
README.ja.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -28,7 +28,7 @@ Loop は作業を発見し、1 つ以上の agents に委任し、結果を確
|
|
| 28 |
|
| 29 |
Loop Engineering は、明示的なトリガー、検証、永続状態を備えた反復型 AI agent / coding agent システムを対象とします。software event loop、制御理論、growth loop、一般的な workflow automation、非 AI の feedback loop は含みません。
|
| 30 |
|
| 31 |
-
|
| 32 |
|
| 33 |
## メンタルモデル
|
| 34 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 28 |
|
| 29 |
Loop Engineering は、明示的なトリガー、検証、永続状態を備えた反復型 AI agent / coding agent システムを対象とします。software event loop、制御理論、growth loop、一般的な workflow automation、非 AI の feedback loop は含みません。
|
| 30 |
|
| 31 |
+
579 件の監査済みリソース、20 個の運用パターン、20 個の schema 検証済み loop contract、8 個の runtime starter(3 個の実行ファイルと 5 個の適応可能なテンプレート)から始められます。コミュニティ gallery と 8 言語の導入も利用できます。
|
| 32 |
|
| 33 |
## メンタルモデル
|
| 34 |
|
README.ko.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -28,7 +28,7 @@ Loop 는 작업을 발견하고, 하나 이상의 agents 에게 위임하고,
|
|
| 28 |
|
| 29 |
Loop Engineering 은 명시적 트리거, 검증, 지속 상태를 갖춘 반복 AI agent / coding agent 시스템을 다룹니다. software event loop, control theory, growth loop, 일반적인 workflow automation, 비 AI feedback loop 는 포함하지 않습니다.
|
| 30 |
|
| 31 |
-
|
| 32 |
|
| 33 |
## 멘탈 모델
|
| 34 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 28 |
|
| 29 |
Loop Engineering 은 명시적 트리거, 검증, 지속 상태를 갖춘 반복 AI agent / coding agent 시스템을 다룹니다. software event loop, control theory, growth loop, 일반적인 workflow automation, 비 AI feedback loop 는 포함하지 않습니다.
|
| 30 |
|
| 31 |
+
579개의 감사된 리소스, 20개의 운영 loop 패턴, 20개의 스키마 검증 loop contract, 8개의 runtime starter(실행 파일 3개와 적용 가능한 템플릿 5개)로 바로 시작할 수 있습니다. 커뮤니티 gallery 와 8개 언어 안내도 제공합니다.
|
| 32 |
|
| 33 |
## 멘탈 모델
|
| 34 |
|
README.md
CHANGED
|
@@ -38,7 +38,7 @@ configs:
|
|
| 38 |
<h1 align="center">Awesome Loop Engineering Dataset</h1>
|
| 39 |
|
| 40 |
<p align="center">
|
| 41 |
-
A source-audited dataset of
|
| 42 |
</p>
|
| 43 |
|
| 44 |
<p align="center">
|
|
@@ -52,16 +52,16 @@ configs:
|
|
| 52 |
|
| 53 |
Each row pairs one source with a concise editorial assessment, bibliographic metadata, lifecycle and audience facets, evidence classification, audit status, and point-in-time repository statistics when applicable.
|
| 54 |
|
| 55 |
-
Current release: **v0.
|
| 56 |
|
| 57 |
| Surface | Count |
|
| 58 |
| --- | ---: |
|
| 59 |
-
| Source-audited resources |
|
| 60 |
| Operational patterns | 20 |
|
| 61 |
| Validated loop contracts | 20 |
|
| 62 |
| Runtime starters | 8 |
|
| 63 |
|
| 64 |
-
The source audit dated **2026-07-18** reports these row statuses: **
|
| 65 |
|
| 66 |
## What A Loop Contract Is
|
| 67 |
|
|
@@ -100,6 +100,10 @@ papers = resources.filter(lambda row: row["resource_type"] == "Paper")
|
|
| 100 |
verification = resources.filter(
|
| 101 |
lambda row: "verification" in row["lifecycle_stages"].split(";")
|
| 102 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 103 |
```
|
| 104 |
|
| 105 |
For pandas:
|
|
@@ -118,6 +122,7 @@ Use `url` as the durable join key. `row_id` and `source_line` are positional and
|
|
| 118 |
|
| 119 |
- Find primary sources and implementation references for recurring agent systems.
|
| 120 |
- Compare works by lifecycle, audience, evidence class, source type, and publication metadata.
|
|
|
|
| 121 |
- Build literature maps, reading lists, dashboards, or retrieval indexes.
|
| 122 |
- Audit contribution, novelty, impact, provenance, and evidence claims.
|
| 123 |
- Find reusable patterns, contracts, schemas, executable examples, and copy/paste runtime templates.
|
|
@@ -144,6 +149,7 @@ The primary configuration is `resources`, with one `train` split backed by the n
|
|
| 144 |
| --- | --- | --- |
|
| 145 |
| Identity | `row_id`, `title`, `url`, `canonical_url`, `resource_type`, `domain` | What the resource is and where it lives. |
|
| 146 |
| Editorial assessment | `annotation`, `key_contribution`, `novelty`, `impact` | What the resource contributes to recurring agent systems. |
|
|
|
|
| 147 |
| Navigation | `section`, `collection`, `user_goal`, `lifecycle_stages`, `audience` | Where the resource fits and who it serves. |
|
| 148 |
| Evidence | `evidence_class`, `evidence_tier`, `signal`, `signal_strength`, `source_status`, `audited_at` | What kind of evidence or provenance is available. |
|
| 149 |
| Publication | `authors`, `publication_date`, `publication_year`, `publication_venue`, `publisher`, `doi`, `arxiv_id`, `primary_category` | Bibliographic data exposed by the canonical source. |
|
|
@@ -183,6 +189,6 @@ GitHub Releases define versioned snapshots; cite a release or commit for reprodu
|
|
| 183 |
title = {Awesome Loop Engineering},
|
| 184 |
year = {2026},
|
| 185 |
howpublished = {\url{https://github.com/ChaoYue0307/awesome-loop-engineering}},
|
| 186 |
-
note = {Version 0.
|
| 187 |
}
|
| 188 |
```
|
|
|
|
| 38 |
<h1 align="center">Awesome Loop Engineering Dataset</h1>
|
| 39 |
|
| 40 |
<p align="center">
|
| 41 |
+
A source-audited dataset of 579 papers, official docs, tools, benchmarks, patterns, critiques, and implementation guides for recurring AI-agent systems.
|
| 42 |
</p>
|
| 43 |
|
| 44 |
<p align="center">
|
|
|
|
| 52 |
|
| 53 |
Each row pairs one source with a concise editorial assessment, bibliographic metadata, lifecycle and audience facets, evidence classification, audit status, and point-in-time repository statistics when applicable.
|
| 54 |
|
| 55 |
+
Current release: **v0.8.0**
|
| 56 |
|
| 57 |
| Surface | Count |
|
| 58 |
| --- | ---: |
|
| 59 |
+
| Source-audited resources | 579 |
|
| 60 |
| Operational patterns | 20 |
|
| 61 |
| Validated loop contracts | 20 |
|
| 62 |
| Runtime starters | 8 |
|
| 63 |
|
| 64 |
+
The source audit dated **2026-07-18** reports these row statuses: **528 reachable public**, **3 access restricted**, **48 repository-native**, and **0 broken or unreachable**.
|
| 65 |
|
| 66 |
## What A Loop Contract Is
|
| 67 |
|
|
|
|
| 100 |
verification = resources.filter(
|
| 101 |
lambda row: "verification" in row["lifecycle_stages"].split(";")
|
| 102 |
)
|
| 103 |
+
model_recurrence = resources.filter(
|
| 104 |
+
lambda row: row["loop_layer"] == "model"
|
| 105 |
+
and row["scope_fit"] == "adjacent"
|
| 106 |
+
)
|
| 107 |
```
|
| 108 |
|
| 109 |
For pandas:
|
|
|
|
| 122 |
|
| 123 |
- Find primary sources and implementation references for recurring agent systems.
|
| 124 |
- Compare works by lifecycle, audience, evidence class, source type, and publication metadata.
|
| 125 |
+
- Separate model, agent, harness, workflow, operations, evaluation, and cross-layer resources without treating adjacent model recurrence as a complete operational loop.
|
| 126 |
- Build literature maps, reading lists, dashboards, or retrieval indexes.
|
| 127 |
- Audit contribution, novelty, impact, provenance, and evidence claims.
|
| 128 |
- Find reusable patterns, contracts, schemas, executable examples, and copy/paste runtime templates.
|
|
|
|
| 149 |
| --- | --- | --- |
|
| 150 |
| Identity | `row_id`, `title`, `url`, `canonical_url`, `resource_type`, `domain` | What the resource is and where it lives. |
|
| 151 |
| Editorial assessment | `annotation`, `key_contribution`, `novelty`, `impact` | What the resource contributes to recurring agent systems. |
|
| 152 |
+
| Scope | `loop_layer`, `scope_fit` | Where recurrence lives and whether the source is direct, enabling, or adjacent to operational Loop Engineering. |
|
| 153 |
| Navigation | `section`, `collection`, `user_goal`, `lifecycle_stages`, `audience` | Where the resource fits and who it serves. |
|
| 154 |
| Evidence | `evidence_class`, `evidence_tier`, `signal`, `signal_strength`, `source_status`, `audited_at` | What kind of evidence or provenance is available. |
|
| 155 |
| Publication | `authors`, `publication_date`, `publication_year`, `publication_venue`, `publisher`, `doi`, `arxiv_id`, `primary_category` | Bibliographic data exposed by the canonical source. |
|
|
|
|
| 189 |
title = {Awesome Loop Engineering},
|
| 190 |
year = {2026},
|
| 191 |
howpublished = {\url{https://github.com/ChaoYue0307/awesome-loop-engineering}},
|
| 192 |
+
note = {Version 0.8.0}
|
| 193 |
}
|
| 194 |
```
|
README.pt-BR.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -28,7 +28,7 @@ Um loop descobre trabalho, delega para um ou mais agentes, verifica o resultado,
|
|
| 28 |
|
| 29 |
Loop Engineering abrange sistemas recorrentes de AI agents e coding agents com gatilhos explícitos, verificação e estado durável. Não inclui event loops de software, teoria de controle, growth loops, automação genérica nem feedback loops sem relação com IA.
|
| 30 |
|
| 31 |
-
Comece com
|
| 32 |
|
| 33 |
## Modelo Mental
|
| 34 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 28 |
|
| 29 |
Loop Engineering abrange sistemas recorrentes de AI agents e coding agents com gatilhos explícitos, verificação e estado durável. Não inclui event loops de software, teoria de controle, growth loops, automação genérica nem feedback loops sem relação com IA.
|
| 30 |
|
| 31 |
+
Comece com 579 recursos auditados, 20 patterns operacionais, 20 loop contracts validados por schema e 8 starters de runtime (3 executáveis e 5 templates prontos para adaptação), além de uma galeria comunitária e 8 idiomas.
|
| 32 |
|
| 33 |
## Modelo Mental
|
| 34 |
|
README.zh-CN.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
-
<!-- last-synced: 2026-07-
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
@@ -32,7 +32,7 @@ Prompt engineering 改进你对模型说什么。Context engineering 改进模
|
|
| 32 |
|
| 33 |
Loop Engineering 专指具备明确触发、外部验证和持久状态的可重复 AI-agent 与 coding-agent 系统,不包括软件事件循环、控制论、增长循环、通用 workflow automation 或非 AI feedback loop。
|
| 34 |
|
| 35 |
-
可直接从
|
| 36 |
|
| 37 |
## 一句话定位
|
| 38 |
|
|
|
|
| 1 |
# Awesome Loop Engineering
|
| 2 |
|
| 3 |
+
<!-- last-synced: 2026-07-18 -->
|
| 4 |
|
| 5 |
<p align="center">
|
| 6 |
<img src="assets/awesome-loop-engineering-cover.png" alt="Awesome Loop Engineering cover" width="100%">
|
|
|
|
| 32 |
|
| 33 |
Loop Engineering 专指具备明确触发、外部验证和持久状态的可重复 AI-agent 与 coding-agent 系统,不包括软件事件循环、控制论、增长循环、通用 workflow automation 或非 AI feedback loop。
|
| 34 |
|
| 35 |
+
可直接从 579 条经审核资源、20 个操作模式、20 个经 schema 校验的 loop contracts 和 8 个 runtime starters(3 个可直接执行,5 个可复制改造)开始,并通过社区 gallery 和 8 种语言入口继续探索。
|
| 36 |
|
| 37 |
## 一句话定位
|
| 38 |
|
TAXONOMY.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
| 1 |
# Loop Engineering Taxonomy
|
| 2 |
|
| 3 |
-
Classify an AI-agent loop by its trigger, work intake, verification method, state model, agent topology, and operating domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
## By Trigger
|
| 6 |
|
|
|
|
| 1 |
# Loop Engineering Taxonomy
|
| 2 |
|
| 3 |
+
Classify recurrence first by where it lives, then classify an operational AI-agent loop by its trigger, work intake, verification method, state model, agent topology, and operating domain.
|
| 4 |
+
|
| 5 |
+
## By Loop Layer
|
| 6 |
+
|
| 7 |
+
- **Model layer**: a learned layer, block, module, or latent-state update repeats within one inference. This is an adjacent foundation for Loop Engineering, not a complete operational loop.
|
| 8 |
+
- **Agent layer**: a model alternates reasoning, tool calls, observations, and updates while solving one task.
|
| 9 |
+
- **Harness layer**: tools, context, permissions, sandboxes, evaluators, and checkpoints control one or more agent runs.
|
| 10 |
+
- **Workflow layer**: triggers, intake, delegation, verification, durable state, budgets, and next-action policy govern repeated work.
|
| 11 |
+
- **Operations layer**: telemetry, approvals, incident response, cost controls, rollback, and human ownership govern deployed loops.
|
| 12 |
+
- **Evaluation layer**: benchmarks, graders, trace analysis, and challenge sets measure behavior across the other layers.
|
| 13 |
+
|
| 14 |
+
Dataset rows pair this facet with `scope_fit`: `direct` for operational loop resources, `enabling` for components and evidence, and `adjacent` for model architectures or neighboring ecosystem maps.
|
| 15 |
|
| 16 |
## By Trigger
|
| 17 |
|
assets/social-preview.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
# Dataset Exports
|
| 2 |
|
| 3 |
-
Download deterministic tabular exports of all
|
| 4 |
|
| 5 |
- `resources.csv` - Tabular export for spreadsheets and ad hoc analysis.
|
| 6 |
- `resources.jsonl` - JSON Lines export and source for the Hugging Face Parquet build.
|
|
@@ -11,13 +11,14 @@ Download deterministic tabular exports of all 545 source-audited resources.
|
|
| 11 |
- `arxiv_publication_overrides.csv` - Human-verified conference, journal, and workshop records backed by official proceedings, DOI registries, OpenReview, or current author-supplied acceptance notes.
|
| 12 |
- `arxiv_publication_audit.csv` - Complete decision table for every arXiv-linked resource: published, accepted, or preprint-only.
|
| 13 |
|
| 14 |
-
The exports preserve each section and annotation while adding
|
| 15 |
|
|
|
|
| 16 |
- **Task facets**: `collection`, `user_goal`, `lifecycle_stages`, and `audience` answer why a reader needs the source and where it fits in the Loop Contract.
|
| 17 |
-
- **Evidence facets**: `evidence_class`, `signal_strength`, `source_status`, canonical URL, source metadata, GitHub statistics, arXiv ID, and audit timestamp separate source provenance from popularity or editorial judgment.
|
| 18 |
- **Publication facets**: `authors`, `publication_date`, `publication_year`, `publication_venue`, `publisher`, `doi`, `publication_note`, `primary_category`, and `metadata_source` provide a paper-like bibliographic row without inventing missing facts.
|
| 19 |
|
| 20 |
-
`key_contribution`, `novelty`, and `impact` are resource-specific. `signal` states the evidence basis and limits; GitHub stars and forks provide point-in-time context, never proof of reliability. `signal_strength` is `high` for primary official documentation and benchmarks, `medium` for inspectable implementations, papers, patterns, and locally maintained artifacts, `contextual` for practitioner analysis and curated lists, and `unverified` only when the latest audit cannot validate availability.
|
| 21 |
|
| 22 |
## Load And Query
|
| 23 |
|
|
@@ -34,6 +35,10 @@ verification_papers = resources.filter(
|
|
| 34 |
lambda row: row["resource_type"] == "Paper"
|
| 35 |
and "verification" in row["lifecycle_stages"].split(";")
|
| 36 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
```
|
| 38 |
|
| 39 |
For pandas:
|
|
|
|
| 1 |
# Dataset Exports
|
| 2 |
|
| 3 |
+
Download deterministic tabular exports of all 579 source-audited resources.
|
| 4 |
|
| 5 |
- `resources.csv` - Tabular export for spreadsheets and ad hoc analysis.
|
| 6 |
- `resources.jsonl` - JSON Lines export and source for the Hugging Face Parquet build.
|
|
|
|
| 11 |
- `arxiv_publication_overrides.csv` - Human-verified conference, journal, and workshop records backed by official proceedings, DOI registries, OpenReview, or current author-supplied acceptance notes.
|
| 12 |
- `arxiv_publication_audit.csv` - Complete decision table for every arXiv-linked resource: published, accepted, or preprint-only.
|
| 13 |
|
| 14 |
+
The exports preserve each section and annotation while adding four discovery layers:
|
| 15 |
|
| 16 |
+
- **Scope facets**: `loop_layer` identifies where recurrence lives (`model`, `agent`, `harness`, `workflow`, `operations`, `evaluation`, or `cross-layer`); `scope_fit` distinguishes resources that are `direct`, `enabling`, or `adjacent` to operational Loop Engineering.
|
| 17 |
- **Task facets**: `collection`, `user_goal`, `lifecycle_stages`, and `audience` answer why a reader needs the source and where it fits in the Loop Contract.
|
| 18 |
+
- **Evidence facets**: `evidence_class`, `evidence_tier`, `signal_strength`, `source_status`, canonical URL, source metadata, GitHub statistics, arXiv ID, and audit timestamp separate source provenance from popularity or editorial judgment.
|
| 19 |
- **Publication facets**: `authors`, `publication_date`, `publication_year`, `publication_venue`, `publisher`, `doi`, `publication_note`, `primary_category`, and `metadata_source` provide a paper-like bibliographic row without inventing missing facts.
|
| 20 |
|
| 21 |
+
`key_contribution`, `novelty`, and `impact` are resource-specific. Model-level recurrence is retained as an adjacent foundation because it repeats learned blocks or latent-state updates inside one inference; it does not by itself supply work intake, external verification, durable state, budgets, or human handoff. `evidence_tier` follows the public A-C source hierarchy: A for primary or official artifacts, B for implementation-grounded practice and risk analysis, and C for curated synthesis. `signal` states the evidence basis and limits; GitHub stars and forks provide point-in-time context, never proof of reliability. `signal_strength` is `high` for primary official documentation and benchmarks, `medium` for inspectable implementations, papers, patterns, and locally maintained artifacts, `contextual` for practitioner analysis and curated lists, and `unverified` only when the latest audit cannot validate availability.
|
| 22 |
|
| 23 |
## Load And Query
|
| 24 |
|
|
|
|
| 35 |
lambda row: row["resource_type"] == "Paper"
|
| 36 |
and "verification" in row["lifecycle_stages"].split(";")
|
| 37 |
)
|
| 38 |
+
model_recurrence = resources.filter(
|
| 39 |
+
lambda row: row["loop_layer"] == "model"
|
| 40 |
+
and row["scope_fit"] == "adjacent"
|
| 41 |
+
)
|
| 42 |
```
|
| 43 |
|
| 44 |
For pandas:
|
data/arxiv_publication_audit.csv
CHANGED
|
@@ -33,6 +33,16 @@ ale-0141,2607.11288,Mako: A Self-Evolving Agentic Operating System for Autonomou
|
|
| 33 |
ale-0142,2607.10856,How Do Practitioners Build SE Agents? Insights from a Mixed-Methods Study,How Do Practitioners Build SE Agents? Insights from a Mixed-Methods Study,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
| 34 |
ale-0143,2607.10113,Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Libraries,Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Libraries,2026,accepted,Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Libraries,2026,2026,Transactions on Machine Learning Research (TMLR),OpenReview,,https://openreview.net/forum?id=cjU3YbcRr8,https://openreview.net/forum?id=cjU3YbcRr8,Current arXiv acceptance note and OpenReview record,1.000,2026-07-17
|
| 35 |
ale-0144,2605.27276,SIA: Self Improving AI with Harness and Weight Updates,SIA: Self Improving AI with Harness & Weight Updates,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 36 |
ale-0154,2605.18747,Code as Agent Harness,Code as Agent Harness,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
| 37 |
ale-0155,2605.20456,Agentic Agile-V: From Vibe Coding to Verified Engineering,Agentic Agile-V: From Vibe Coding to Verified Engineering in Software and Hardware Development,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
| 38 |
ale-0156,2509.06216,Agentic Software Engineering: Foundational Pillars and a Research Roadmap,Agentic Software Engineering: Foundational Pillars and a Research Roadmap,2025,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
|
|
|
| 33 |
ale-0142,2607.10856,How Do Practitioners Build SE Agents? Insights from a Mixed-Methods Study,How Do Practitioners Build SE Agents? Insights from a Mixed-Methods Study,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
| 34 |
ale-0143,2607.10113,Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Libraries,Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Libraries,2026,accepted,Dynamic Agent Skills: A Lifecycle Survey and Taxonomy of Evolving Skill Libraries,2026,2026,Transactions on Machine Learning Research (TMLR),OpenReview,,https://openreview.net/forum?id=cjU3YbcRr8,https://openreview.net/forum?id=cjU3YbcRr8,Current arXiv acceptance note and OpenReview record,1.000,2026-07-17
|
| 35 |
ale-0144,2605.27276,SIA: Self Improving AI with Harness and Weight Updates,SIA: Self Improving AI with Harness & Weight Updates,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 36 |
+
ale-0152,2510.25741,Scaling Latent Reasoning via Looped Language Models,Scaling Latent Reasoning via Looped Language Models,2025,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 37 |
+
ale-0158,2602.11698,SpiralFormer: Looped Transformers Can Learn Hierarchical Dependencies via Multi-Resolution Recursion,SpiralFormer: Looped Transformers Can Learn Hierarchical Dependencies via Multi-Resolution Recursion,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 38 |
+
ale-0159,2605.23872,Training-Free Looped Transformers,Training-Free Looped Transformers,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 39 |
+
ale-0160,2604.07822,"Loop, Think, & Generalize: Implicit Reasoning in Recurrent-Depth Transformers","Loop, Think, & Generalize: Implicit Reasoning in Recurrent-Depth Transformers",2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 40 |
+
ale-0161,2607.13491,DeepLoop: Depth Scaling for Looped Transformers,DeepLoop: Depth Scaling for Looped Transformers,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 41 |
+
ale-0162,2604.21106,How Much Is One Recurrence Worth? Iso-Depth Scaling Laws for Looped Language Models,How Much Is One Recurrence Worth? Iso-Depth Scaling Laws for Looped Language Models,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 42 |
+
ale-0164,2606.18208,Looped World Models,Looped World Models,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 43 |
+
ale-0165,2606.31779,Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers,Bridging the Gap Between Latent and Explicit Reasoning with Looped Transformers,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 44 |
+
ale-0166,2605.16048,Looped SSMs: Depth-Recurrence and Input Reshaping for Time Series Classification,Looped SSMs: Depth-Recurrence and Input Reshaping for Time Series Classification,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 45 |
+
ale-0167,2605.26106,Looped Diffusion Language Models,Looped Diffusion Language Models,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-18
|
| 46 |
ale-0154,2605.18747,Code as Agent Harness,Code as Agent Harness,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
| 47 |
ale-0155,2605.20456,Agentic Agile-V: From Vibe Coding to Verified Engineering,Agentic Agile-V: From Vibe Coding to Verified Engineering in Software and Hardware Development,2026,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
| 48 |
ale-0156,2509.06216,Agentic Software Engineering: Foundational Pillars and a Research Roadmap,Agentic Software Engineering: Foundational Pillars and a Research Roadmap,2025,preprint-only,,,,,,,,,DBLP and Crossref exact-title audit,,2026-07-17
|
data/first_seen.json
CHANGED
|
@@ -65,5 +65,29 @@
|
|
| 65 |
"https://arxiv.org/abs/2510.11967": "2026-07-18",
|
| 66 |
"https://arxiv.org/abs/2512.08296": "2026-07-18",
|
| 67 |
"https://aclanthology.org/2026.acl-long.278/": "2026-07-18",
|
| 68 |
-
"https://aclanthology.org/2026.acl-long.337/": "2026-07-18"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 69 |
}
|
|
|
|
| 65 |
"https://arxiv.org/abs/2510.11967": "2026-07-18",
|
| 66 |
"https://arxiv.org/abs/2512.08296": "2026-07-18",
|
| 67 |
"https://aclanthology.org/2026.acl-long.278/": "2026-07-18",
|
| 68 |
+
"https://aclanthology.org/2026.acl-long.337/": "2026-07-18",
|
| 69 |
+
"https://openreview.net/forum?id=HyzdRiR9Y7": "2026-07-18",
|
| 70 |
+
"https://proceedings.mlr.press/v202/giannou23a.html": "2026-07-18",
|
| 71 |
+
"https://openreview.net/forum?id=HHbRxoDTxE": "2026-07-18",
|
| 72 |
+
"https://proceedings.mlr.press/v267/xu25x.html": "2026-07-18",
|
| 73 |
+
"https://iclr.cc/virtual/2025/poster/28971": "2026-07-18",
|
| 74 |
+
"https://proceedings.neurips.cc/paper_files/paper/2025/hash/3b01972cf31e6fa0fe29e4b8b5c2a0a1-Abstract-Conference.html": "2026-07-18",
|
| 75 |
+
"https://papers.nips.cc/paper_files/paper/2025/hash/8b08bbf8b420faa6eeb4020720582ec7-Abstract-Conference.html": "2026-07-18",
|
| 76 |
+
"https://arxiv.org/abs/2510.25741": "2026-07-18",
|
| 77 |
+
"https://iclr.cc/virtual/2026/poster/10009450": "2026-07-18",
|
| 78 |
+
"https://iclr.cc/virtual/2026/poster/10011117": "2026-07-18",
|
| 79 |
+
"https://iclr.cc/virtual/2026/poster/10007767": "2026-07-18",
|
| 80 |
+
"https://openreview.net/forum?id=eQaJSRZiGn": "2026-07-18",
|
| 81 |
+
"https://openreview.net/forum?id=ri0LAMdhd9": "2026-07-18",
|
| 82 |
+
"https://arxiv.org/abs/2602.11698": "2026-07-18",
|
| 83 |
+
"https://arxiv.org/abs/2605.23872": "2026-07-18",
|
| 84 |
+
"https://arxiv.org/abs/2604.07822": "2026-07-18",
|
| 85 |
+
"https://arxiv.org/abs/2607.13491": "2026-07-18",
|
| 86 |
+
"https://arxiv.org/abs/2604.21106": "2026-07-18",
|
| 87 |
+
"https://aclanthology.org/2026.findings-acl.796/": "2026-07-18",
|
| 88 |
+
"https://arxiv.org/abs/2606.18208": "2026-07-18",
|
| 89 |
+
"https://arxiv.org/abs/2606.31779": "2026-07-18",
|
| 90 |
+
"https://arxiv.org/abs/2605.16048": "2026-07-18",
|
| 91 |
+
"https://arxiv.org/abs/2605.26106": "2026-07-18",
|
| 92 |
+
"https://github.com/huskydoge/Awesome-Loop-Models": "2026-07-18"
|
| 93 |
}
|
data/resource_source_audit.csv
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
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
|
|
|
data/resources.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d54b0458ecbf0a9c8ddc1c56d731c4111a04e8633a1c9e8f9b7ea1e70fce97ca
|
| 3 |
+
size 466752
|
design-qa.md
CHANGED
|
@@ -19,7 +19,7 @@
|
|
| 19 |
- Contract and lifecycle: purpose-built mobile summaries replace desktop-wide figures at 560 px and below.
|
| 20 |
- Runtime map: desktop figure plus eight labeled starters in a balanced 4 x 2 grid; mobile uses the explanatory copy and one-column starter sequence instead of shrinking the wide figure.
|
| 21 |
- Maturity model: desktop figure plus semantic levels 00-06; mobile keeps the readable level rows and hides the wide supporting figure.
|
| 22 |
-
- Social preview: 1280 x 640, exact
|
| 23 |
- Interactive hero, desktop: 1440 x 1000, one ready WebGL canvas, no horizontal overflow, and meaningful agent-system labels.
|
| 24 |
- Interactive hero, mobile: 390 x 844, one ready WebGL canvas, no horizontal overflow, and all six stations inside the frame.
|
| 25 |
- Interactive hero motion: the frame counter advanced by 47 frames during a 450 ms pointer-parallax check.
|
|
@@ -71,14 +71,16 @@
|
|
| 71 |
- Phone: 390 x 844, no horizontal overflow. The compact loop keeps all six stations, the moving work packet, legend, outcome key, and stage selector visible without crossing the hero copy.
|
| 72 |
- Mobile navigation: opens all nine project links, reports `aria-expanded="true"`, closes on Escape, and restores focus to the menu button.
|
| 73 |
- Pattern filter: `accessibility` returns exactly one of the 20 patterns.
|
| 74 |
-
- Resource Atlas: remains idle above the fold, loads on approach or a direct resource anchor, and reports `
|
| 75 |
-
- Resource interactions:
|
|
|
|
| 76 |
- Scene motion: the canvas frame counter advanced from 640 to 662 over 900 ms. Two canvas crops taken 1.2 seconds apart changed 17.79% of sampled RGB channels.
|
| 77 |
-
- Scene pixels: the
|
| 78 |
- Runtime starters: desktop cards form two equal-height rows of four; mobile cards are 358 px wide within a 390 px document and preserve label, icon, heading, and copy alignment.
|
| 79 |
- Future directions: direct-anchor restoration waits for the Resource Atlas reflow, all three audience tracks remain readable, and the agenda CTA is fully visible at desktop and mobile widths.
|
| 80 |
- Console: no page-origin errors or warnings during mobile navigation, pattern filtering, and Resource Atlas interactions.
|
| 81 |
-
-
|
| 82 |
-
-
|
|
|
|
| 83 |
|
| 84 |
final result: passed
|
|
|
|
| 19 |
- Contract and lifecycle: purpose-built mobile summaries replace desktop-wide figures at 560 px and below.
|
| 20 |
- Runtime map: desktop figure plus eight labeled starters in a balanced 4 x 2 grid; mobile uses the explanatory copy and one-column starter sequence instead of shrinking the wide figure.
|
| 21 |
- Maturity model: desktop figure plus semantic levels 00-06; mobile keeps the readable level rows and hides the wide supporting figure.
|
| 22 |
+
- Social preview: 1280 x 640, exact 579-resource, 20-pattern, 20-contract, and 8-starter counts, with the model-to-operations scope line.
|
| 23 |
- Interactive hero, desktop: 1440 x 1000, one ready WebGL canvas, no horizontal overflow, and meaningful agent-system labels.
|
| 24 |
- Interactive hero, mobile: 390 x 844, one ready WebGL canvas, no horizontal overflow, and all six stations inside the frame.
|
| 25 |
- Interactive hero motion: the frame counter advanced by 47 frames during a 450 ms pointer-parallax check.
|
|
|
|
| 71 |
- Phone: 390 x 844, no horizontal overflow. The compact loop keeps all six stations, the moving work packet, legend, outcome key, and stage selector visible without crossing the hero copy.
|
| 72 |
- Mobile navigation: opens all nine project links, reports `aria-expanded="true"`, closes on Escape, and restores focus to the menu button.
|
| 73 |
- Pattern filter: `accessibility` returns exactly one of the 20 patterns.
|
| 74 |
+
- Resource Atlas: remains idle above the fold, loads on approach or a direct resource anchor, and reports `579 of 579 resources | showing 8` on a fresh mobile load.
|
| 75 |
+
- Resource interactions: the Model loop-layer filter returns 24 of 579 resources (23 papers plus Awesome Loop Models), paginates eight at a time on mobile, and renders LoopWM with its 2026 arXiv record and adjacent-scope label.
|
| 76 |
+
- Resource row schema: desktop exposes Work, Year, Published at, and Evidence; mobile stacks the same labels. A `ReasoningBank` query returns one row with its ICLR venue, arXiv identifier, Tier A evidence, task fit, and source record without horizontal overflow.
|
| 77 |
- Scene motion: the canvas frame counter advanced from 640 to 662 over 900 ms. Two canvas crops taken 1.2 seconds apart changed 17.79% of sampled RGB channels.
|
| 78 |
+
- Scene pixels: the current desktop canvas has 7,062 colors with RGB standard deviations of 35.93, 29.76, and 22.29; mobile has 5,755 colors with deviations of 40.73, 30.54, and 19.70. Both renders are nonblank and well contrasted.
|
| 79 |
- Runtime starters: desktop cards form two equal-height rows of four; mobile cards are 358 px wide within a 390 px document and preserve label, icon, heading, and copy alignment.
|
| 80 |
- Future directions: direct-anchor restoration waits for the Resource Atlas reflow, all three audience tracks remain readable, and the agenda CTA is fully visible at desktop and mobile widths.
|
| 81 |
- Console: no page-origin errors or warnings during mobile navigation, pattern filtering, and Resource Atlas interactions.
|
| 82 |
+
- Narrow phone: 320 x 844, document width equals viewport width; the headline stays within 16 px gutters and the Three.js canvas remains fully inside the 288 px content width.
|
| 83 |
+
- Source audit: 579 rows checked; 528 public sources reachable, 3 access-restricted, 48 repository-native, and 0 broken or unreachable as of 2026-07-18 UTC.
|
| 84 |
+
- Data and copy: the website, README, translations, social preview source, release copy, and Hugging Face card all report 579 resources, 20 patterns, 20 contracts, 8 runtime starters, and version 0.8.0. The dataset exposes 50 fields, including `loop_layer` and `scope_fit`.
|
| 85 |
|
| 86 |
final result: passed
|
docs/assets/resources.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
docs/assets/social-preview-555-v07.png
ADDED
|
Git LFS Details
|
docs/assets/social-preview-579-v08.png
ADDED
|
Git LFS Details
|
docs/assets/social-preview.png
CHANGED
|
Git LFS Details
|
|
Git LFS Details
|
docs/index.html
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
<meta charset="utf-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 6 |
<title>Awesome Loop Engineering</title>
|
| 7 |
-
<meta name="description" content="
|
| 8 |
<meta name="robots" content="index,follow">
|
| 9 |
<meta name="author" content="Chaoyue He">
|
| 10 |
<link rel="canonical" href="https://chaoyue0307.github.io/awesome-loop-engineering/">
|
|
@@ -15,16 +15,16 @@
|
|
| 15 |
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
| 16 |
<meta property="og:type" content="website">
|
| 17 |
<meta property="og:title" content="Awesome Loop Engineering">
|
| 18 |
-
<meta property="og:description" content="
|
| 19 |
<meta property="og:url" content="https://chaoyue0307.github.io/awesome-loop-engineering/">
|
| 20 |
-
<meta property="og:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-
|
| 21 |
<meta property="og:image:width" content="1280">
|
| 22 |
<meta property="og:image:height" content="640">
|
| 23 |
<meta property="og:image:alt" content="Awesome Loop Engineering: design loops, not just prompts.">
|
| 24 |
<meta name="twitter:card" content="summary_large_image">
|
| 25 |
<meta name="twitter:title" content="Awesome Loop Engineering">
|
| 26 |
-
<meta name="twitter:description" content="
|
| 27 |
-
<meta name="twitter:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-
|
| 28 |
<link rel="alternate" type="application/atom+xml" title="Awesome Loop Engineering releases" href="https://github.com/ChaoYue0307/awesome-loop-engineering/releases.atom">
|
| 29 |
<link rel="alternate" type="application/atom+xml" title="Awesome Loop Engineering commits" href="https://github.com/ChaoYue0307/awesome-loop-engineering/commits/main.atom">
|
| 30 |
<style>
|
|
@@ -350,6 +350,18 @@
|
|
| 350 |
.section-intro { max-width: 720px; margin: 0; color: var(--muted); }
|
| 351 |
.audit-note { margin: -17px 0 28px; border-top: 1px solid var(--line); padding-top: 13px; color: var(--muted); font-size: 0.8rem; }
|
| 352 |
.audit-note strong { color: var(--ink); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 353 |
.diagram { width: 100%; margin: 0; }
|
| 354 |
.caption { margin: 13px 0 0; color: var(--quiet); font-size: 0.78rem; text-align: right; }
|
| 355 |
.supporting-visual { margin: 0 0 34px; }
|
|
@@ -712,7 +724,7 @@
|
|
| 712 |
.resource-explorer { border-top: 1px solid var(--line-strong); }
|
| 713 |
.resource-toolbar {
|
| 714 |
display: grid;
|
| 715 |
-
grid-template-columns: minmax(
|
| 716 |
gap: 10px;
|
| 717 |
padding: 16px 0;
|
| 718 |
border-bottom: 1px solid var(--line);
|
|
@@ -1133,6 +1145,9 @@
|
|
| 1133 |
.principle + .principle, .card + .card, .pattern + .pattern { padding-left: 0; }
|
| 1134 |
.principle, .card, .pattern { padding-top: 16px; padding-bottom: 16px; }
|
| 1135 |
.choice-why { grid-template-columns: 1fr; gap: 7px; padding: 18px 0; }
|
|
|
|
|
|
|
|
|
|
| 1136 |
.choice-why p { font-size: 0.84rem; line-height: 1.55; }
|
| 1137 |
.choice-fit { grid-template-columns: 1fr; margin-bottom: 24px; }
|
| 1138 |
.choice-fit-column { padding: 18px 0; }
|
|
@@ -1230,7 +1245,7 @@
|
|
| 1230 |
"https://huggingface.co/datasets/cy0307/awesome-loop-engineering"
|
| 1231 |
],
|
| 1232 |
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
|
| 1233 |
-
"image": "https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-
|
| 1234 |
"logo": "https://chaoyue0307.github.io/awesome-loop-engineering/assets/awesome-loop-engineering-logo.png",
|
| 1235 |
"author": { "@type": "Person", "name": "Chaoyue He" }
|
| 1236 |
}
|
|
@@ -1278,14 +1293,14 @@
|
|
| 1278 |
"@context": "https://schema.org",
|
| 1279 |
"@type": "Dataset",
|
| 1280 |
"name": "Awesome Loop Engineering resources",
|
| 1281 |
-
"description": "
|
| 1282 |
"url": "https://chaoyue0307.github.io/awesome-loop-engineering/",
|
| 1283 |
"sameAs": [
|
| 1284 |
"https://huggingface.co/datasets/cy0307/awesome-loop-engineering",
|
| 1285 |
"https://github.com/ChaoYue0307/awesome-loop-engineering"
|
| 1286 |
],
|
| 1287 |
"identifier": "https://huggingface.co/datasets/cy0307/awesome-loop-engineering",
|
| 1288 |
-
"version": "0.
|
| 1289 |
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
|
| 1290 |
"isAccessibleForFree": true,
|
| 1291 |
"creator": { "@type": "Person", "name": "Chaoyue He" },
|
|
@@ -1353,7 +1368,7 @@
|
|
| 1353 |
<p class="section-label hero-kicker"><i class="icon" data-lucide="repeat-2" aria-hidden="true"></i><span>Field guide for recurring agent systems</span></p>
|
| 1354 |
<h1>Awesome Loop Engineering</h1>
|
| 1355 |
<p class="tagline">Design loops, not just prompts.</p>
|
| 1356 |
-
<p class="lead">
|
| 1357 |
<div class="actions">
|
| 1358 |
<a class="button primary" href="https://github.com/ChaoYue0307/awesome-loop-engineering#readme"><i class="icon" data-lucide="book-open" aria-hidden="true"></i>Explore resources</a>
|
| 1359 |
<a class="button" href="#choose"><i class="icon" data-lucide="compass" aria-hidden="true"></i>Choose a loop</a>
|
|
@@ -1410,7 +1425,7 @@
|
|
| 1410 |
</div>
|
| 1411 |
</figure>
|
| 1412 |
<div class="stats" role="list" aria-label="Field guide at a glance">
|
| 1413 |
-
<div class="stat" role="listitem"><b><i class="icon" data-lucide="library" aria-hidden="true"></i>
|
| 1414 |
<div class="stat" role="listitem"><b><i class="icon" data-lucide="blocks" aria-hidden="true"></i>20</b><span>operational patterns</span></div>
|
| 1415 |
<div class="stat" role="listitem"><b><i class="icon" data-lucide="file-check-2" aria-hidden="true"></i>20</b><span>loop contracts</span></div>
|
| 1416 |
<div class="stat" role="listitem"><b><i class="icon" data-lucide="play" aria-hidden="true"></i>8</b><span>runtime starters</span></div>
|
|
@@ -1710,9 +1725,14 @@
|
|
| 1710 |
<p class="section-label"><i class="icon" data-lucide="library" aria-hidden="true"></i><span>06 / Resource atlas</span></p>
|
| 1711 |
<h2>Find evidence, not just links.</h2>
|
| 1712 |
</div>
|
| 1713 |
-
<p class="section-intro">Filter
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1714 |
</div>
|
| 1715 |
-
<p class="audit-note"><strong>Audit snapshot, 2026-07-17 UTC:</strong> all 545 rows checked; 496 public sources reachable, 1 access-restricted, 48 repository-native, and 0 broken or unreachable. <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/data/resource_source_audit.csv">Inspect the audit</a> or <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/issues/new?template=annotation-correction.yml">report a correction</a>.</p>
|
| 1716 |
<div class="resource-explorer" id="resource-explorer">
|
| 1717 |
<div class="resource-toolbar" role="search" aria-label="Search resources">
|
| 1718 |
<label>
|
|
@@ -1738,6 +1758,7 @@
|
|
| 1738 |
<span class="sr-only">Lifecycle stage</span>
|
| 1739 |
<select class="resource-select" id="resource-stage">
|
| 1740 |
<option value="">All lifecycle stages</option>
|
|
|
|
| 1741 |
<option value="objective">Objective</option>
|
| 1742 |
<option value="trigger">Trigger</option>
|
| 1743 |
<option value="intake">Intake</option>
|
|
@@ -1752,6 +1773,19 @@
|
|
| 1752 |
<option value="whole-loop">Whole loop</option>
|
| 1753 |
</select>
|
| 1754 |
</label>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1755 |
<label>
|
| 1756 |
<span class="sr-only">Evidence class</span>
|
| 1757 |
<select class="resource-select" id="resource-evidence">
|
|
@@ -1777,7 +1811,7 @@
|
|
| 1777 |
<button class="resource-collection" type="button" data-collection="Apply" aria-pressed="false"><i class="icon" data-lucide="package-open" aria-hidden="true"></i>Apply</button>
|
| 1778 |
</div>
|
| 1779 |
<div class="resource-summary">
|
| 1780 |
-
<p class="resource-count" id="resource-count" aria-live="polite">Preparing
|
| 1781 |
<label>
|
| 1782 |
<span class="sr-only">Sort resources</span>
|
| 1783 |
<select class="resource-select resource-sort" id="resource-sort">
|
|
@@ -1927,7 +1961,7 @@
|
|
| 1927 |
title = {Awesome Loop Engineering},
|
| 1928 |
year = {2026},
|
| 1929 |
howpublished = {\url{https://github.com/ChaoYue0307/awesome-loop-engineering}},
|
| 1930 |
-
note = {Version 0.
|
| 1931 |
}</pre>
|
| 1932 |
</div>
|
| 1933 |
</div>
|
|
@@ -2042,6 +2076,7 @@
|
|
| 2042 |
var search = document.getElementById('resource-search');
|
| 2043 |
var type = document.getElementById('resource-type');
|
| 2044 |
var stage = document.getElementById('resource-stage');
|
|
|
|
| 2045 |
var evidence = document.getElementById('resource-evidence');
|
| 2046 |
var sort = document.getElementById('resource-sort');
|
| 2047 |
var reset = document.getElementById('resource-reset');
|
|
@@ -2068,6 +2103,30 @@
|
|
| 2068 |
return String(value || '').replace(/-/g, ' ');
|
| 2069 |
}
|
| 2070 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2071 |
function stages(value) {
|
| 2072 |
return String(value || '').split(';').filter(Boolean);
|
| 2073 |
}
|
|
@@ -2134,7 +2193,10 @@
|
|
| 2134 |
resource.user_goal,
|
| 2135 |
resource.lifecycle_stages,
|
| 2136 |
resource.audience,
|
|
|
|
|
|
|
| 2137 |
resource.evidence_class,
|
|
|
|
| 2138 |
resource.authors,
|
| 2139 |
resource.publication_year,
|
| 2140 |
resource.publication_venue,
|
|
@@ -2150,6 +2212,7 @@
|
|
| 2150 |
return (!query || haystack.indexOf(query) !== -1) &&
|
| 2151 |
(!type.value || resource.resource_type === type.value) &&
|
| 2152 |
(!stage.value || stages(resource.lifecycle_stages).indexOf(stage.value) !== -1) &&
|
|
|
|
| 2153 |
(!evidence.value || evidenceSet.indexOf(resource.evidence_class) !== -1) &&
|
| 2154 |
(!state.collection || resource.collection === state.collection);
|
| 2155 |
}
|
|
@@ -2183,10 +2246,12 @@
|
|
| 2183 |
var authors = formattedAuthors(resource.authors);
|
| 2184 |
var fullAuthors = authorNames(resource.authors).join(', ');
|
| 2185 |
var meta = [
|
|
|
|
| 2186 |
resource.collection,
|
| 2187 |
resource.section,
|
| 2188 |
-
|
| 2189 |
-
words(resource.
|
|
|
|
| 2190 |
].filter(Boolean).join(' | ');
|
| 2191 |
var signalClass = 'resource-signal ' + String(resource.signal_strength || 'unverified').toLowerCase();
|
| 2192 |
var signal = createText('span', signalClass, words(resource.signal_strength || 'unverified') + ' signal');
|
|
@@ -2232,17 +2297,24 @@
|
|
| 2232 |
|
| 2233 |
evidenceCell.className = 'resource-evidence';
|
| 2234 |
appendCellLabel(evidenceCell, 'Evidence');
|
| 2235 |
-
evidenceCell.appendChild(createText('span', 'resource-type-label', resource.
|
| 2236 |
evidenceCell.appendChild(signal);
|
| 2237 |
if (starCount) evidenceCell.appendChild(createText('span', 'resource-source-status', starCount + ' GitHub stars'));
|
| 2238 |
evidenceCell.appendChild(createText('span', 'resource-source-status', sourceStatus(resource)));
|
| 2239 |
|
| 2240 |
details.className = 'resource-details';
|
| 2241 |
-
details.appendChild(createText('summary', '', '
|
| 2242 |
detailGrid.className = 'resource-detail-grid';
|
| 2243 |
detailGrid.appendChild(detailSection('Contribution', [resource.key_contribution || resource.annotation]));
|
| 2244 |
detailGrid.appendChild(detailSection('Novelty', [resource.novelty]));
|
| 2245 |
detailGrid.appendChild(detailSection('Impact', [resource.impact]));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2246 |
detailGrid.appendChild(detailSection('Source record', sourceRecord.concat(resource.signal ? ['Evidence: ' + resource.signal] : [])));
|
| 2247 |
details.appendChild(detailGrid);
|
| 2248 |
|
|
@@ -2286,7 +2358,7 @@
|
|
| 2286 |
else compactResources.addListener(updatePageSize);
|
| 2287 |
|
| 2288 |
search.addEventListener('input', resetLimitAndRender);
|
| 2289 |
-
[type, stage, evidence, sort].forEach(function (control) {
|
| 2290 |
control.addEventListener('change', resetLimitAndRender);
|
| 2291 |
});
|
| 2292 |
collectionButtons.forEach(function (button) {
|
|
@@ -2306,6 +2378,7 @@
|
|
| 2306 |
search.value = '';
|
| 2307 |
type.value = '';
|
| 2308 |
stage.value = '';
|
|
|
|
| 2309 |
evidence.value = '';
|
| 2310 |
sort.value = 'curated';
|
| 2311 |
state.collection = '';
|
|
@@ -2321,7 +2394,7 @@
|
|
| 2321 |
loading = true;
|
| 2322 |
explorer.dataset.indexState = 'loading';
|
| 2323 |
list.setAttribute('aria-busy', 'true');
|
| 2324 |
-
count.textContent = 'Loading
|
| 2325 |
list.replaceChildren(createText('p', 'resource-loading', 'Loading audited resources...'));
|
| 2326 |
|
| 2327 |
fetch('assets/resources.json')
|
|
|
|
| 4 |
<meta charset="utf-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 6 |
<title>Awesome Loop Engineering</title>
|
| 7 |
+
<meta name="description" content="579 source-audited resources across model, agent, harness, workflow, and operations layers, plus 20 patterns, 20 contracts, and 8 runtime starters.">
|
| 8 |
<meta name="robots" content="index,follow">
|
| 9 |
<meta name="author" content="Chaoyue He">
|
| 10 |
<link rel="canonical" href="https://chaoyue0307.github.io/awesome-loop-engineering/">
|
|
|
|
| 15 |
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@500;600&family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
|
| 16 |
<meta property="og:type" content="website">
|
| 17 |
<meta property="og:title" content="Awesome Loop Engineering">
|
| 18 |
+
<meta property="og:description" content="579 source-audited resources across the model-to-operations stack, plus 20 patterns, 20 validated contracts, and 8 runtime starters.">
|
| 19 |
<meta property="og:url" content="https://chaoyue0307.github.io/awesome-loop-engineering/">
|
| 20 |
+
<meta property="og:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-579-v08.png">
|
| 21 |
<meta property="og:image:width" content="1280">
|
| 22 |
<meta property="og:image:height" content="640">
|
| 23 |
<meta property="og:image:alt" content="Awesome Loop Engineering: design loops, not just prompts.">
|
| 24 |
<meta name="twitter:card" content="summary_large_image">
|
| 25 |
<meta name="twitter:title" content="Awesome Loop Engineering">
|
| 26 |
+
<meta name="twitter:description" content="579 source-audited resources across the model-to-operations stack, plus a practical kit for recurring AI-agent systems.">
|
| 27 |
+
<meta name="twitter:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-579-v08.png">
|
| 28 |
<link rel="alternate" type="application/atom+xml" title="Awesome Loop Engineering releases" href="https://github.com/ChaoYue0307/awesome-loop-engineering/releases.atom">
|
| 29 |
<link rel="alternate" type="application/atom+xml" title="Awesome Loop Engineering commits" href="https://github.com/ChaoYue0307/awesome-loop-engineering/commits/main.atom">
|
| 30 |
<style>
|
|
|
|
| 350 |
.section-intro { max-width: 720px; margin: 0; color: var(--muted); }
|
| 351 |
.audit-note { margin: -17px 0 28px; border-top: 1px solid var(--line); padding-top: 13px; color: var(--muted); font-size: 0.8rem; }
|
| 352 |
.audit-note strong { color: var(--ink); }
|
| 353 |
+
.loop-layer-map {
|
| 354 |
+
display: grid;
|
| 355 |
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
| 356 |
+
margin: 0 0 28px;
|
| 357 |
+
border-top: 1px solid var(--line-strong);
|
| 358 |
+
border-bottom: 1px solid var(--line-strong);
|
| 359 |
+
}
|
| 360 |
+
.loop-layer-item { min-width: 0; padding: 18px 20px 18px 0; }
|
| 361 |
+
.loop-layer-item + .loop-layer-item { border-left: 1px solid var(--line); padding-left: 20px; }
|
| 362 |
+
.loop-layer-item span { display: block; color: var(--blue); font-family: "IBM Plex Mono", ui-monospace, monospace; font-size: 0.64rem; font-weight: 700; text-transform: uppercase; }
|
| 363 |
+
.loop-layer-item strong { display: block; margin-top: 6px; color: var(--ink); font-size: 0.92rem; }
|
| 364 |
+
.loop-layer-item p { margin: 6px 0 0; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
|
| 365 |
.diagram { width: 100%; margin: 0; }
|
| 366 |
.caption { margin: 13px 0 0; color: var(--quiet); font-size: 0.78rem; text-align: right; }
|
| 367 |
.supporting-visual { margin: 0 0 34px; }
|
|
|
|
| 724 |
.resource-explorer { border-top: 1px solid var(--line-strong); }
|
| 725 |
.resource-toolbar {
|
| 726 |
display: grid;
|
| 727 |
+
grid-template-columns: minmax(240px, 1.4fr) repeat(4, minmax(132px, 0.66fr)) auto;
|
| 728 |
gap: 10px;
|
| 729 |
padding: 16px 0;
|
| 730 |
border-bottom: 1px solid var(--line);
|
|
|
|
| 1145 |
.principle + .principle, .card + .card, .pattern + .pattern { padding-left: 0; }
|
| 1146 |
.principle, .card, .pattern { padding-top: 16px; padding-bottom: 16px; }
|
| 1147 |
.choice-why { grid-template-columns: 1fr; gap: 7px; padding: 18px 0; }
|
| 1148 |
+
.loop-layer-map { grid-template-columns: 1fr; }
|
| 1149 |
+
.loop-layer-item { padding: 16px 0; }
|
| 1150 |
+
.loop-layer-item + .loop-layer-item { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
|
| 1151 |
.choice-why p { font-size: 0.84rem; line-height: 1.55; }
|
| 1152 |
.choice-fit { grid-template-columns: 1fr; margin-bottom: 24px; }
|
| 1153 |
.choice-fit-column { padding: 18px 0; }
|
|
|
|
| 1245 |
"https://huggingface.co/datasets/cy0307/awesome-loop-engineering"
|
| 1246 |
],
|
| 1247 |
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
|
| 1248 |
+
"image": "https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-579-v08.png",
|
| 1249 |
"logo": "https://chaoyue0307.github.io/awesome-loop-engineering/assets/awesome-loop-engineering-logo.png",
|
| 1250 |
"author": { "@type": "Person", "name": "Chaoyue He" }
|
| 1251 |
}
|
|
|
|
| 1293 |
"@context": "https://schema.org",
|
| 1294 |
"@type": "Dataset",
|
| 1295 |
"name": "Awesome Loop Engineering resources",
|
| 1296 |
+
"description": "579 source-audited resources across model, agent, harness, workflow, operations, and evaluation layers, with explicit scope, contribution, novelty, impact, and evidence fields.",
|
| 1297 |
"url": "https://chaoyue0307.github.io/awesome-loop-engineering/",
|
| 1298 |
"sameAs": [
|
| 1299 |
"https://huggingface.co/datasets/cy0307/awesome-loop-engineering",
|
| 1300 |
"https://github.com/ChaoYue0307/awesome-loop-engineering"
|
| 1301 |
],
|
| 1302 |
"identifier": "https://huggingface.co/datasets/cy0307/awesome-loop-engineering",
|
| 1303 |
+
"version": "0.8.0",
|
| 1304 |
"license": "https://creativecommons.org/publicdomain/zero/1.0/",
|
| 1305 |
"isAccessibleForFree": true,
|
| 1306 |
"creator": { "@type": "Person", "name": "Chaoyue He" },
|
|
|
|
| 1368 |
<p class="section-label hero-kicker"><i class="icon" data-lucide="repeat-2" aria-hidden="true"></i><span>Field guide for recurring agent systems</span></p>
|
| 1369 |
<h1>Awesome Loop Engineering</h1>
|
| 1370 |
<p class="tagline">Design loops, not just prompts.</p>
|
| 1371 |
+
<p class="lead">579 source-audited resources from model recurrence to production operations, plus 20 patterns, 20 validated contracts, and 8 runtime starters for agent systems that must keep working.</p>
|
| 1372 |
<div class="actions">
|
| 1373 |
<a class="button primary" href="https://github.com/ChaoYue0307/awesome-loop-engineering#readme"><i class="icon" data-lucide="book-open" aria-hidden="true"></i>Explore resources</a>
|
| 1374 |
<a class="button" href="#choose"><i class="icon" data-lucide="compass" aria-hidden="true"></i>Choose a loop</a>
|
|
|
|
| 1425 |
</div>
|
| 1426 |
</figure>
|
| 1427 |
<div class="stats" role="list" aria-label="Field guide at a glance">
|
| 1428 |
+
<div class="stat" role="listitem"><b><i class="icon" data-lucide="library" aria-hidden="true"></i>579</b><span>audited resources</span></div>
|
| 1429 |
<div class="stat" role="listitem"><b><i class="icon" data-lucide="blocks" aria-hidden="true"></i>20</b><span>operational patterns</span></div>
|
| 1430 |
<div class="stat" role="listitem"><b><i class="icon" data-lucide="file-check-2" aria-hidden="true"></i>20</b><span>loop contracts</span></div>
|
| 1431 |
<div class="stat" role="listitem"><b><i class="icon" data-lucide="play" aria-hidden="true"></i>8</b><span>runtime starters</span></div>
|
|
|
|
| 1725 |
<p class="section-label"><i class="icon" data-lucide="library" aria-hidden="true"></i><span>06 / Resource atlas</span></p>
|
| 1726 |
<h2>Find evidence, not just links.</h2>
|
| 1727 |
</div>
|
| 1728 |
+
<p class="section-intro">Filter 579 source-audited works by goal, loop layer, lifecycle, artifact type, and evidence class. Open any result for contribution, novelty, impact, scope, provenance, and source metadata.</p>
|
| 1729 |
+
</div>
|
| 1730 |
+
<p class="audit-note"><strong>Audit snapshot, 2026-07-18 UTC:</strong> all 579 rows checked; 528 public sources reachable, 3 access-restricted, 48 repository-native, and 0 broken or unreachable. <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/data/resource_source_audit.csv">Inspect the audit</a> or <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/issues/new?template=annotation-correction.yml">report a correction</a>.</p>
|
| 1731 |
+
<div class="loop-layer-map" aria-label="Where different loop concepts live">
|
| 1732 |
+
<div class="loop-layer-item"><span>Inner loop</span><strong>Model recurrence</strong><p>A learned block refines hidden or latent state inside one inference. Included as an adjacent foundation.</p></div>
|
| 1733 |
+
<div class="loop-layer-item"><span>Task loop</span><strong>Agent execution</strong><p>The model reasons, calls tools, observes results, and updates working state while solving one task.</p></div>
|
| 1734 |
+
<div class="loop-layer-item"><span>Outer loop</span><strong>Operational governance</strong><p>Triggers, evidence gates, durable state, budgets, handoff, and exit govern repeated work.</p></div>
|
| 1735 |
</div>
|
|
|
|
| 1736 |
<div class="resource-explorer" id="resource-explorer">
|
| 1737 |
<div class="resource-toolbar" role="search" aria-label="Search resources">
|
| 1738 |
<label>
|
|
|
|
| 1758 |
<span class="sr-only">Lifecycle stage</span>
|
| 1759 |
<select class="resource-select" id="resource-stage">
|
| 1760 |
<option value="">All lifecycle stages</option>
|
| 1761 |
+
<option value="act">Model / agent action</option>
|
| 1762 |
<option value="objective">Objective</option>
|
| 1763 |
<option value="trigger">Trigger</option>
|
| 1764 |
<option value="intake">Intake</option>
|
|
|
|
| 1773 |
<option value="whole-loop">Whole loop</option>
|
| 1774 |
</select>
|
| 1775 |
</label>
|
| 1776 |
+
<label>
|
| 1777 |
+
<span class="sr-only">Loop layer</span>
|
| 1778 |
+
<select class="resource-select" id="resource-layer">
|
| 1779 |
+
<option value="">All loop layers</option>
|
| 1780 |
+
<option value="model">Model</option>
|
| 1781 |
+
<option value="agent">Agent</option>
|
| 1782 |
+
<option value="harness">Harness</option>
|
| 1783 |
+
<option value="workflow">Workflow</option>
|
| 1784 |
+
<option value="operations">Operations</option>
|
| 1785 |
+
<option value="evaluation">Evaluation</option>
|
| 1786 |
+
<option value="cross-layer">Cross-layer</option>
|
| 1787 |
+
</select>
|
| 1788 |
+
</label>
|
| 1789 |
<label>
|
| 1790 |
<span class="sr-only">Evidence class</span>
|
| 1791 |
<select class="resource-select" id="resource-evidence">
|
|
|
|
| 1811 |
<button class="resource-collection" type="button" data-collection="Apply" aria-pressed="false"><i class="icon" data-lucide="package-open" aria-hidden="true"></i>Apply</button>
|
| 1812 |
</div>
|
| 1813 |
<div class="resource-summary">
|
| 1814 |
+
<p class="resource-count" id="resource-count" aria-live="polite">Preparing 579 resources...</p>
|
| 1815 |
<label>
|
| 1816 |
<span class="sr-only">Sort resources</span>
|
| 1817 |
<select class="resource-select resource-sort" id="resource-sort">
|
|
|
|
| 1961 |
title = {Awesome Loop Engineering},
|
| 1962 |
year = {2026},
|
| 1963 |
howpublished = {\url{https://github.com/ChaoYue0307/awesome-loop-engineering}},
|
| 1964 |
+
note = {Version 0.8.0}
|
| 1965 |
}</pre>
|
| 1966 |
</div>
|
| 1967 |
</div>
|
|
|
|
| 2076 |
var search = document.getElementById('resource-search');
|
| 2077 |
var type = document.getElementById('resource-type');
|
| 2078 |
var stage = document.getElementById('resource-stage');
|
| 2079 |
+
var layer = document.getElementById('resource-layer');
|
| 2080 |
var evidence = document.getElementById('resource-evidence');
|
| 2081 |
var sort = document.getElementById('resource-sort');
|
| 2082 |
var reset = document.getElementById('resource-reset');
|
|
|
|
| 2103 |
return String(value || '').replace(/-/g, ' ');
|
| 2104 |
}
|
| 2105 |
|
| 2106 |
+
function loopLayerLabel(value) {
|
| 2107 |
+
if (!value) return '';
|
| 2108 |
+
return value === 'cross-layer' ? 'cross-layer' : words(value) + ' layer';
|
| 2109 |
+
}
|
| 2110 |
+
|
| 2111 |
+
function evidenceLabel(value) {
|
| 2112 |
+
var labels = {
|
| 2113 |
+
'research-paper': 'Research paper',
|
| 2114 |
+
'research-preprint': 'Research preprint',
|
| 2115 |
+
'official-documentation': 'Official documentation',
|
| 2116 |
+
'technical-documentation': 'Technical documentation',
|
| 2117 |
+
'source-implementation': 'Source implementation',
|
| 2118 |
+
'implementation': 'Implementation',
|
| 2119 |
+
'benchmark': 'Benchmark or evaluation',
|
| 2120 |
+
'repository-native': 'Validated project artifact',
|
| 2121 |
+
'reusable-artifact': 'Reusable artifact',
|
| 2122 |
+
'operational-pattern': 'Operational pattern',
|
| 2123 |
+
'practitioner-analysis': 'Practitioner analysis',
|
| 2124 |
+
'risk-analysis': 'Risk analysis',
|
| 2125 |
+
'curated-index': 'Curated index'
|
| 2126 |
+
};
|
| 2127 |
+
return labels[value] || words(value);
|
| 2128 |
+
}
|
| 2129 |
+
|
| 2130 |
function stages(value) {
|
| 2131 |
return String(value || '').split(';').filter(Boolean);
|
| 2132 |
}
|
|
|
|
| 2193 |
resource.user_goal,
|
| 2194 |
resource.lifecycle_stages,
|
| 2195 |
resource.audience,
|
| 2196 |
+
resource.loop_layer,
|
| 2197 |
+
resource.scope_fit,
|
| 2198 |
resource.evidence_class,
|
| 2199 |
+
resource.evidence_tier,
|
| 2200 |
resource.authors,
|
| 2201 |
resource.publication_year,
|
| 2202 |
resource.publication_venue,
|
|
|
|
| 2212 |
return (!query || haystack.indexOf(query) !== -1) &&
|
| 2213 |
(!type.value || resource.resource_type === type.value) &&
|
| 2214 |
(!stage.value || stages(resource.lifecycle_stages).indexOf(stage.value) !== -1) &&
|
| 2215 |
+
(!layer.value || resource.loop_layer === layer.value) &&
|
| 2216 |
(!evidence.value || evidenceSet.indexOf(resource.evidence_class) !== -1) &&
|
| 2217 |
(!state.collection || resource.collection === state.collection);
|
| 2218 |
}
|
|
|
|
| 2246 |
var authors = formattedAuthors(resource.authors);
|
| 2247 |
var fullAuthors = authorNames(resource.authors).join(', ');
|
| 2248 |
var meta = [
|
| 2249 |
+
resource.resource_type,
|
| 2250 |
resource.collection,
|
| 2251 |
resource.section,
|
| 2252 |
+
loopLayerLabel(resource.loop_layer),
|
| 2253 |
+
resource.scope_fit ? words(resource.scope_fit) + ' scope' : '',
|
| 2254 |
+
stages(resource.lifecycle_stages).map(words).join(' / ')
|
| 2255 |
].filter(Boolean).join(' | ');
|
| 2256 |
var signalClass = 'resource-signal ' + String(resource.signal_strength || 'unverified').toLowerCase();
|
| 2257 |
var signal = createText('span', signalClass, words(resource.signal_strength || 'unverified') + ' signal');
|
|
|
|
| 2297 |
|
| 2298 |
evidenceCell.className = 'resource-evidence';
|
| 2299 |
appendCellLabel(evidenceCell, 'Evidence');
|
| 2300 |
+
evidenceCell.appendChild(createText('span', 'resource-type-label', 'Tier ' + (resource.evidence_tier || 'C') + ' · ' + evidenceLabel(resource.evidence_class)));
|
| 2301 |
evidenceCell.appendChild(signal);
|
| 2302 |
if (starCount) evidenceCell.appendChild(createText('span', 'resource-source-status', starCount + ' GitHub stars'));
|
| 2303 |
evidenceCell.appendChild(createText('span', 'resource-source-status', sourceStatus(resource)));
|
| 2304 |
|
| 2305 |
details.className = 'resource-details';
|
| 2306 |
+
details.appendChild(createText('summary', '', 'Why it matters, where it fits, and source record'));
|
| 2307 |
detailGrid.className = 'resource-detail-grid';
|
| 2308 |
detailGrid.appendChild(detailSection('Contribution', [resource.key_contribution || resource.annotation]));
|
| 2309 |
detailGrid.appendChild(detailSection('Novelty', [resource.novelty]));
|
| 2310 |
detailGrid.appendChild(detailSection('Impact', [resource.impact]));
|
| 2311 |
+
detailGrid.appendChild(detailSection('Use it for', [
|
| 2312 |
+
resource.user_goal ? 'Goal: ' + resource.user_goal : '',
|
| 2313 |
+
resource.loop_layer ? 'Loop layer: ' + words(resource.loop_layer) : '',
|
| 2314 |
+
resource.scope_fit ? 'Scope fit: ' + words(resource.scope_fit) : '',
|
| 2315 |
+
resource.lifecycle_stages ? 'Loop stages: ' + stages(resource.lifecycle_stages).map(words).join(', ') : '',
|
| 2316 |
+
resource.audience ? 'Audience: ' + String(resource.audience).split(';').map(words).join(', ') : ''
|
| 2317 |
+
]));
|
| 2318 |
detailGrid.appendChild(detailSection('Source record', sourceRecord.concat(resource.signal ? ['Evidence: ' + resource.signal] : [])));
|
| 2319 |
details.appendChild(detailGrid);
|
| 2320 |
|
|
|
|
| 2358 |
else compactResources.addListener(updatePageSize);
|
| 2359 |
|
| 2360 |
search.addEventListener('input', resetLimitAndRender);
|
| 2361 |
+
[type, stage, layer, evidence, sort].forEach(function (control) {
|
| 2362 |
control.addEventListener('change', resetLimitAndRender);
|
| 2363 |
});
|
| 2364 |
collectionButtons.forEach(function (button) {
|
|
|
|
| 2378 |
search.value = '';
|
| 2379 |
type.value = '';
|
| 2380 |
stage.value = '';
|
| 2381 |
+
layer.value = '';
|
| 2382 |
evidence.value = '';
|
| 2383 |
sort.value = 'curated';
|
| 2384 |
state.collection = '';
|
|
|
|
| 2394 |
loading = true;
|
| 2395 |
explorer.dataset.indexState = 'loading';
|
| 2396 |
list.setAttribute('aria-busy', 'true');
|
| 2397 |
+
count.textContent = 'Loading 579 audited resources...';
|
| 2398 |
list.replaceChildren(createText('p', 'resource-loading', 'Loading audited resources...'));
|
| 2399 |
|
| 2400 |
fetch('assets/resources.json')
|
docs/x-v07-555.html
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 6 |
+
<title>Awesome Loop Engineering: 555 source-audited resources</title>
|
| 7 |
+
<meta name="description" content="A source-audited field guide with 555 resources, 20 operational patterns, 20 validated contracts, and 8 runtime starters for recurring AI-agent systems.">
|
| 8 |
+
<meta name="robots" content="noindex,follow">
|
| 9 |
+
<link rel="canonical" href="https://chaoyue0307.github.io/awesome-loop-engineering/x-v07-555.html">
|
| 10 |
+
<meta property="og:type" content="website">
|
| 11 |
+
<meta property="og:title" content="Awesome Loop Engineering">
|
| 12 |
+
<meta property="og:description" content="555 source-audited resources, 20 operational patterns, 20 validated contracts, and 8 runtime starters for recurring AI-agent systems.">
|
| 13 |
+
<meta property="og:url" content="https://chaoyue0307.github.io/awesome-loop-engineering/x-v07-555.html">
|
| 14 |
+
<meta property="og:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-555-v07.png">
|
| 15 |
+
<meta property="og:image:width" content="1280">
|
| 16 |
+
<meta property="og:image:height" content="640">
|
| 17 |
+
<meta property="og:image:alt" content="Awesome Loop Engineering: design loops, not just prompts. 555 source-audited resources, 20 patterns, 20 contracts, and 8 runtime starters.">
|
| 18 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 19 |
+
<meta name="twitter:title" content="Awesome Loop Engineering">
|
| 20 |
+
<meta name="twitter:description" content="555 source-audited resources and a 20-pattern implementation kit for recurring, stateful, verified AI-agent systems.">
|
| 21 |
+
<meta name="twitter:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-555-v07.png">
|
| 22 |
+
<meta name="twitter:image:alt" content="Awesome Loop Engineering: 555 source-audited resources, 20 patterns, 20 contracts, and 8 runtime starters.">
|
| 23 |
+
<link rel="icon" href="assets/favicon-32.png" type="image/png" sizes="32x32">
|
| 24 |
+
<style>
|
| 25 |
+
:root { color-scheme: light; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
|
| 26 |
+
body { display: grid; min-height: 100vh; margin: 0; place-items: center; background: #f7f9fc; color: #111827; }
|
| 27 |
+
main { width: min(88vw, 420px); text-align: center; }
|
| 28 |
+
img { width: 72px; height: 72px; }
|
| 29 |
+
p { color: #526176; line-height: 1.6; }
|
| 30 |
+
a { color: #1d4ed8; font-weight: 700; }
|
| 31 |
+
</style>
|
| 32 |
+
<script>
|
| 33 |
+
window.location.replace("https://chaoyue0307.github.io/awesome-loop-engineering/?utm_source=x&utm_medium=social&utm_campaign=v0.7.0");
|
| 34 |
+
</script>
|
| 35 |
+
</head>
|
| 36 |
+
<body>
|
| 37 |
+
<main>
|
| 38 |
+
<img src="assets/awesome-loop-engineering-logo.png" alt="Awesome Loop Engineering">
|
| 39 |
+
<h1>Awesome Loop Engineering</h1>
|
| 40 |
+
<p>Opening the interactive Resource Atlas.</p>
|
| 41 |
+
<p><a href="https://chaoyue0307.github.io/awesome-loop-engineering/?utm_source=x&utm_medium=social&utm_campaign=v0.7.0">Continue to the site</a></p>
|
| 42 |
+
</main>
|
| 43 |
+
</body>
|
| 44 |
+
</html>
|
docs/x-v08-579.html
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!doctype html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="utf-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
| 6 |
+
<title>Awesome Loop Engineering: 579 source-audited resources</title>
|
| 7 |
+
<meta name="description" content="A source-audited field guide spanning model recurrence, agent execution, and operations, with 20 patterns, 20 contracts, and 8 runtime starters.">
|
| 8 |
+
<meta name="robots" content="noindex,follow">
|
| 9 |
+
<link rel="canonical" href="https://chaoyue0307.github.io/awesome-loop-engineering/x-v08-579.html">
|
| 10 |
+
<meta property="og:type" content="website">
|
| 11 |
+
<meta property="og:title" content="Awesome Loop Engineering">
|
| 12 |
+
<meta property="og:description" content="579 source-audited resources across the model-to-operations stack, plus a practical implementation kit for recurring AI-agent systems.">
|
| 13 |
+
<meta property="og:url" content="https://chaoyue0307.github.io/awesome-loop-engineering/x-v08-579.html">
|
| 14 |
+
<meta property="og:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-579-v08.png">
|
| 15 |
+
<meta property="og:image:width" content="1280">
|
| 16 |
+
<meta property="og:image:height" content="640">
|
| 17 |
+
<meta property="og:image:alt" content="Awesome Loop Engineering: design loops, not just prompts. 579 source-audited resources, 20 patterns, 20 contracts, and 8 runtime starters.">
|
| 18 |
+
<meta name="twitter:card" content="summary_large_image">
|
| 19 |
+
<meta name="twitter:title" content="Awesome Loop Engineering">
|
| 20 |
+
<meta name="twitter:description" content="579 source-audited resources across model, agent, harness, workflow, operations, and evaluation layers.">
|
| 21 |
+
<meta name="twitter:image" content="https://chaoyue0307.github.io/awesome-loop-engineering/assets/social-preview-579-v08.png">
|
| 22 |
+
<meta name="twitter:image:alt" content="Awesome Loop Engineering: 579 source-audited resources, 20 patterns, 20 contracts, and 8 runtime starters.">
|
| 23 |
+
<link rel="icon" href="assets/favicon-32.png" type="image/png" sizes="32x32">
|
| 24 |
+
<style>
|
| 25 |
+
:root { color-scheme: light; font-family: Inter, ui-sans-serif, system-ui, sans-serif; }
|
| 26 |
+
body { display: grid; min-height: 100vh; margin: 0; place-items: center; background: #f7f9fc; color: #111827; }
|
| 27 |
+
main { width: min(88vw, 420px); text-align: center; }
|
| 28 |
+
img { width: 72px; height: 72px; }
|
| 29 |
+
p { color: #526176; line-height: 1.6; }
|
| 30 |
+
a { color: #1d4ed8; font-weight: 700; }
|
| 31 |
+
</style>
|
| 32 |
+
<script>
|
| 33 |
+
window.location.replace("https://chaoyue0307.github.io/awesome-loop-engineering/?utm_source=x&utm_medium=social&utm_campaign=v0.8.0");
|
| 34 |
+
</script>
|
| 35 |
+
</head>
|
| 36 |
+
<body>
|
| 37 |
+
<main>
|
| 38 |
+
<img src="assets/awesome-loop-engineering-logo.png" alt="Awesome Loop Engineering">
|
| 39 |
+
<h1>Awesome Loop Engineering</h1>
|
| 40 |
+
<p>Opening the interactive Resource Atlas.</p>
|
| 41 |
+
<p><a href="https://chaoyue0307.github.io/awesome-loop-engineering/?utm_source=x&utm_medium=social&utm_campaign=v0.8.0">Continue to the site</a></p>
|
| 42 |
+
</main>
|
| 43 |
+
</body>
|
| 44 |
+
</html>
|
meta/CURATION.md
CHANGED
|
@@ -51,6 +51,9 @@ The public dataset keeps those layers separate:
|
|
| 51 |
|
| 52 |
- `annotation`, `key_contribution`, `novelty`, and `impact` are original editorial syntheses;
|
| 53 |
- `source_title`, `source_description`, authorship, date, venue, DOI, and repository statistics come from the source audit and record their metadata provenance;
|
|
|
|
|
|
|
|
|
|
| 54 |
- `signal_strength` describes the kind of evidence available, not whether the maintainer agrees with the work;
|
| 55 |
- `source_status` records reachability at one point in time and is not a guarantee of future availability.
|
| 56 |
|
|
|
|
| 51 |
|
| 52 |
- `annotation`, `key_contribution`, `novelty`, and `impact` are original editorial syntheses;
|
| 53 |
- `source_title`, `source_description`, authorship, date, venue, DOI, and repository statistics come from the source audit and record their metadata provenance;
|
| 54 |
+
- `evidence_tier` records whether the row is a primary source, implementation-grounded practitioner source, or curated synthesis;
|
| 55 |
+
- `loop_layer` records whether recurrence lives inside the model, agent, harness, workflow, operations, evaluation, or spans layers;
|
| 56 |
+
- `scope_fit` records whether a resource directly describes operational Loop Engineering, enables it, or is an explicitly adjacent foundation;
|
| 57 |
- `signal_strength` describes the kind of evidence available, not whether the maintainer agrees with the work;
|
| 58 |
- `source_status` records reachability at one point in time and is not a guarantee of future availability.
|
| 59 |
|
meta/DISTRIBUTION.md
CHANGED
|
@@ -8,8 +8,8 @@ Status as of 2026-07-18:
|
|
| 8 |
|
| 9 |
| Surface | Status | Evidence / next action |
|
| 10 |
| --- | --- | --- |
|
| 11 |
-
| GitHub release | Complete | [`v0.
|
| 12 |
-
| Release announcement | Ready | Publish the v0.
|
| 13 |
| GitHub Explore topic | Complete | [`github/explore#5209`](https://github.com/github/explore/pull/5209) merged the `loop-engineering` topic page. |
|
| 14 |
| Canonical Awesome directory | Policy objection | [`sindresorhus/awesome#4339`](https://github.com/sindresorhus/awesome/pull/4339) is open and lint passes, but the owner stated that AI-generated lists are not accepted. Do not treat further visual polish as a path around that policy or misrepresent automated assistance. |
|
| 15 |
| Adjacent harness directory | In review | [`ai-boost/awesome-harness-engineering#131`](https://github.com/ai-boost/awesome-harness-engineering/pull/131) transparently proposes the project for the list's Related Awesome Lists section. |
|
|
@@ -33,7 +33,7 @@ The Hugging Face dataset [`datasets/cy0307/awesome-loop-engineering`](https://hu
|
|
| 33 |
|
| 34 |
- The mirror tracks the full GitHub tree (docs, patterns, examples, schema, scripts).
|
| 35 |
- The dataset mirror includes generated resource sheets at `data/resources.csv` and `data/resources.jsonl`, refreshed from the canonical English `README.md` by `scripts/export_resource_dataset.py`.
|
| 36 |
-
- The HF copy of `README.md` is a focused dataset card generated from `meta/hf_card_header.yaml` and `meta/hf_card_body.md` by `scripts/build_hf_card.py`. It documents intended uses, provenance, limitations, loading examples, and the current audit snapshot without duplicating the
|
| 37 |
- The YAML header is **HF-only**: it must never be added to the GitHub `README.md`, because the metadata list items break `awesome-lint`.
|
| 38 |
- Sync uses `python3 scripts/build_hf_card.py --output <staging>/README.md` followed by `hf upload --type dataset` against a staging copy. The token lives in the local Hugging Face cache; no token is committed.
|
| 39 |
|
|
@@ -50,7 +50,7 @@ Use GitHub-native discovery in this order.
|
|
| 50 |
```
|
| 51 |
|
| 52 |
- **Pin the repository** on your profile, and add it to your profile README (profile-level promotion).
|
| 53 |
-
- **About description.** Keep this concise proof-point copy aligned with the README and project site: `🔁
|
| 54 |
- **Custom social preview** (repo Settings, Social preview) so shared links lead with the same four durable proof points. This is UI-only; it cannot be set through the API.
|
| 55 |
- **Releases and Discussions** provide a lower-noise subscription path. Recommend `Watch -> Custom -> Releases and Discussions`; do not ask readers to watch every repository event.
|
| 56 |
|
|
@@ -91,10 +91,10 @@ Use the canonical [English launch article](../posts/launch.md) or [Chinese launc
|
|
| 91 |
### Short Post
|
| 92 |
|
| 93 |
```text
|
| 94 |
-
🔁 Awesome Loop Engineering v0.
|
| 95 |
|
| 96 |
-
🧭 Explore:
|
| 97 |
-
https://chaoyue0307.github.io/awesome-loop-engineering/
|
| 98 |
|
| 99 |
#AIAgents #AgentEngineering #LoopEngineering
|
| 100 |
```
|
|
@@ -102,17 +102,18 @@ https://chaoyue0307.github.io/awesome-loop-engineering/
|
|
| 102 |
### Longer Post
|
| 103 |
|
| 104 |
```text
|
| 105 |
-
Awesome Loop Engineering v0.
|
| 106 |
|
| 107 |
-
Loop
|
| 108 |
|
| 109 |
The release includes:
|
| 110 |
|
| 111 |
-
-
|
|
|
|
| 112 |
- an interactive Resource Atlas
|
| 113 |
- 20 operational patterns and 20 validated loop contracts
|
| 114 |
- 8 runtime starters: 3 executables and 5 copy/paste templates
|
| 115 |
-
- CSV and
|
| 116 |
- a public provenance standard and point-in-time source audit
|
| 117 |
|
| 118 |
Explore, reuse, or correct the map:
|
|
@@ -124,11 +125,11 @@ https://github.com/ChaoYue0307/awesome-loop-engineering
|
|
| 124 |
Use a regular submission, not Show HN.
|
| 125 |
|
| 126 |
```text
|
| 127 |
-
Title: Awesome Loop Engineering:
|
| 128 |
|
| 129 |
I have been mapping recurring AI-agent systems: how work enters, agents act, evidence gates results, state survives, and the system retries, escalates, or exits.
|
| 130 |
|
| 131 |
-
The repository includes
|
| 132 |
|
| 133 |
https://github.com/ChaoYue0307/awesome-loop-engineering
|
| 134 |
```
|
|
|
|
| 8 |
|
| 9 |
| Surface | Status | Evidence / next action |
|
| 10 |
| --- | --- | --- |
|
| 11 |
+
| GitHub release | Complete | [`v0.8.0`](https://github.com/ChaoYue0307/awesome-loop-engineering/releases/tag/v0.8.0) packages 579 resources, 20 patterns and contracts, 8 runtime starters, and explicit model-to-operations scope facets. |
|
| 12 |
+
| Release announcement | Ready | Publish the v0.8.0 summary from [`posts/launch.md`](../posts/launch.md); [Discussion #9](https://github.com/ChaoYue0307/awesome-loop-engineering/discussions/9) remains the low-noise release and contributor feed. |
|
| 13 |
| GitHub Explore topic | Complete | [`github/explore#5209`](https://github.com/github/explore/pull/5209) merged the `loop-engineering` topic page. |
|
| 14 |
| Canonical Awesome directory | Policy objection | [`sindresorhus/awesome#4339`](https://github.com/sindresorhus/awesome/pull/4339) is open and lint passes, but the owner stated that AI-generated lists are not accepted. Do not treat further visual polish as a path around that policy or misrepresent automated assistance. |
|
| 15 |
| Adjacent harness directory | In review | [`ai-boost/awesome-harness-engineering#131`](https://github.com/ai-boost/awesome-harness-engineering/pull/131) transparently proposes the project for the list's Related Awesome Lists section. |
|
|
|
|
| 33 |
|
| 34 |
- The mirror tracks the full GitHub tree (docs, patterns, examples, schema, scripts).
|
| 35 |
- The dataset mirror includes generated resource sheets at `data/resources.csv` and `data/resources.jsonl`, refreshed from the canonical English `README.md` by `scripts/export_resource_dataset.py`.
|
| 36 |
+
- The HF copy of `README.md` is a focused dataset card generated from `meta/hf_card_header.yaml` and `meta/hf_card_body.md` by `scripts/build_hf_card.py`. It documents intended uses, provenance, limitations, loading examples, and the current audit snapshot without duplicating the 579-row GitHub README.
|
| 37 |
- The YAML header is **HF-only**: it must never be added to the GitHub `README.md`, because the metadata list items break `awesome-lint`.
|
| 38 |
- Sync uses `python3 scripts/build_hf_card.py --output <staging>/README.md` followed by `hf upload --type dataset` against a staging copy. The token lives in the local Hugging Face cache; no token is committed.
|
| 39 |
|
|
|
|
| 50 |
```
|
| 51 |
|
| 52 |
- **Pin the repository** on your profile, and add it to your profile README (profile-level promotion).
|
| 53 |
+
- **About description.** Keep this concise proof-point copy aligned with the README and project site: `🔁 579 source-audited resources across model, agent, harness, workflow, operations, and evaluation layers · 20 patterns · 20 contracts · 8 runtime starters.`
|
| 54 |
- **Custom social preview** (repo Settings, Social preview) so shared links lead with the same four durable proof points. This is UI-only; it cannot be set through the API.
|
| 55 |
- **Releases and Discussions** provide a lower-noise subscription path. Recommend `Watch -> Custom -> Releases and Discussions`; do not ask readers to watch every repository event.
|
| 56 |
|
|
|
|
| 91 |
### Short Post
|
| 92 |
|
| 93 |
```text
|
| 94 |
+
🔁 Awesome Loop Engineering v0.8.0 is live: 579 source-audited resources across the model-to-operations stack, plus 20 patterns, 20 contracts, and 8 runtime starters.
|
| 95 |
|
| 96 |
+
🧭 Explore the layers:
|
| 97 |
+
https://chaoyue0307.github.io/awesome-loop-engineering/x-v08-579.html
|
| 98 |
|
| 99 |
#AIAgents #AgentEngineering #LoopEngineering
|
| 100 |
```
|
|
|
|
| 102 |
### Longer Post
|
| 103 |
|
| 104 |
```text
|
| 105 |
+
Awesome Loop Engineering v0.8.0 is live.
|
| 106 |
|
| 107 |
+
"Loop" can mean recurrent computation inside a model, reasoning and tools inside one task, or verified work repeated across time. v0.8.0 maps all three without confusing their guarantees.
|
| 108 |
|
| 109 |
The release includes:
|
| 110 |
|
| 111 |
+
- 579 source-audited resources
|
| 112 |
+
- 23 selected model-recurrence papers labeled as adjacent foundations
|
| 113 |
- an interactive Resource Atlas
|
| 114 |
- 20 operational patterns and 20 validated loop contracts
|
| 115 |
- 8 runtime starters: 3 executables and 5 copy/paste templates
|
| 116 |
+
- 50-field CSV, JSONL, and Parquet exports mirrored to Hugging Face
|
| 117 |
- a public provenance standard and point-in-time source audit
|
| 118 |
|
| 119 |
Explore, reuse, or correct the map:
|
|
|
|
| 125 |
Use a regular submission, not Show HN.
|
| 126 |
|
| 127 |
```text
|
| 128 |
+
Title: Awesome Loop Engineering: 579 resources from looped models to agent operations
|
| 129 |
|
| 130 |
I have been mapping recurring AI-agent systems: how work enters, agents act, evidence gates results, state survives, and the system retries, escalates, or exits.
|
| 131 |
|
| 132 |
+
The repository includes 579 source-audited works across model, agent, harness, workflow, operations, and evaluation layers; 20 operational patterns; 20 validated contracts; 8 runtime starters; an interactive Resource Atlas; and a structured Hugging Face dataset. Model-level recurrence is explicitly labeled as an adjacent foundation rather than a complete operational loop. The curation and audit methods are public; corrections to the taxonomy and annotations are especially welcome.
|
| 133 |
|
| 134 |
https://github.com/ChaoYue0307/awesome-loop-engineering
|
| 135 |
```
|
meta/OUTREACH.md
CHANGED
|
@@ -38,7 +38,7 @@ https://github.com/ChaoYue0307/awesome-loop-engineering/issues/new?template=anno
|
|
| 38 |
## Maintainer Request
|
| 39 |
|
| 40 |
```text
|
| 41 |
-
Hi <name>, Awesome Loop Engineering is a source-audited field guide and implementation kit for recurring AI-agent systems. It includes
|
| 42 |
|
| 43 |
Would it fit the related-resources policy for <project or newsletter>? I can provide a shorter description or submit through the normal contribution process:
|
| 44 |
https://github.com/ChaoYue0307/awesome-loop-engineering
|
|
|
|
| 38 |
## Maintainer Request
|
| 39 |
|
| 40 |
```text
|
| 41 |
+
Hi <name>, Awesome Loop Engineering is a source-audited field guide and implementation kit for recurring AI-agent systems. It includes 579 resources across model-to-operations layers, 20 operational patterns, 20 validated contracts, 8 runtime starters, and a structured dataset.
|
| 42 |
|
| 43 |
Would it fit the related-resources policy for <project or newsletter>? I can provide a shorter description or submit through the normal contribution process:
|
| 44 |
https://github.com/ChaoYue0307/awesome-loop-engineering
|
meta/hf_card_body.md
CHANGED
|
@@ -67,6 +67,10 @@ papers = resources.filter(lambda row: row["resource_type"] == "Paper")
|
|
| 67 |
verification = resources.filter(
|
| 68 |
lambda row: "verification" in row["lifecycle_stages"].split(";")
|
| 69 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
| 70 |
```
|
| 71 |
|
| 72 |
For pandas:
|
|
@@ -85,6 +89,7 @@ Use `url` as the durable join key. `row_id` and `source_line` are positional and
|
|
| 85 |
|
| 86 |
- Find primary sources and implementation references for recurring agent systems.
|
| 87 |
- Compare works by lifecycle, audience, evidence class, source type, and publication metadata.
|
|
|
|
| 88 |
- Build literature maps, reading lists, dashboards, or retrieval indexes.
|
| 89 |
- Audit contribution, novelty, impact, provenance, and evidence claims.
|
| 90 |
- Find reusable patterns, contracts, schemas, executable examples, and copy/paste runtime templates.
|
|
@@ -111,8 +116,9 @@ The primary configuration is `resources`, with one `train` split backed by the n
|
|
| 111 |
| --- | --- | --- |
|
| 112 |
| Identity | `row_id`, `title`, `url`, `canonical_url`, `resource_type`, `domain` | What the resource is and where it lives. |
|
| 113 |
| Editorial assessment | `annotation`, `key_contribution`, `novelty`, `impact` | What the resource contributes to recurring agent systems. |
|
|
|
|
| 114 |
| Navigation | `section`, `collection`, `user_goal`, `lifecycle_stages`, `audience` | Where the resource fits and who it serves. |
|
| 115 |
-
| Evidence | `evidence_class`, `signal`, `signal_strength`, `source_status`, `audited_at` | What kind of evidence or provenance is available. |
|
| 116 |
| Publication | `authors`, `publication_date`, `publication_year`, `publication_venue`, `publisher`, `doi`, `arxiv_id`, `primary_category` | Bibliographic data exposed by the canonical source. |
|
| 117 |
| Source provenance | `source_title`, `source_description`, `metadata_source`, `publication_note` | Where metadata came from and what caveats accompany it. |
|
| 118 |
| Repository context | `github_repo`, `github_stars`, `github_forks`, `github_license`, `github_created_at`, `github_updated_at` | Point-in-time adoption and maintenance context for GitHub projects. |
|
|
|
|
| 67 |
verification = resources.filter(
|
| 68 |
lambda row: "verification" in row["lifecycle_stages"].split(";")
|
| 69 |
)
|
| 70 |
+
model_recurrence = resources.filter(
|
| 71 |
+
lambda row: row["loop_layer"] == "model"
|
| 72 |
+
and row["scope_fit"] == "adjacent"
|
| 73 |
+
)
|
| 74 |
```
|
| 75 |
|
| 76 |
For pandas:
|
|
|
|
| 89 |
|
| 90 |
- Find primary sources and implementation references for recurring agent systems.
|
| 91 |
- Compare works by lifecycle, audience, evidence class, source type, and publication metadata.
|
| 92 |
+
- Separate model, agent, harness, workflow, operations, evaluation, and cross-layer resources without treating adjacent model recurrence as a complete operational loop.
|
| 93 |
- Build literature maps, reading lists, dashboards, or retrieval indexes.
|
| 94 |
- Audit contribution, novelty, impact, provenance, and evidence claims.
|
| 95 |
- Find reusable patterns, contracts, schemas, executable examples, and copy/paste runtime templates.
|
|
|
|
| 116 |
| --- | --- | --- |
|
| 117 |
| Identity | `row_id`, `title`, `url`, `canonical_url`, `resource_type`, `domain` | What the resource is and where it lives. |
|
| 118 |
| Editorial assessment | `annotation`, `key_contribution`, `novelty`, `impact` | What the resource contributes to recurring agent systems. |
|
| 119 |
+
| Scope | `loop_layer`, `scope_fit` | Where recurrence lives and whether the source is direct, enabling, or adjacent to operational Loop Engineering. |
|
| 120 |
| Navigation | `section`, `collection`, `user_goal`, `lifecycle_stages`, `audience` | Where the resource fits and who it serves. |
|
| 121 |
+
| Evidence | `evidence_class`, `evidence_tier`, `signal`, `signal_strength`, `source_status`, `audited_at` | What kind of evidence or provenance is available. |
|
| 122 |
| Publication | `authors`, `publication_date`, `publication_year`, `publication_venue`, `publisher`, `doi`, `arxiv_id`, `primary_category` | Bibliographic data exposed by the canonical source. |
|
| 123 |
| Source provenance | `source_title`, `source_description`, `metadata_source`, `publication_note` | Where metadata came from and what caveats accompany it. |
|
| 124 |
| Repository context | `github_repo`, `github_stars`, `github_forks`, `github_license`, `github_created_at`, `github_updated_at` | Point-in-time adoption and maintenance context for GitHub projects. |
|
meta/social-preview.html
CHANGED
|
@@ -72,14 +72,14 @@
|
|
| 72 |
<p class="kicker">Source-audited field guide + implementation kit</p>
|
| 73 |
<h1>Awesome Loop Engineering</h1>
|
| 74 |
<p class="tagline">Design loops, not just prompts.</p>
|
| 75 |
-
<p class="support">
|
| 76 |
</div>
|
| 77 |
<div class="mark">
|
| 78 |
<img src="../assets/awesome-loop-engineering-logo.png" alt="">
|
| 79 |
-
<p>
|
| 80 |
</div>
|
| 81 |
<div class="stats">
|
| 82 |
-
<div class="stat"><b>
|
| 83 |
<div class="stat"><b>20</b><span>Operational patterns</span></div>
|
| 84 |
<div class="stat"><b>20</b><span>Validated contracts</span></div>
|
| 85 |
<div class="stat"><b>8</b><span>Runtime starters</span></div>
|
|
|
|
| 72 |
<p class="kicker">Source-audited field guide + implementation kit</p>
|
| 73 |
<h1>Awesome Loop Engineering</h1>
|
| 74 |
<p class="tagline">Design loops, not just prompts.</p>
|
| 75 |
+
<p class="support">From model recurrence to verified agent work and bounded operations.</p>
|
| 76 |
</div>
|
| 77 |
<div class="mark">
|
| 78 |
<img src="../assets/awesome-loop-engineering-logo.png" alt="">
|
| 79 |
+
<p>Model / agent / operations</p>
|
| 80 |
</div>
|
| 81 |
<div class="stats">
|
| 82 |
+
<div class="stat"><b>579</b><span>Source-audited resources</span></div>
|
| 83 |
<div class="stat"><b>20</b><span>Operational patterns</span></div>
|
| 84 |
<div class="stat"><b>20</b><span>Validated contracts</span></div>
|
| 85 |
<div class="stat"><b>8</b><span>Runtime starters</span></div>
|
posts/launch.md
CHANGED
|
@@ -1,41 +1,39 @@
|
|
| 1 |
-
# Awesome Loop Engineering v0.
|
| 2 |
|
| 3 |
-
Awesome Loop Engineering v0.
|
| 4 |
|
| 5 |
-
Navigate
|
| 6 |
|
| 7 |
## What You Can Use
|
| 8 |
|
| 9 |
-
-
|
|
|
|
| 10 |
- 20 operational patterns organized by build, operate, optimize, and govern use cases
|
| 11 |
- 20 schema-validated loop contracts, one for every pattern
|
| 12 |
- 8 runtime starters: 3 dependency-light executables and 5 copy/paste runtime templates
|
| 13 |
-
- an interactive Resource Atlas for filtering by goal, lifecycle stage, artifact type, and evidence class
|
| 14 |
-
- CSV and
|
| 15 |
- 8 language entry points
|
| 16 |
|
| 17 |
-
## What Changed Since v0.
|
| 18 |
|
| 19 |
-
- Added
|
| 20 |
-
- Added
|
| 21 |
-
-
|
| 22 |
-
-
|
| 23 |
-
-
|
| 24 |
-
-
|
| 25 |
-
- Clarified that the starter library contains three executables and five copy/paste runtime templates, avoiding an unsupported claim that every artifact is a standalone program.
|
| 26 |
-
- Updated the website, social preview, translations, release metadata, and Hugging Face dataset to the same counts.
|
| 27 |
|
| 28 |
## Why This Matters
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
The v0.
|
| 33 |
|
| 34 |
-
1.
|
| 35 |
-
1.
|
| 36 |
-
1.
|
| 37 |
-
1.
|
| 38 |
-
1. Let external evidence, durable state, a hard budget, and human escalation govern the loop.
|
| 39 |
|
| 40 |
The goal remains bounded, reviewable, evidence-driven repetition, not unlimited autonomy.
|
| 41 |
|
|
|
|
| 1 |
+
# Awesome Loop Engineering v0.8.0
|
| 2 |
|
| 3 |
+
Awesome Loop Engineering v0.8.0 maps recurrence from a model's inner computation to an agent's tools and the outer operating loop that verifies, remembers, retries, escalates, and stops.
|
| 4 |
|
| 5 |
+
Navigate 579 source-audited works without collapsing looped models, agent execution, harnesses, workflows, and production operations into one idea.
|
| 6 |
|
| 7 |
## What You Can Use
|
| 8 |
|
| 9 |
+
- 579 source-audited resources linked to canonical works
|
| 10 |
+
- 23 selected model-recurrence papers, from Universal Transformers and Huginn to LoopCoder and LoopWM, labeled as adjacent foundations rather than complete agent loops
|
| 11 |
- 20 operational patterns organized by build, operate, optimize, and govern use cases
|
| 12 |
- 20 schema-validated loop contracts, one for every pattern
|
| 13 |
- 8 runtime starters: 3 dependency-light executables and 5 copy/paste runtime templates
|
| 14 |
+
- an interactive Resource Atlas for filtering by goal, loop layer, lifecycle stage, artifact type, and evidence class
|
| 15 |
+
- 50-field CSV, JSONL, and Parquet exports mirrored as a Hugging Face dataset
|
| 16 |
- 8 language entry points
|
| 17 |
|
| 18 |
+
## What Changed Since v0.7.0
|
| 19 |
|
| 20 |
+
- Added a bounded Model-Level Recurrence section with 23 high-signal papers and the deeper Awesome Loop Models catalog.
|
| 21 |
+
- Added `loop_layer` and `scope_fit` to every dataset row so model recurrence remains discoverable without being misclassified as operational Loop Engineering.
|
| 22 |
+
- Added a model-to-operations map and loop-layer filter to the Resource Atlas.
|
| 23 |
+
- Added a cross-layer research protocol for comparing internal recurrent depth with external evidence-aware retries under matched compute and cost.
|
| 24 |
+
- Rechecked all 579 canonical sources and refreshed every arXiv publication decision so official conference or journal records take precedence when verified.
|
| 25 |
+
- Updated the website, social preview, translations, release metadata, and Hugging Face dataset to the same counts and terminology.
|
|
|
|
|
|
|
| 26 |
|
| 27 |
## Why This Matters
|
| 28 |
|
| 29 |
+
"Loop" is overloaded. A learned block can recur inside one inference, an agent can alternate reasoning and tools inside one task, and an operating system can rerun verified work across time. Each layer matters, but each carries different state, stopping rules, evidence, and risks.
|
| 30 |
|
| 31 |
+
The v0.8.0 map keeps those layers connected and comparable:
|
| 32 |
|
| 33 |
+
1. Study model recurrence when the question is adaptive depth or latent computation.
|
| 34 |
+
1. Study agent and harness resources when the question is reasoning, tools, context, or verification within a task.
|
| 35 |
+
1. Use an operational pattern and Loop Contract when work must recur across events, sessions, or time.
|
| 36 |
+
1. Let external evidence, durable state, a hard budget, and human escalation govern real-world repetition.
|
|
|
|
| 37 |
|
| 38 |
The goal remains bounded, reviewable, evidence-driven repetition, not unlimited autonomy.
|
| 39 |
|
posts/launch.zh-CN.md
CHANGED
|
@@ -1,41 +1,39 @@
|
|
| 1 |
-
# Awesome Loop Engineering v0.
|
| 2 |
|
| 3 |
-
Awesome Loop Engineering v0.
|
| 4 |
|
| 5 |
-
可浏览
|
| 6 |
|
| 7 |
## 可直接使用
|
| 8 |
|
| 9 |
-
-
|
|
|
|
| 10 |
- 20 个按 build、operate、optimize、govern 组织的 operational patterns
|
| 11 |
- 20 个经过 schema 校验的 loop contracts,每个 pattern 对应一个
|
| 12 |
- 8 个 runtime starters:3 个轻量级可执行程序与 5 个可复制改造的 runtime 模板
|
| 13 |
-
- 可按目标、生命周期、资源类型和证据类别筛选的交互式 Resource Atlas
|
| 14 |
-
- CSV 与
|
| 15 |
- 8 个语言入口
|
| 16 |
|
| 17 |
-
## 相比 v0.
|
| 18 |
|
| 19 |
-
- 新增
|
| 20 |
-
- 为每
|
| 21 |
-
-
|
| 22 |
-
-
|
| 23 |
-
- 新
|
| 24 |
-
- 新增两个可执行 starter:具备幂等状态的 JSONL queue worker,以及带有限轮询与证据升级的只读 threshold monitor。
|
| 25 |
-
- 明确 starter library 由 3 个可执行程序与 5 个 runtime 模板组成,不再把每个文档都描述成独立可执行程序。
|
| 26 |
- 同步更新网站、social preview、翻译、release metadata 与 Hugging Face Dataset。
|
| 27 |
|
| 28 |
## 为什么值得关注
|
| 29 |
|
| 30 |
-
|
| 31 |
|
| 32 |
-
v0.
|
| 33 |
|
| 34 |
-
1.
|
| 35 |
-
1.
|
| 36 |
-
1.
|
| 37 |
-
1.
|
| 38 |
-
1. 用外部证据、持久状态、硬预算与 human escalation 管理整个 loop。
|
| 39 |
|
| 40 |
目标仍然不是无限自治,而是有边界、可审阅、由证据驱动的重复运行。
|
| 41 |
|
|
|
|
| 1 |
+
# Awesome Loop Engineering v0.8.0
|
| 2 |
|
| 3 |
+
Awesome Loop Engineering v0.8.0 建立了一张从模型内部递归、Agent 执行、Harness 到外层运行系统的完整地图。
|
| 4 |
|
| 5 |
+
可浏览 579 条经审核资源,同时保持清晰边界:模型内的循环提供自适应计算,但不等于具备外部验证、持久状态、预算、人类交接与退出规则的运行级 Loop。
|
| 6 |
|
| 7 |
## 可直接使用
|
| 8 |
|
| 9 |
+
- 579 条链接到 canonical source 的审阅资源
|
| 10 |
+
- 23 篇精选模型递归论文,覆盖 Universal Transformers、Huginn、LoopCoder、LoopWM 等方向
|
| 11 |
- 20 个按 build、operate、optimize、govern 组织的 operational patterns
|
| 12 |
- 20 个经过 schema 校验的 loop contracts,每个 pattern 对应一个
|
| 13 |
- 8 个 runtime starters:3 个轻量级可执行程序与 5 个可复制改造的 runtime 模板
|
| 14 |
+
- 可按目标、Loop 层级、生命周期、资源类型和证据类别筛选的交互式 Resource Atlas
|
| 15 |
+
- 包含 50 个字段的 CSV、JSONL 与 Parquet 数据,并同步到 Hugging Face Dataset
|
| 16 |
- 8 个语言入口
|
| 17 |
|
| 18 |
+
## 相比 v0.7.0 的变化
|
| 19 |
|
| 20 |
+
- 新增 Model-Level Recurrence 专区,并接入 Awesome Loop Models 作为更深的架构索引。
|
| 21 |
+
- 为每条数据新增 `loop_layer` 与 `scope_fit`,避免将模型递归误标为完整的运行级 Loop Engineering。
|
| 22 |
+
- 在 Resource Atlas 中新增模型到运维的层级图与 Loop 层级筛选器。
|
| 23 |
+
- 新增跨层评测方案,用匹配算力和成本的实验比较模型内部递归与外部证据驱动重试。
|
| 24 |
+
- 重新检查全部 579 个 canonical sources,并刷新所有 arXiv 的发表状态。
|
|
|
|
|
|
|
| 25 |
- 同步更新网站、social preview、翻译、release metadata 与 Hugging Face Dataset。
|
| 26 |
|
| 27 |
## 为什么值得关注
|
| 28 |
|
| 29 |
+
“Loop”可以发生在不同层级:模型内部可以重复隐状态计算,Agent 可以在单个任务中交替调用推理与工具,运行系统则可以跨时间重复经验证的工作。它们彼此相关,但状态、停止规则、证据与风险并不相同。
|
| 30 |
|
| 31 |
+
v0.8.0 将这些层级连接起来:
|
| 32 |
|
| 33 |
+
1. 当问题是自适应深度与隐式计算时,研究模型递归。
|
| 34 |
+
1. 当问题是任务内的推理、工具、上下文与验证时,研究 Agent 与 Harness。
|
| 35 |
+
1. 当工作需要跨事件、会话或时间重复时,使用 operational pattern 与 Loop Contract。
|
| 36 |
+
1. 用外部证据、持久状态、硬预算与 human escalation 管理真实世界中的重复执行。
|
|
|
|
| 37 |
|
| 38 |
目标仍然不是无限自治,而是有边界、可审阅、由证据驱动的重复运行。
|
| 39 |
|
scripts/audit_resource_sources.py
CHANGED
|
@@ -58,9 +58,116 @@ PUBLISHER_BY_DOMAIN = {
|
|
| 58 |
"strandsagents.com": "Strands Agents",
|
| 59 |
"x.com": "X",
|
| 60 |
"youtube.com": "YouTube",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
}
|
| 62 |
|
| 63 |
PUBLICATION_OVERRIDES = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
"https://www.preprints.org/manuscript/202603.1756": {
|
| 65 |
"authors": "Chaoyue He; Xin Zhou; Di Wang; Hong Xu; Wei Liu; Chunyan Miao",
|
| 66 |
"publication_date": "2026-04-23",
|
|
@@ -722,6 +829,9 @@ def finalize_publication_metadata(rows: list[dict[str, str]]) -> None:
|
|
| 722 |
override = PUBLICATION_OVERRIDES.get(row["url"], {})
|
| 723 |
row.update({key: value for key, value in override.items() if value})
|
| 724 |
|
|
|
|
|
|
|
|
|
|
| 725 |
if row["github_repo"]:
|
| 726 |
row["publisher"] = "GitHub"
|
| 727 |
if row["github_repo"].lower() == PROJECT_GITHUB_REPO:
|
|
@@ -770,6 +880,7 @@ def main() -> int:
|
|
| 770 |
if args.apply_publication_overlay_only:
|
| 771 |
with AUDIT_CSV.open(encoding="utf-8", newline="") as handle:
|
| 772 |
audited = list(csv.DictReader(handle))
|
|
|
|
| 773 |
apply_arxiv_publication_overlay(audited)
|
| 774 |
write_audit(audited)
|
| 775 |
resolved = sum(
|
|
|
|
| 58 |
"strandsagents.com": "Strands Agents",
|
| 59 |
"x.com": "X",
|
| 60 |
"youtube.com": "YouTube",
|
| 61 |
+
"aclanthology.org": "Association for Computational Linguistics",
|
| 62 |
+
"iclr.cc": "International Conference on Learning Representations",
|
| 63 |
+
"icml.cc": "International Conference on Machine Learning",
|
| 64 |
+
"openreview.net": "OpenReview",
|
| 65 |
+
"papers.nips.cc": "Neural Information Processing Systems Foundation",
|
| 66 |
+
"proceedings.mlr.press": "Proceedings of Machine Learning Research",
|
| 67 |
+
"proceedings.neurips.cc": "Neural Information Processing Systems Foundation",
|
| 68 |
}
|
| 69 |
|
| 70 |
PUBLICATION_OVERRIDES = {
|
| 71 |
+
"https://openreview.net/forum?id=HyzdRiR9Y7": {
|
| 72 |
+
"authors": "Mostafa Dehghani; Stephan Gouws; Oriol Vinyals; Jakob Uszkoreit; Łukasz Kaiser",
|
| 73 |
+
"publication_date": "2019",
|
| 74 |
+
"publication_year": "2019",
|
| 75 |
+
"publication_venue": "International Conference on Learning Representations (ICLR)",
|
| 76 |
+
"publisher": "OpenReview",
|
| 77 |
+
"publication_note": "Published at ICLR 2019; venue and authors verified from the official OpenReview record.",
|
| 78 |
+
"metadata_source": "OpenReview",
|
| 79 |
+
},
|
| 80 |
+
"https://openreview.net/forum?id=HHbRxoDTxE": {
|
| 81 |
+
"authors": "Liu Yang; Kangwook Lee; Robert D. Nowak; Dimitris Papailiopoulos",
|
| 82 |
+
"publication_date": "2024",
|
| 83 |
+
"publication_year": "2024",
|
| 84 |
+
"publication_venue": "International Conference on Learning Representations (ICLR)",
|
| 85 |
+
"publisher": "OpenReview",
|
| 86 |
+
"publication_note": "Published at ICLR 2024; venue and authors verified from the official OpenReview record.",
|
| 87 |
+
"metadata_source": "OpenReview",
|
| 88 |
+
},
|
| 89 |
+
"https://iclr.cc/virtual/2025/poster/28971": {
|
| 90 |
+
"authors": "Nikunj Saunshi; Nishanth Dikkala; Zhiyuan Li; Sanjiv Kumar; Sashank J. Reddi",
|
| 91 |
+
"publication_date": "2025",
|
| 92 |
+
"publication_year": "2025",
|
| 93 |
+
"publication_venue": "International Conference on Learning Representations (ICLR)",
|
| 94 |
+
"publisher": "International Conference on Learning Representations",
|
| 95 |
+
"publication_note": "Published at ICLR 2025; metadata verified from the official conference poster page.",
|
| 96 |
+
"metadata_source": "ICLR proceedings",
|
| 97 |
+
},
|
| 98 |
+
"https://proceedings.neurips.cc/paper_files/paper/2025/hash/3b01972cf31e6fa0fe29e4b8b5c2a0a1-Abstract-Conference.html": {
|
| 99 |
+
"authors": "Jonas Geiping; Sean McLeish; Neel Jain; John Kirchenbauer; Siddharth Singh; Brian Bartoldson; Bhavya Kailkhura; Abhinav Bhatele; Tom Goldstein",
|
| 100 |
+
"publication_date": "2025",
|
| 101 |
+
"publication_year": "2025",
|
| 102 |
+
"publication_venue": "Advances in Neural Information Processing Systems 38 (NeurIPS 2025)",
|
| 103 |
+
"publisher": "Neural Information Processing Systems Foundation",
|
| 104 |
+
"publication_note": "Published at NeurIPS 2025; the proceedings page's later web timestamp is not used as the conference year.",
|
| 105 |
+
"metadata_source": "NeurIPS proceedings",
|
| 106 |
+
},
|
| 107 |
+
"https://papers.nips.cc/paper_files/paper/2025/hash/8b08bbf8b420faa6eeb4020720582ec7-Abstract-Conference.html": {
|
| 108 |
+
"authors": "Sangmin Bae; Yujin Kim; Reza Bayat; Sungnyun Kim; Jiyoun Ha; Tal Schuster; Adam Fisch; Hrayr Harutyunyan; Ziwei Ji; Aaron Courville; Se-Young Yun",
|
| 109 |
+
"publication_date": "2025",
|
| 110 |
+
"publication_year": "2025",
|
| 111 |
+
"publication_venue": "Advances in Neural Information Processing Systems 38 (NeurIPS 2025)",
|
| 112 |
+
"publisher": "Neural Information Processing Systems Foundation",
|
| 113 |
+
"publication_note": "Published at NeurIPS 2025; the proceedings page's later web timestamp is not used as the conference year.",
|
| 114 |
+
"metadata_source": "NeurIPS proceedings",
|
| 115 |
+
},
|
| 116 |
+
"https://iclr.cc/virtual/2026/poster/10009450": {
|
| 117 |
+
"authors": "Ahmadreza Jeddi; Marco Ciccone; Babak Taati",
|
| 118 |
+
"publication_date": "2026",
|
| 119 |
+
"publication_year": "2026",
|
| 120 |
+
"publication_venue": "International Conference on Learning Representations (ICLR)",
|
| 121 |
+
"publisher": "International Conference on Learning Representations",
|
| 122 |
+
"publication_note": "Published at ICLR 2026; metadata verified from the official conference poster page.",
|
| 123 |
+
"metadata_source": "ICLR proceedings",
|
| 124 |
+
},
|
| 125 |
+
"https://iclr.cc/virtual/2026/poster/10011117": {
|
| 126 |
+
"authors": "Xiaojing Zhang; Haifeng Wu; Gang He; Jiyang Shen; Bochen Lyu; Zhanxing Zhu",
|
| 127 |
+
"publication_date": "2026",
|
| 128 |
+
"publication_year": "2026",
|
| 129 |
+
"publication_venue": "International Conference on Learning Representations (ICLR)",
|
| 130 |
+
"publisher": "International Conference on Learning Representations",
|
| 131 |
+
"publication_note": "Published at ICLR 2026; metadata verified from the official conference poster page.",
|
| 132 |
+
"metadata_source": "ICLR proceedings",
|
| 133 |
+
},
|
| 134 |
+
"https://iclr.cc/virtual/2026/poster/10007767": {
|
| 135 |
+
"authors": "Yunao Zheng; Xiaojie Wang; Lei Ren; Chen Wei",
|
| 136 |
+
"publication_date": "2026",
|
| 137 |
+
"publication_year": "2026",
|
| 138 |
+
"publication_venue": "International Conference on Learning Representations (ICLR)",
|
| 139 |
+
"publisher": "International Conference on Learning Representations",
|
| 140 |
+
"publication_note": "Published at ICLR 2026; metadata verified from the official conference poster page.",
|
| 141 |
+
"metadata_source": "ICLR proceedings",
|
| 142 |
+
},
|
| 143 |
+
"https://openreview.net/forum?id=eQaJSRZiGn": {
|
| 144 |
+
"authors": "Tianyu Fu; Yichen You; Zekai Chen; Guohao Dai; Huazhong Yang; Yu Wang",
|
| 145 |
+
"publication_date": "2026",
|
| 146 |
+
"publication_year": "2026",
|
| 147 |
+
"publication_venue": "International Conference on Machine Learning (ICML)",
|
| 148 |
+
"publisher": "OpenReview",
|
| 149 |
+
"publication_note": "Published at ICML 2026; venue and authors verified from the official OpenReview record.",
|
| 150 |
+
"metadata_source": "OpenReview",
|
| 151 |
+
},
|
| 152 |
+
"https://openreview.net/forum?id=ri0LAMdhd9": {
|
| 153 |
+
"authors": "Hayden Prairie; Zachary Novack; Taylor Berg-Kirkpatrick; Daniel Y. Fu",
|
| 154 |
+
"publication_date": "2026",
|
| 155 |
+
"publication_year": "2026",
|
| 156 |
+
"publication_venue": "Learning to Iterate Workshop at ICLR 2026",
|
| 157 |
+
"publisher": "OpenReview",
|
| 158 |
+
"publication_note": "Workshop paper at the Learning to Iterate Workshop at ICLR 2026; not an ICLR main-conference paper.",
|
| 159 |
+
"metadata_source": "OpenReview",
|
| 160 |
+
},
|
| 161 |
+
"https://doi.org/10.1145/3805760.3814895": {
|
| 162 |
+
"authors": "Simarjot Khanna",
|
| 163 |
+
"publication_date": "2026-07",
|
| 164 |
+
"publication_year": "2026",
|
| 165 |
+
"publication_venue": "Proceedings of the 3rd ACM International Conference on AI-Powered Software (AIware '26)",
|
| 166 |
+
"publisher": "Association for Computing Machinery",
|
| 167 |
+
"doi": "10.1145/3805760.3814895",
|
| 168 |
+
"publication_note": "Published at AIware 2026; metadata verified from the author-supplied camera-ready paper because the DOI landing page restricted automated access.",
|
| 169 |
+
"metadata_source": "ACM DOI and camera-ready paper",
|
| 170 |
+
},
|
| 171 |
"https://www.preprints.org/manuscript/202603.1756": {
|
| 172 |
"authors": "Chaoyue He; Xin Zhou; Di Wang; Hong Xu; Wei Liu; Chunyan Miao",
|
| 173 |
"publication_date": "2026-04-23",
|
|
|
|
| 829 |
override = PUBLICATION_OVERRIDES.get(row["url"], {})
|
| 830 |
row.update({key: value for key, value in override.items() if value})
|
| 831 |
|
| 832 |
+
if row["arxiv_id"] and row["metadata_source"] == "html-meta":
|
| 833 |
+
row["metadata_source"] = "arxiv-html-meta"
|
| 834 |
+
|
| 835 |
if row["github_repo"]:
|
| 836 |
row["publisher"] = "GitHub"
|
| 837 |
if row["github_repo"].lower() == PROJECT_GITHUB_REPO:
|
|
|
|
| 880 |
if args.apply_publication_overlay_only:
|
| 881 |
with AUDIT_CSV.open(encoding="utf-8", newline="") as handle:
|
| 882 |
audited = list(csv.DictReader(handle))
|
| 883 |
+
finalize_publication_metadata(audited)
|
| 884 |
apply_arxiv_publication_overlay(audited)
|
| 885 |
write_audit(audited)
|
| 886 |
resolved = sum(
|
scripts/check_project_consistency.py
CHANGED
|
@@ -5,6 +5,7 @@ from __future__ import annotations
|
|
| 5 |
|
| 6 |
import csv
|
| 7 |
import json
|
|
|
|
| 8 |
import sys
|
| 9 |
from pathlib import Path
|
| 10 |
|
|
@@ -12,6 +13,35 @@ from build_hf_card import project_context, render_card
|
|
| 12 |
|
| 13 |
|
| 14 |
ROOT = Path(__file__).resolve().parents[1]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
|
| 17 |
def require(path: Path, snippets: list[str], failures: list[str]) -> None:
|
|
@@ -21,6 +51,58 @@ def require(path: Path, snippets: list[str], failures: list[str]) -> None:
|
|
| 21 |
failures.append(f"{path.relative_to(ROOT)}: missing {snippet!r}")
|
| 22 |
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
def main() -> int:
|
| 25 |
context = project_context()
|
| 26 |
count = context["RESOURCE_COUNT"]
|
|
@@ -55,9 +137,11 @@ def main() -> int:
|
|
| 55 |
require(translation, [count], failures)
|
| 56 |
|
| 57 |
with (ROOT / "data" / "resources.csv").open(encoding="utf-8", newline="") as handle:
|
| 58 |
-
|
|
|
|
| 59 |
if csv_count != int(count):
|
| 60 |
failures.append(f"data/resources.csv: expected {count} rows, found {csv_count}")
|
|
|
|
| 61 |
|
| 62 |
site_payload = json.loads((ROOT / "docs" / "assets" / "resources.json").read_text(encoding="utf-8"))
|
| 63 |
if site_payload.get("count") != int(count) or len(site_payload.get("resources", [])) != int(count):
|
|
|
|
| 5 |
|
| 6 |
import csv
|
| 7 |
import json
|
| 8 |
+
import re
|
| 9 |
import sys
|
| 10 |
from pathlib import Path
|
| 11 |
|
|
|
|
| 13 |
|
| 14 |
|
| 15 |
ROOT = Path(__file__).resolve().parents[1]
|
| 16 |
+
REQUIRED_RESOURCE_FIELDS = {
|
| 17 |
+
"row_id",
|
| 18 |
+
"title",
|
| 19 |
+
"url",
|
| 20 |
+
"canonical_url",
|
| 21 |
+
"resource_type",
|
| 22 |
+
"annotation",
|
| 23 |
+
"key_contribution",
|
| 24 |
+
"novelty",
|
| 25 |
+
"impact",
|
| 26 |
+
"signal",
|
| 27 |
+
"signal_strength",
|
| 28 |
+
"collection",
|
| 29 |
+
"user_goal",
|
| 30 |
+
"lifecycle_stages",
|
| 31 |
+
"audience",
|
| 32 |
+
"loop_layer",
|
| 33 |
+
"scope_fit",
|
| 34 |
+
"evidence_class",
|
| 35 |
+
"evidence_tier",
|
| 36 |
+
"source_status",
|
| 37 |
+
"metadata_source",
|
| 38 |
+
"audited_at",
|
| 39 |
+
}
|
| 40 |
+
ALLOWED_EVIDENCE_TIERS = {"A", "B", "C", "D"}
|
| 41 |
+
ALLOWED_SIGNAL_STRENGTHS = {"high", "medium", "contextual", "unverified"}
|
| 42 |
+
ALLOWED_SOURCE_STATUSES = {"ok", "local_ok", "restricted", "broken", "unreachable", "local_missing"}
|
| 43 |
+
ALLOWED_LOOP_LAYERS = {"model", "agent", "harness", "workflow", "operations", "evaluation", "cross-layer"}
|
| 44 |
+
ALLOWED_SCOPE_FITS = {"direct", "enabling", "adjacent"}
|
| 45 |
|
| 46 |
|
| 47 |
def require(path: Path, snippets: list[str], failures: list[str]) -> None:
|
|
|
|
| 51 |
failures.append(f"{path.relative_to(ROOT)}: missing {snippet!r}")
|
| 52 |
|
| 53 |
|
| 54 |
+
def validate_resource_rows(rows: list[dict[str, str]], failures: list[str]) -> None:
|
| 55 |
+
if not rows:
|
| 56 |
+
failures.append("data/resources.csv: no resource rows")
|
| 57 |
+
return
|
| 58 |
+
|
| 59 |
+
missing_columns = REQUIRED_RESOURCE_FIELDS - set(rows[0])
|
| 60 |
+
if missing_columns:
|
| 61 |
+
failures.append(f"data/resources.csv: missing columns {sorted(missing_columns)}")
|
| 62 |
+
|
| 63 |
+
seen_urls: set[str] = set()
|
| 64 |
+
seen_ids: set[str] = set()
|
| 65 |
+
for index, row in enumerate(rows, 1):
|
| 66 |
+
row_label = row.get("row_id") or f"row {index}"
|
| 67 |
+
missing = sorted(field for field in REQUIRED_RESOURCE_FIELDS if not row.get(field, "").strip())
|
| 68 |
+
if missing:
|
| 69 |
+
failures.append(f"data/resources.csv: {row_label} missing required values {missing}")
|
| 70 |
+
|
| 71 |
+
normalized_url = row.get("url", "").strip().lower().rstrip("/")
|
| 72 |
+
if normalized_url in seen_urls:
|
| 73 |
+
failures.append(f"data/resources.csv: duplicate URL at {row_label}: {row.get('url', '')}")
|
| 74 |
+
seen_urls.add(normalized_url)
|
| 75 |
+
|
| 76 |
+
row_id = row.get("row_id", "")
|
| 77 |
+
if row_id in seen_ids:
|
| 78 |
+
failures.append(f"data/resources.csv: duplicate row_id {row_id}")
|
| 79 |
+
seen_ids.add(row_id)
|
| 80 |
+
expected_id = f"ale-{index:04d}"
|
| 81 |
+
if row_id != expected_id:
|
| 82 |
+
failures.append(f"data/resources.csv: expected {expected_id}, found {row_id or '<blank>'}")
|
| 83 |
+
|
| 84 |
+
if row.get("evidence_tier") not in ALLOWED_EVIDENCE_TIERS:
|
| 85 |
+
failures.append(f"data/resources.csv: {row_label} has invalid evidence_tier {row.get('evidence_tier')!r}")
|
| 86 |
+
if row.get("signal_strength") not in ALLOWED_SIGNAL_STRENGTHS:
|
| 87 |
+
failures.append(f"data/resources.csv: {row_label} has invalid signal_strength {row.get('signal_strength')!r}")
|
| 88 |
+
if row.get("source_status") not in ALLOWED_SOURCE_STATUSES:
|
| 89 |
+
failures.append(f"data/resources.csv: {row_label} has invalid source_status {row.get('source_status')!r}")
|
| 90 |
+
if row.get("loop_layer") not in ALLOWED_LOOP_LAYERS:
|
| 91 |
+
failures.append(f"data/resources.csv: {row_label} has invalid loop_layer {row.get('loop_layer')!r}")
|
| 92 |
+
if row.get("scope_fit") not in ALLOWED_SCOPE_FITS:
|
| 93 |
+
failures.append(f"data/resources.csv: {row_label} has invalid scope_fit {row.get('scope_fit')!r}")
|
| 94 |
+
|
| 95 |
+
year = row.get("publication_year", "")
|
| 96 |
+
if year and not re.fullmatch(r"(?:19|20)\d{2}", year):
|
| 97 |
+
failures.append(f"data/resources.csv: {row_label} has invalid publication_year {year!r}")
|
| 98 |
+
if row.get("resource_type") == "Paper":
|
| 99 |
+
for field in ("authors", "publication_year"):
|
| 100 |
+
if not row.get(field, "").strip():
|
| 101 |
+
failures.append(f"data/resources.csv: {row_label} paper is missing {field}")
|
| 102 |
+
if "arxiv.org" in row.get("url", "") and not row.get("arxiv_id", "").strip():
|
| 103 |
+
failures.append(f"data/resources.csv: {row_label} arXiv work is missing arxiv_id")
|
| 104 |
+
|
| 105 |
+
|
| 106 |
def main() -> int:
|
| 107 |
context = project_context()
|
| 108 |
count = context["RESOURCE_COUNT"]
|
|
|
|
| 137 |
require(translation, [count], failures)
|
| 138 |
|
| 139 |
with (ROOT / "data" / "resources.csv").open(encoding="utf-8", newline="") as handle:
|
| 140 |
+
resource_rows = list(csv.DictReader(handle))
|
| 141 |
+
csv_count = len(resource_rows)
|
| 142 |
if csv_count != int(count):
|
| 143 |
failures.append(f"data/resources.csv: expected {count} rows, found {csv_count}")
|
| 144 |
+
validate_resource_rows(resource_rows, failures)
|
| 145 |
|
| 146 |
site_payload = json.loads((ROOT / "docs" / "assets" / "resources.json").read_text(encoding="utf-8"))
|
| 147 |
if site_payload.get("count") != int(count) or len(site_payload.get("resources", [])) != int(count):
|
scripts/check_publication_metadata.py
CHANGED
|
@@ -94,8 +94,8 @@ def main() -> int:
|
|
| 94 |
if decision["status"] == "preprint-only":
|
| 95 |
if row["publisher"] != "arXiv":
|
| 96 |
failures.append(f"{row_id}: preprint-only row has publisher {row['publisher']!r}")
|
| 97 |
-
if row["metadata_source"]
|
| 98 |
-
failures.append(f"{row_id}: preprint metadata is not arXiv
|
| 99 |
expected_evidence = "benchmark" if row["resource_type"] == "Benchmark" else "research-preprint"
|
| 100 |
if row["evidence_class"] != expected_evidence:
|
| 101 |
failures.append(f"{row_id}: preprint-only row has evidence class {row['evidence_class']!r}")
|
|
|
|
| 94 |
if decision["status"] == "preprint-only":
|
| 95 |
if row["publisher"] != "arXiv":
|
| 96 |
failures.append(f"{row_id}: preprint-only row has publisher {row['publisher']!r}")
|
| 97 |
+
if row["metadata_source"] not in {"arxiv-api", "arxiv-html-meta"}:
|
| 98 |
+
failures.append(f"{row_id}: preprint metadata is not backed by a primary arXiv source")
|
| 99 |
expected_evidence = "benchmark" if row["resource_type"] == "Benchmark" else "research-preprint"
|
| 100 |
if row["evidence_class"] != expected_evidence:
|
| 101 |
failures.append(f"{row_id}: preprint-only row has evidence class {row['evidence_class']!r}")
|
scripts/export_resource_dataset.py
CHANGED
|
@@ -39,6 +39,11 @@ ENTRY_RE = re.compile(
|
|
| 39 |
r"\[(?P<title>[^\]]+)\]\((?P<url>[^)]+)\) - (?P<annotation>.+)$"
|
| 40 |
)
|
| 41 |
TABLE_ENTRY_RE = re.compile(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
r"^\| (?P<marker>\S+) \*\*\[(?P<title>[^\]]+)\]\((?P<url>[^)]+)\)\*\*"
|
| 43 |
r"<br><sub>(?P<resource_type>[^<]+)</sub>\s+\| (?P<metadata>.*?) \| "
|
| 44 |
r"(?P<annotation>.+) \|$"
|
|
@@ -58,6 +63,18 @@ TYPE_MARKERS = {
|
|
| 58 |
"Critique": "⚠️",
|
| 59 |
}
|
| 60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 61 |
FIELDS = [
|
| 62 |
"row_id",
|
| 63 |
"section",
|
|
@@ -84,7 +101,10 @@ FIELDS = [
|
|
| 84 |
"user_goal",
|
| 85 |
"lifecycle_stages",
|
| 86 |
"audience",
|
|
|
|
|
|
|
| 87 |
"evidence_class",
|
|
|
|
| 88 |
"source_status",
|
| 89 |
"canonical_url",
|
| 90 |
"source_title",
|
|
@@ -125,7 +145,10 @@ SITE_FIELDS = [
|
|
| 125 |
"section_slug",
|
| 126 |
"lifecycle_stages",
|
| 127 |
"audience",
|
|
|
|
|
|
|
| 128 |
"evidence_class",
|
|
|
|
| 129 |
"signal_strength",
|
| 130 |
"source_status",
|
| 131 |
"authors",
|
|
@@ -147,6 +170,7 @@ COLLECTIONS = {
|
|
| 147 |
"Concept Guides": ("Learn", "Understand the field and its boundaries."),
|
| 148 |
"Start Here": ("Learn", "Understand the field and its boundaries."),
|
| 149 |
"Research Foundations": ("Learn", "Understand the field and its boundaries."),
|
|
|
|
| 150 |
"Pattern Library": ("Design", "Specify a loop contract and operating pattern."),
|
| 151 |
"Core Loop Primitives": ("Design", "Specify a loop contract and operating pattern."),
|
| 152 |
"Agent Workflow Patterns": ("Design", "Specify a loop contract and operating pattern."),
|
|
@@ -182,6 +206,7 @@ SECTION_STAGE_DEFAULTS = {
|
|
| 182 |
"Start Here": ["whole-loop"],
|
| 183 |
"Pattern Library": ["whole-loop"],
|
| 184 |
"Research Foundations": ["whole-loop"],
|
|
|
|
| 185 |
"Official Runtime Guides": ["workspace", "context", "delegation", "state"],
|
| 186 |
"Agent Workflow Patterns": ["delegation", "verification"],
|
| 187 |
"Coding-Agent Loop Systems": ["workspace", "delegation", "verification", "state"],
|
|
@@ -233,6 +258,7 @@ SECTION_IMPACT = {
|
|
| 233 |
"Core Loop Primitives": "Turns the concept into concrete loop mechanics: triggers, state, tools, worktrees, permissions, and recurring execution.",
|
| 234 |
"Official Runtime Guides": "Anchors implementation choices in primary vendor and framework documentation instead of second-hand summaries.",
|
| 235 |
"Research Foundations": "Connects Loop Engineering to prior work on agent loops, planning, reflection, feedback, and long-horizon autonomy.",
|
|
|
|
| 236 |
"Agent Workflow Patterns": "Shows reusable architecture patterns that compose agents, evaluators, workers, and durable workflow control.",
|
| 237 |
"Coding-Agent Loop Systems": "Grounds the practice in real coding-agent systems, bare loops, orchestration tools, and long-running software tasks.",
|
| 238 |
"Verification And Feedback Gates": "Identifies the feedback signals that make recurring agent work measurable, retryable, and safe to stop.",
|
|
@@ -271,8 +297,52 @@ SECTION_NOVELTY = {
|
|
| 271 |
"Pattern Library": "Turns common recurring-agent jobs into named patterns with gates, budgets, and escalation paths.",
|
| 272 |
"Critiques, Risks, And Limitations": "Keeps adoption grounded in known failure modes, economics, and operational limits.",
|
| 273 |
"Adjacent Awesome Lists": "Connects neighboring ecosystems while preserving Loop Engineering as a narrower operating concept.",
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 274 |
}
|
| 275 |
|
|
|
|
|
|
|
| 276 |
TYPE_SIGNAL = {
|
| 277 |
"Paper": ("Research paper or preprint; strongest signal when the entry contributes a method, benchmark, measurement, or formal framing.", "high"),
|
| 278 |
"Docs": ("Primary documentation from a platform, SDK, standard, or framework; strong implementation signal.", "high"),
|
|
@@ -285,6 +355,23 @@ TYPE_SIGNAL = {
|
|
| 285 |
"List": ("Adjacent curated collection; signal comes from ecosystem coverage rather than a single technical claim.", "contextual"),
|
| 286 |
}
|
| 287 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 288 |
NOVELTY_RULES = [
|
| 289 |
(r"\bofficial\b|\bprimary-source\b", "Primary-source operational guidance rather than commentary."),
|
| 290 |
(r"\bfuture directions?\b|\bresearch agenda\b", "Turns open gaps into measurable research, infrastructure, and product directions."),
|
|
@@ -326,7 +413,7 @@ def parse_entry_line(raw_line: str) -> dict[str, str] | None:
|
|
| 326 |
if match:
|
| 327 |
return match.groupdict()
|
| 328 |
|
| 329 |
-
match = TABLE_ENTRY_RE.match(raw_line)
|
| 330 |
if not match:
|
| 331 |
return None
|
| 332 |
|
|
@@ -388,6 +475,10 @@ def novelty(section: str, title: str, annotation: str) -> str:
|
|
| 388 |
lens = "Makes an otherwise informal practice concrete and reusable."
|
| 389 |
return f"{lens} {key_contribution(annotation)}"
|
| 390 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 391 |
text = f"{title} {annotation}".lower()
|
| 392 |
for pattern, phrase in NOVELTY_RULES:
|
| 393 |
if re.search(pattern, text):
|
|
@@ -409,6 +500,8 @@ def collection_for(section: str) -> tuple[str, str]:
|
|
| 409 |
def lifecycle_stages(section: str, title: str, annotation: str) -> str:
|
| 410 |
text = f"{title} {annotation}".lower()
|
| 411 |
stages = [stage for stage, pattern in STAGE_RULES if re.search(pattern, text)]
|
|
|
|
|
|
|
| 412 |
if not stages:
|
| 413 |
stages = SECTION_STAGE_DEFAULTS.get(section, ["whole-loop"])
|
| 414 |
return ";".join(dict.fromkeys(stages))
|
|
@@ -422,6 +515,8 @@ def audience_for(section: str, resource_type: str) -> str:
|
|
| 422 |
audiences.append("builder")
|
| 423 |
if resource_type in {"Paper", "Benchmark"}:
|
| 424 |
audiences.extend(["researcher", "evaluator"])
|
|
|
|
|
|
|
| 425 |
if section in {"Securing Unattended Loops", "Operations Playbooks", "Critiques, Risks, And Limitations"}:
|
| 426 |
audiences.extend(["operator", "security"])
|
| 427 |
if section in {"Verification And Feedback Gates", "Benchmarks And Evaluation"}:
|
|
@@ -462,11 +557,29 @@ def evidence_class(
|
|
| 462 |
}.get(resource_type, "curated-source")
|
| 463 |
|
| 464 |
|
| 465 |
-
def
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 466 |
goal = COLLECTION_IMPACT.get(collection, "apply the source to a recurring agent system")
|
| 467 |
return f"Use {title} to {goal}."
|
| 468 |
|
| 469 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 470 |
def format_count(value: str) -> str:
|
| 471 |
try:
|
| 472 |
return f"{int(value):,}"
|
|
@@ -523,8 +636,9 @@ def iter_rows(readme_path: Path = README) -> list[dict[str, str]]:
|
|
| 523 |
for line_number, raw_line in enumerate(readme_path.read_text(encoding="utf-8").splitlines(), 1):
|
| 524 |
heading = HEADING_RE.match(raw_line)
|
| 525 |
if heading:
|
| 526 |
-
|
| 527 |
-
|
|
|
|
| 528 |
continue
|
| 529 |
|
| 530 |
entry = parse_entry_line(raw_line)
|
|
@@ -537,7 +651,7 @@ def iter_rows(readme_path: Path = README) -> list[dict[str, str]]:
|
|
| 537 |
|
| 538 |
url_kind, domain = classify_url(url)
|
| 539 |
annotation = clean(entry["annotation"])
|
| 540 |
-
resource_type =
|
| 541 |
row_number = len(rows) + 1
|
| 542 |
row_id = f"ale-{row_number:04d}"
|
| 543 |
collection, user_goal = collection_for(section)
|
|
@@ -560,7 +674,7 @@ def iter_rows(readme_path: Path = README) -> list[dict[str, str]]:
|
|
| 560 |
"description": annotation,
|
| 561 |
"key_contribution": key_contribution(annotation),
|
| 562 |
"novelty": novelty(section, clean(entry["title"]), annotation),
|
| 563 |
-
"impact": impact(collection, clean(entry["title"])),
|
| 564 |
"signal": signal_text,
|
| 565 |
"signal_strength": signal_strength,
|
| 566 |
"source_readme": "README.md",
|
|
@@ -572,7 +686,10 @@ def iter_rows(readme_path: Path = README) -> list[dict[str, str]]:
|
|
| 572 |
"user_goal": user_goal,
|
| 573 |
"lifecycle_stages": lifecycle_stages(section, clean(entry["title"]), annotation),
|
| 574 |
"audience": audience_for(section, resource_type),
|
|
|
|
|
|
|
| 575 |
"evidence_class": evidence,
|
|
|
|
| 576 |
"source_status": audit.get("audit_status", "not-audited"),
|
| 577 |
"canonical_url": audit.get("canonical_url", "") or audit.get("final_url", "") or url,
|
| 578 |
"source_title": audit.get("source_title", ""),
|
|
|
|
| 39 |
r"\[(?P<title>[^\]]+)\]\((?P<url>[^)]+)\) - (?P<annotation>.+)$"
|
| 40 |
)
|
| 41 |
TABLE_ENTRY_RE = re.compile(
|
| 42 |
+
r"^\| (?P<marker>\S+) \*\*\[(?P<title>[^\]]+)\]\((?P<url>[^)]+)\)\*\*"
|
| 43 |
+
r"<br><sub>(?P<resource_type>[^<]+)</sub>\s+\| (?P<metadata>.*?) \| "
|
| 44 |
+
r"(?P<annotation>.*?) \| (?P<table_evidence>.+) \|$"
|
| 45 |
+
)
|
| 46 |
+
LEGACY_TABLE_ENTRY_RE = re.compile(
|
| 47 |
r"^\| (?P<marker>\S+) \*\*\[(?P<title>[^\]]+)\]\((?P<url>[^)]+)\)\*\*"
|
| 48 |
r"<br><sub>(?P<resource_type>[^<]+)</sub>\s+\| (?P<metadata>.*?) \| "
|
| 49 |
r"(?P<annotation>.+) \|$"
|
|
|
|
| 63 |
"Critique": "⚠️",
|
| 64 |
}
|
| 65 |
|
| 66 |
+
|
| 67 |
+
def base_resource_type(value: str) -> str:
|
| 68 |
+
cleaned = clean(value)
|
| 69 |
+
return next(
|
| 70 |
+
(
|
| 71 |
+
resource_type
|
| 72 |
+
for resource_type in TYPE_MARKERS
|
| 73 |
+
if cleaned == resource_type or cleaned.startswith(f"{resource_type} ·")
|
| 74 |
+
),
|
| 75 |
+
cleaned,
|
| 76 |
+
)
|
| 77 |
+
|
| 78 |
FIELDS = [
|
| 79 |
"row_id",
|
| 80 |
"section",
|
|
|
|
| 101 |
"user_goal",
|
| 102 |
"lifecycle_stages",
|
| 103 |
"audience",
|
| 104 |
+
"loop_layer",
|
| 105 |
+
"scope_fit",
|
| 106 |
"evidence_class",
|
| 107 |
+
"evidence_tier",
|
| 108 |
"source_status",
|
| 109 |
"canonical_url",
|
| 110 |
"source_title",
|
|
|
|
| 145 |
"section_slug",
|
| 146 |
"lifecycle_stages",
|
| 147 |
"audience",
|
| 148 |
+
"loop_layer",
|
| 149 |
+
"scope_fit",
|
| 150 |
"evidence_class",
|
| 151 |
+
"evidence_tier",
|
| 152 |
"signal_strength",
|
| 153 |
"source_status",
|
| 154 |
"authors",
|
|
|
|
| 170 |
"Concept Guides": ("Learn", "Understand the field and its boundaries."),
|
| 171 |
"Start Here": ("Learn", "Understand the field and its boundaries."),
|
| 172 |
"Research Foundations": ("Learn", "Understand the field and its boundaries."),
|
| 173 |
+
"Model-Level Recurrence": ("Learn", "Understand how recurrent model computation can power, but not replace, a governed agent loop."),
|
| 174 |
"Pattern Library": ("Design", "Specify a loop contract and operating pattern."),
|
| 175 |
"Core Loop Primitives": ("Design", "Specify a loop contract and operating pattern."),
|
| 176 |
"Agent Workflow Patterns": ("Design", "Specify a loop contract and operating pattern."),
|
|
|
|
| 206 |
"Start Here": ["whole-loop"],
|
| 207 |
"Pattern Library": ["whole-loop"],
|
| 208 |
"Research Foundations": ["whole-loop"],
|
| 209 |
+
"Model-Level Recurrence": ["act"],
|
| 210 |
"Official Runtime Guides": ["workspace", "context", "delegation", "state"],
|
| 211 |
"Agent Workflow Patterns": ["delegation", "verification"],
|
| 212 |
"Coding-Agent Loop Systems": ["workspace", "delegation", "verification", "state"],
|
|
|
|
| 258 |
"Core Loop Primitives": "Turns the concept into concrete loop mechanics: triggers, state, tools, worktrees, permissions, and recurring execution.",
|
| 259 |
"Official Runtime Guides": "Anchors implementation choices in primary vendor and framework documentation instead of second-hand summaries.",
|
| 260 |
"Research Foundations": "Connects Loop Engineering to prior work on agent loops, planning, reflection, feedback, and long-horizon autonomy.",
|
| 261 |
+
"Model-Level Recurrence": "Explains the inner recurrent computation that can improve an agent's model while remaining distinct from the outer operating loop.",
|
| 262 |
"Agent Workflow Patterns": "Shows reusable architecture patterns that compose agents, evaluators, workers, and durable workflow control.",
|
| 263 |
"Coding-Agent Loop Systems": "Grounds the practice in real coding-agent systems, bare loops, orchestration tools, and long-running software tasks.",
|
| 264 |
"Verification And Feedback Gates": "Identifies the feedback signals that make recurring agent work measurable, retryable, and safe to stop.",
|
|
|
|
| 297 |
"Pattern Library": "Turns common recurring-agent jobs into named patterns with gates, budgets, and escalation paths.",
|
| 298 |
"Critiques, Risks, And Limitations": "Keeps adoption grounded in known failure modes, economics, and operational limits.",
|
| 299 |
"Adjacent Awesome Lists": "Connects neighboring ecosystems while preserving Loop Engineering as a narrower operating concept.",
|
| 300 |
+
"Model-Level Recurrence": "Separates shared-block latent iteration inside one model inference from repeated, externally governed agent work.",
|
| 301 |
+
}
|
| 302 |
+
|
| 303 |
+
SECTION_LOOP_LAYERS = {
|
| 304 |
+
"Concept Guides": "cross-layer",
|
| 305 |
+
"Start Here": "cross-layer",
|
| 306 |
+
"Pattern Library": "workflow",
|
| 307 |
+
"Core Loop Primitives": "workflow",
|
| 308 |
+
"Official Runtime Guides": "harness",
|
| 309 |
+
"Research Foundations": "cross-layer",
|
| 310 |
+
"Model-Level Recurrence": "model",
|
| 311 |
+
"Agent Workflow Patterns": "workflow",
|
| 312 |
+
"Coding-Agent Loop Systems": "agent",
|
| 313 |
+
"Verification And Feedback Gates": "harness",
|
| 314 |
+
"Securing Unattended Loops": "operations",
|
| 315 |
+
"State, Memory, And Context Persistence": "harness",
|
| 316 |
+
"Orchestration And Multi-Agent Delegation": "workflow",
|
| 317 |
+
"Benchmarks And Evaluation": "evaluation",
|
| 318 |
+
"Operations Playbooks": "operations",
|
| 319 |
+
"Templates And Patterns": "workflow",
|
| 320 |
+
"Examples And Schema": "workflow",
|
| 321 |
+
"Community Gallery": "operations",
|
| 322 |
+
"Critiques, Risks, And Limitations": "cross-layer",
|
| 323 |
+
"Adjacent Awesome Lists": "cross-layer",
|
| 324 |
+
"Explore And Reuse": "cross-layer",
|
| 325 |
+
"Shape What Comes Next": "cross-layer",
|
| 326 |
+
}
|
| 327 |
+
|
| 328 |
+
TITLE_LOOP_LAYERS = {
|
| 329 |
+
"Awesome Loop Models": "model",
|
| 330 |
+
}
|
| 331 |
+
|
| 332 |
+
DIRECT_SCOPE_SECTIONS = {
|
| 333 |
+
"Concept Guides",
|
| 334 |
+
"Start Here",
|
| 335 |
+
"Pattern Library",
|
| 336 |
+
"Core Loop Primitives",
|
| 337 |
+
"Coding-Agent Loop Systems",
|
| 338 |
+
"Operations Playbooks",
|
| 339 |
+
"Templates And Patterns",
|
| 340 |
+
"Examples And Schema",
|
| 341 |
+
"Community Gallery",
|
| 342 |
}
|
| 343 |
|
| 344 |
+
ADJACENT_SCOPE_SECTIONS = {"Model-Level Recurrence", "Adjacent Awesome Lists"}
|
| 345 |
+
|
| 346 |
TYPE_SIGNAL = {
|
| 347 |
"Paper": ("Research paper or preprint; strongest signal when the entry contributes a method, benchmark, measurement, or formal framing.", "high"),
|
| 348 |
"Docs": ("Primary documentation from a platform, SDK, standard, or framework; strong implementation signal.", "high"),
|
|
|
|
| 355 |
"List": ("Adjacent curated collection; signal comes from ecosystem coverage rather than a single technical claim.", "contextual"),
|
| 356 |
}
|
| 357 |
|
| 358 |
+
EVIDENCE_TIERS = {
|
| 359 |
+
"research-paper": "A",
|
| 360 |
+
"research-preprint": "A",
|
| 361 |
+
"official-documentation": "A",
|
| 362 |
+
"technical-documentation": "A",
|
| 363 |
+
"source-implementation": "A",
|
| 364 |
+
"implementation": "A",
|
| 365 |
+
"benchmark": "A",
|
| 366 |
+
"repository-native": "A",
|
| 367 |
+
"reusable-artifact": "A",
|
| 368 |
+
"operational-pattern": "B",
|
| 369 |
+
"practitioner-analysis": "B",
|
| 370 |
+
"risk-analysis": "B",
|
| 371 |
+
"curated-index": "C",
|
| 372 |
+
"curated-source": "C",
|
| 373 |
+
}
|
| 374 |
+
|
| 375 |
NOVELTY_RULES = [
|
| 376 |
(r"\bofficial\b|\bprimary-source\b", "Primary-source operational guidance rather than commentary."),
|
| 377 |
(r"\bfuture directions?\b|\bresearch agenda\b", "Turns open gaps into measurable research, infrastructure, and product directions."),
|
|
|
|
| 413 |
if match:
|
| 414 |
return match.groupdict()
|
| 415 |
|
| 416 |
+
match = TABLE_ENTRY_RE.match(raw_line) or LEGACY_TABLE_ENTRY_RE.match(raw_line)
|
| 417 |
if not match:
|
| 418 |
return None
|
| 419 |
|
|
|
|
| 475 |
lens = "Makes an otherwise informal practice concrete and reusable."
|
| 476 |
return f"{lens} {key_contribution(annotation)}"
|
| 477 |
|
| 478 |
+
if section == "Model-Level Recurrence":
|
| 479 |
+
lens = "Reuses learned computation inside one model inference rather than repeating a full agent run."
|
| 480 |
+
return f"{lens} {key_contribution(annotation)}"
|
| 481 |
+
|
| 482 |
text = f"{title} {annotation}".lower()
|
| 483 |
for pattern, phrase in NOVELTY_RULES:
|
| 484 |
if re.search(pattern, text):
|
|
|
|
| 500 |
def lifecycle_stages(section: str, title: str, annotation: str) -> str:
|
| 501 |
text = f"{title} {annotation}".lower()
|
| 502 |
stages = [stage for stage, pattern in STAGE_RULES if re.search(pattern, text)]
|
| 503 |
+
if section == "Model-Level Recurrence" and "act" not in stages:
|
| 504 |
+
stages.insert(0, "act")
|
| 505 |
if not stages:
|
| 506 |
stages = SECTION_STAGE_DEFAULTS.get(section, ["whole-loop"])
|
| 507 |
return ";".join(dict.fromkeys(stages))
|
|
|
|
| 515 |
audiences.append("builder")
|
| 516 |
if resource_type in {"Paper", "Benchmark"}:
|
| 517 |
audiences.extend(["researcher", "evaluator"])
|
| 518 |
+
if section == "Model-Level Recurrence":
|
| 519 |
+
audiences.extend(["model-builder", "agent-builder"])
|
| 520 |
if section in {"Securing Unattended Loops", "Operations Playbooks", "Critiques, Risks, And Limitations"}:
|
| 521 |
audiences.extend(["operator", "security"])
|
| 522 |
if section in {"Verification And Feedback Gates", "Benchmarks And Evaluation"}:
|
|
|
|
| 557 |
}.get(resource_type, "curated-source")
|
| 558 |
|
| 559 |
|
| 560 |
+
def loop_layer(section: str, title: str) -> str:
|
| 561 |
+
return TITLE_LOOP_LAYERS.get(title, SECTION_LOOP_LAYERS.get(section, "cross-layer"))
|
| 562 |
+
|
| 563 |
+
|
| 564 |
+
def scope_fit(section: str) -> str:
|
| 565 |
+
if section in ADJACENT_SCOPE_SECTIONS:
|
| 566 |
+
return "adjacent"
|
| 567 |
+
if section in DIRECT_SCOPE_SECTIONS:
|
| 568 |
+
return "direct"
|
| 569 |
+
return "enabling"
|
| 570 |
+
|
| 571 |
+
|
| 572 |
+
def impact(collection: str, section: str, title: str) -> str:
|
| 573 |
+
if section == "Model-Level Recurrence":
|
| 574 |
+
return f"Use {title} to assess inner latent computation as a model capability inside a separately governed agent loop."
|
| 575 |
goal = COLLECTION_IMPACT.get(collection, "apply the source to a recurring agent system")
|
| 576 |
return f"Use {title} to {goal}."
|
| 577 |
|
| 578 |
|
| 579 |
+
def evidence_tier(evidence: str) -> str:
|
| 580 |
+
return EVIDENCE_TIERS.get(evidence, "C")
|
| 581 |
+
|
| 582 |
+
|
| 583 |
def format_count(value: str) -> str:
|
| 584 |
try:
|
| 585 |
return f"{int(value):,}"
|
|
|
|
| 636 |
for line_number, raw_line in enumerate(readme_path.read_text(encoding="utf-8").splitlines(), 1):
|
| 637 |
heading = HEADING_RE.match(raw_line)
|
| 638 |
if heading:
|
| 639 |
+
if heading.group("level") == "##":
|
| 640 |
+
section = clean(heading.group("title"))
|
| 641 |
+
section_slug = slugify(section)
|
| 642 |
continue
|
| 643 |
|
| 644 |
entry = parse_entry_line(raw_line)
|
|
|
|
| 651 |
|
| 652 |
url_kind, domain = classify_url(url)
|
| 653 |
annotation = clean(entry["annotation"])
|
| 654 |
+
resource_type = base_resource_type(entry["resource_type"])
|
| 655 |
row_number = len(rows) + 1
|
| 656 |
row_id = f"ale-{row_number:04d}"
|
| 657 |
collection, user_goal = collection_for(section)
|
|
|
|
| 674 |
"description": annotation,
|
| 675 |
"key_contribution": key_contribution(annotation),
|
| 676 |
"novelty": novelty(section, clean(entry["title"]), annotation),
|
| 677 |
+
"impact": impact(collection, section, clean(entry["title"])),
|
| 678 |
"signal": signal_text,
|
| 679 |
"signal_strength": signal_strength,
|
| 680 |
"source_readme": "README.md",
|
|
|
|
| 686 |
"user_goal": user_goal,
|
| 687 |
"lifecycle_stages": lifecycle_stages(section, clean(entry["title"]), annotation),
|
| 688 |
"audience": audience_for(section, resource_type),
|
| 689 |
+
"loop_layer": loop_layer(section, clean(entry["title"])),
|
| 690 |
+
"scope_fit": scope_fit(section),
|
| 691 |
"evidence_class": evidence,
|
| 692 |
+
"evidence_tier": evidence_tier(evidence),
|
| 693 |
"source_status": audit.get("audit_status", "not-audited"),
|
| 694 |
"canonical_url": audit.get("canonical_url", "") or audit.get("final_url", "") or url,
|
| 695 |
"source_title": audit.get("source_title", ""),
|
scripts/render_readme_tables.py
CHANGED
|
@@ -11,8 +11,12 @@ from pathlib import Path
|
|
| 11 |
from export_resource_dataset import README, TYPE_MARKERS, iter_rows
|
| 12 |
|
| 13 |
|
| 14 |
-
TABLE_HEADERS = ("Resource", "Published at", "
|
| 15 |
-
LEGACY_TABLE_HEADERS = {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
SUMMARY_START = "<!-- resource-type-summary:start -->"
|
| 17 |
SUMMARY_END = "<!-- resource-type-summary:end -->"
|
| 18 |
PROJECT_GITHUB_REPO = "chaoyue0307/awesome-loop-engineering"
|
|
@@ -34,6 +38,40 @@ GITHUB_OWNER_LABELS = {
|
|
| 34 |
"vercel": "Vercel",
|
| 35 |
}
|
| 36 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 37 |
|
| 38 |
def escape_cell(value: str) -> str:
|
| 39 |
return value.replace("|", r"\|")
|
|
@@ -115,14 +153,29 @@ def publication_cell(row: dict[str, str]) -> str:
|
|
| 115 |
return primary
|
| 116 |
|
| 117 |
|
| 118 |
-
def
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
title = escape_cell(row["title"])
|
| 120 |
url = escape_cell(row["url"])
|
| 121 |
annotation = escape_cell(row["annotation"])
|
| 122 |
marker = escape_cell(row["marker"])
|
| 123 |
resource_type = escape_cell(row["resource_type"])
|
| 124 |
-
|
| 125 |
-
|
|
|
|
|
|
|
|
|
|
| 126 |
|
| 127 |
|
| 128 |
def markdown_table(headers: tuple[str, ...], data: list[tuple[str, ...]]) -> list[str]:
|
|
@@ -157,7 +210,8 @@ def is_table_separator(line: str) -> bool:
|
|
| 157 |
if not line.startswith("|"):
|
| 158 |
return False
|
| 159 |
cells = tuple(cell.strip() for cell in line.strip().strip("|").split("|"))
|
| 160 |
-
|
|
|
|
| 161 |
len(cell) >= 3 and not cell.strip("-") for cell in cells
|
| 162 |
)
|
| 163 |
|
|
|
|
| 11 |
from export_resource_dataset import README, TYPE_MARKERS, iter_rows
|
| 12 |
|
| 13 |
|
| 14 |
+
TABLE_HEADERS = ("Resource", "Published at", "Contribution", "Evidence")
|
| 15 |
+
LEGACY_TABLE_HEADERS = {
|
| 16 |
+
TABLE_HEADERS,
|
| 17 |
+
("Resource", "Published at", "Key feature"),
|
| 18 |
+
("Resource", "Publication / source", "Key feature"),
|
| 19 |
+
}
|
| 20 |
SUMMARY_START = "<!-- resource-type-summary:start -->"
|
| 21 |
SUMMARY_END = "<!-- resource-type-summary:end -->"
|
| 22 |
PROJECT_GITHUB_REPO = "chaoyue0307/awesome-loop-engineering"
|
|
|
|
| 38 |
"vercel": "Vercel",
|
| 39 |
}
|
| 40 |
|
| 41 |
+
EVIDENCE_LABELS = {
|
| 42 |
+
"research-paper": "Research paper",
|
| 43 |
+
"research-preprint": "Research preprint",
|
| 44 |
+
"official-documentation": "Official documentation",
|
| 45 |
+
"technical-documentation": "Technical documentation",
|
| 46 |
+
"source-implementation": "Source implementation",
|
| 47 |
+
"implementation": "Implementation",
|
| 48 |
+
"benchmark": "Benchmark or evaluation",
|
| 49 |
+
"repository-native": "Validated project artifact",
|
| 50 |
+
"reusable-artifact": "Reusable artifact",
|
| 51 |
+
"operational-pattern": "Operational pattern",
|
| 52 |
+
"practitioner-analysis": "Practitioner analysis",
|
| 53 |
+
"risk-analysis": "Risk analysis",
|
| 54 |
+
"curated-index": "Curated index",
|
| 55 |
+
"curated-source": "Curated source",
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
EVIDENCE_NOTES = {
|
| 59 |
+
"research-paper": "Published or accepted research record",
|
| 60 |
+
"research-preprint": "Preprint; inspect methods and evaluation",
|
| 61 |
+
"official-documentation": "Primary product or standard behavior",
|
| 62 |
+
"technical-documentation": "Technical reference from the source",
|
| 63 |
+
"source-implementation": "Inspectable source and runtime behavior",
|
| 64 |
+
"implementation": "Working implementation or runtime",
|
| 65 |
+
"benchmark": "Repeatable tasks, scores, or evaluation data",
|
| 66 |
+
"repository-native": "Maintained with project validation checks",
|
| 67 |
+
"reusable-artifact": "Adaptable template, schema, or guide",
|
| 68 |
+
"operational-pattern": "Transferable operating practice",
|
| 69 |
+
"practitioner-analysis": "Experience-backed implementation context",
|
| 70 |
+
"risk-analysis": "Failure modes, limits, or adoption cautions",
|
| 71 |
+
"curated-index": "Ecosystem coverage and discovery",
|
| 72 |
+
"curated-source": "Curated context for comparison",
|
| 73 |
+
}
|
| 74 |
+
|
| 75 |
|
| 76 |
def escape_cell(value: str) -> str:
|
| 77 |
return value.replace("|", r"\|")
|
|
|
|
| 153 |
return primary
|
| 154 |
|
| 155 |
|
| 156 |
+
def evidence_cell(row: dict[str, str]) -> str:
|
| 157 |
+
evidence = row["evidence_class"]
|
| 158 |
+
tier = row["evidence_tier"]
|
| 159 |
+
label = EVIDENCE_LABELS.get(evidence, evidence.replace("-", " ").title())
|
| 160 |
+
note = EVIDENCE_NOTES.get(evidence, "Inspect the linked source")
|
| 161 |
+
if row["source_status"] == "restricted":
|
| 162 |
+
note = "Access restricted during the latest source audit"
|
| 163 |
+
elif row["source_status"] not in {"ok", "local_ok"}:
|
| 164 |
+
note = "Availability was not verified in the latest audit"
|
| 165 |
+
return f"**Tier {escape_cell(tier)}** · {escape_cell(label)}<br><sub>{escape_cell(note)}</sub>"
|
| 166 |
+
|
| 167 |
+
|
| 168 |
+
def resource_cells(row: dict[str, str]) -> tuple[str, str, str, str]:
|
| 169 |
title = escape_cell(row["title"])
|
| 170 |
url = escape_cell(row["url"])
|
| 171 |
annotation = escape_cell(row["annotation"])
|
| 172 |
marker = escape_cell(row["marker"])
|
| 173 |
resource_type = escape_cell(row["resource_type"])
|
| 174 |
+
subtype = resource_type
|
| 175 |
+
if row.get("section") == "Model-Level Recurrence":
|
| 176 |
+
subtype = f"{resource_type} · Model layer · Adjacent foundation"
|
| 177 |
+
resource = f"{marker} **[{title}]({url})**<br><sub>{escape_cell(subtype)}</sub>"
|
| 178 |
+
return resource, publication_cell(row), annotation, evidence_cell(row)
|
| 179 |
|
| 180 |
|
| 181 |
def markdown_table(headers: tuple[str, ...], data: list[tuple[str, ...]]) -> list[str]:
|
|
|
|
| 210 |
if not line.startswith("|"):
|
| 211 |
return False
|
| 212 |
cells = tuple(cell.strip() for cell in line.strip().strip("|").split("|"))
|
| 213 |
+
valid_lengths = {len(headers) for headers in LEGACY_TABLE_HEADERS}
|
| 214 |
+
return len(cells) in valid_lengths and all(
|
| 215 |
len(cell) >= 3 and not cell.strip("-") for cell in cells
|
| 216 |
)
|
| 217 |
|
scripts/resolve_arxiv_publications.py
CHANGED
|
@@ -157,7 +157,13 @@ def json_request(
|
|
| 157 |
try:
|
| 158 |
with urllib.request.urlopen(request, timeout=timeout, context=context) as response:
|
| 159 |
return json.loads(response.read().decode("utf-8"))
|
| 160 |
-
except (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 161 |
if attempt == attempts:
|
| 162 |
return {}
|
| 163 |
time.sleep(attempt)
|
|
|
|
| 157 |
try:
|
| 158 |
with urllib.request.urlopen(request, timeout=timeout, context=context) as response:
|
| 159 |
return json.loads(response.read().decode("utf-8"))
|
| 160 |
+
except (
|
| 161 |
+
urllib.error.URLError,
|
| 162 |
+
urllib.error.HTTPError,
|
| 163 |
+
ConnectionError,
|
| 164 |
+
TimeoutError,
|
| 165 |
+
json.JSONDecodeError,
|
| 166 |
+
):
|
| 167 |
if attempt == attempts:
|
| 168 |
return {}
|
| 169 |
time.sleep(attempt)
|