cy0307 commited on
Commit
da2a2ef
·
verified ·
1 Parent(s): 1ab3545

Add role-based future directions agenda

Browse files
FUTURE-DIRECTIONS.md ADDED
@@ -0,0 +1,73 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Future Directions
2
+
3
+ Loop Engineering is still an emerging practice. This agenda turns its largest open gaps into falsifiable research questions, buildable infrastructure, and testable product work. It is a guide to useful next contributions, not a prediction that every direction will succeed.
4
+
5
+ Prioritize work that makes at least one recurring agent loop **more measurable, portable, recoverable, economical, or governable**. A credible result should expose the trigger, permissions, external verification gate, durable state, budget, escalation path, and failure evidence.
6
+
7
+ ## For Researchers
8
+
9
+ | Category | High-value question | Evidence of progress | Concrete starting point |
10
+ | --- | --- | --- | --- |
11
+ | **Factorized evaluation** | How much performance comes from the model, harness, verifier, and outer loop separately? | Matched model and token budgets, controlled component ablations, confidence intervals, and held-out tasks | Run one fixed model across several harness and loop policies while scoring outcome, recovery, abstention, and resource use |
12
+ | **Verification science** | Which combinations of deterministic checks, learned judges, independent agents, and humans prevent false completion? | False-accept and false-reject rates, calibration, tamper resistance, inter-rater agreement, and adversarial challenge sets | Compare a test suite, single judge, judge ensemble, and human review on the same traces with a frozen acceptance policy |
13
+ | **State and learning across runs** | Which state representations support cold resume and improvement without stale-memory drift or compaction errors? | Longitudinal replay, state corruption tests, retention curves, recovery accuracy, state size, and maintenance cost | Build tasks that inject missing, stale, conflicting, or poisoned state between runs and measure recovery |
14
+ | **Control, stopping, and budgets** | When should a loop retry, change strategy, escalate, abstain, or stop under uncertainty? | Quality-cost-latency Pareto curves, regret, budget adherence, failure containment, and sensitivity analysis | Compare fixed retries, evidence-aware stopping, and learned escalation under identical budgets |
15
+ | **Human oversight** | Which handoff designs help people intervene accurately without review fatigue or automation bias? | Preregistered user studies, intervention precision, time to decision, missed failures, workload, and trust calibration | Compare raw traces, concise summaries, and structured evidence receipts on the same review decisions |
16
+
17
+ Research reports should publish negative results and separate task success from process discipline. A loop that reaches the answer through uncontrolled retries, hidden state, or verifier leakage is not equivalent to one that succeeds within its declared contract.
18
+
19
+ ## For Infrastructure And Reliability Engineers
20
+
21
+ | Category | Engineering objective | Evidence of progress | Concrete starting point |
22
+ | --- | --- | --- | --- |
23
+ | **Durable execution** | Resume safely after crashes, rate limits, deploys, and partial work | Idempotency tests, deterministic replay, duplicate-work rate, recovery time, and chaos results | Implement checkpointed queue processing with stable item IDs, bounded leases, and externally verified completion |
24
+ | **Receipts and observability** | Make every decision reconstructable from evidence rather than model narration | Correlated traces, immutable receipts, state diffs, cost attribution, and replay tooling | Define a receipt envelope for trigger, input version, action, verifier result, state transition, budget, and next action |
25
+ | **Permissions and isolation** | Enforce least privilege across tools, files, networks, credentials, and approval boundaries | Denied-action tests, capability manifests, sandbox escape tests, secret-exposure checks, and audited human overrides | Translate each Loop Contract permission into runtime policy and test both allowed and forbidden actions |
26
+ | **Portability and interoperability** | Move one contract between session, CI, scheduled, and durable runtimes without changing its semantics | Conformance tests, adapter compatibility, migration fixtures, and equivalent receipts across runtimes | Build adapters for one contract on a local schedule, GitHub Actions, and a recoverable worker |
27
+ | **Reliability economics** | Allocate models, tools, retries, and reviewers to maximize verified value within budget | Cost per verified outcome, latency percentiles, retry amplification, queue stability, and quality-budget frontiers | Add policy-based routing and compare it with fixed-model baselines on a replayable workload |
28
+
29
+ Operational maturity should be demonstrated with failure injection, not only happy-path demos. Useful artifacts include runbooks, service-level objectives, incident reviews, migration notes, and conformance suites.
30
+
31
+ ## For Application And Product Developers
32
+
33
+ | Category | Product objective | Evidence of progress | Concrete starting point |
34
+ | --- | --- | --- | --- |
35
+ | **Loop-worthy use cases** | Select recurring work with stable intake and a defensible external definition of done | Baseline human effort, recurrence rate, verifier coverage, exception rate, and avoided rework | Start with a narrow queue such as failing checks, stale documents, support triage, or threshold monitoring |
36
+ | **Domain verification** | Encode completion in domain evidence rather than a generic model confidence score | Golden cases, contract tests, reviewer agreement, regression suites, and unresolved-edge-case logs | Pair every action path with a domain-specific checker and keep the agent unable to edit that checker |
37
+ | **Human handoff experience** | Show progress, uncertainty, evidence, and safe next actions at the moment judgment is needed | Time to understand, correct intervention rate, override quality, notification burden, and user-reported clarity | Design one escalation view around objective, attempted actions, receipts, remaining budget, and recommended choices |
38
+ | **Progressive rollout** | Move from observation to bounded production use without hiding risk | Shadow-mode precision, canary outcomes, rollback rate, budget breaches, and post-launch incidents | Roll out through read-only, suggestion, approval-required, and bounded-autonomy stages with explicit promotion gates |
39
+ | **Maintainable adoption** | Keep loop behavior understandable as models, tools, policies, and teams change | Contract review time, configuration drift, ownership coverage, change failure rate, and onboarding success | Store versioned contracts beside code, assign an owner, and test them whenever prompts, tools, or verifiers change |
40
+
41
+ Strong developer contributions are complete vertical slices: a real trigger, bounded permissions, independent gate, durable receipts, escalation UX, and a before/after operating result.
42
+
43
+ ## Shared Infrastructure Priorities
44
+
45
+ | Priority | Shared asset | Minimum useful outcome |
46
+ | --- | --- | --- |
47
+ | **Portable Loop Contract profile** | A small interoperable subset of objective, trigger, permissions, verification, state, budget, escalation, and exit fields | Two runtimes execute the same contract and produce semantically equivalent decisions |
48
+ | **Receipt and replay format** | A stable event envelope for reconstructing each state transition and verifier decision | A third party can replay one run and identify why it retried, escalated, or exited |
49
+ | **Factorized benchmark harness** | Evaluation that varies model, harness, verifier, and loop policy independently | Results attribute gains and costs to the component that caused them |
50
+ | **Failure and safety challenge set** | Reusable cases for infinite retries, stale state, judge bias, prompt injection, permission escape, and budget exhaustion | Implementations report comparable containment and recovery metrics |
51
+ | **Case-study commons** | Public or safely anonymized operating reports with contracts, receipts, budgets, and lessons | Builders can compare real failure modes and operating economics across domains |
52
+
53
+ ## Three Starter Projects
54
+
55
+ 1. **Research:** create a matched-budget benchmark that compares fixed retry, evidence-aware retry, and human escalation while publishing every trace and negative result.
56
+ 2. **Engineering:** implement the same validated contract in a local scheduler, CI workflow, and durable worker, then publish a conformance and crash-recovery report.
57
+ 3. **Development:** ship one read-only production loop with a measurable baseline, independent checker, evidence-rich handoff, and staged rollout report.
58
+
59
+ ## Qualification Checklist
60
+
61
+ Before proposing a new direction, record:
62
+
63
+ - the recurring task and user or operator it serves;
64
+ - the baseline and falsifiable claim;
65
+ - the external evidence gate and who controls it;
66
+ - the durable state and receipt format;
67
+ - the time, cost, retry, and concurrency budgets;
68
+ - the failure injection or adversarial cases;
69
+ - the human escalation and rollback path;
70
+ - the reproducibility, privacy, and licensing constraints;
71
+ - the negative result that would cause the approach to be rejected.
72
+
73
+ Use [GitHub Discussions](https://github.com/ChaoYue0307/awesome-loop-engineering/discussions) to propose a study, reference implementation, or case study. Use the [gallery checklist](gallery/README.md#minimum-useful-case-study) when reporting a loop that has actually run.
README.md CHANGED
@@ -102,6 +102,18 @@ Use `url` as the durable join key. `row_id` and `source_line` are positional and
102
 
103
  Do not use `signal_strength`, GitHub stars, forks, or inclusion in this collection as a quality label, endorsement, or automated ranking of scientific validity.
104
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  ## Dataset Structure
106
 
107
  The primary configuration is `resources`, with one `train` split backed by `data/resources.jsonl`. `data/resources.csv` contains the same rows for spreadsheet and dataframe workflows.
 
102
 
103
  Do not use `signal_strength`, GitHub stars, forks, or inclusion in this collection as a quality label, endorsement, or automated ranking of scientific validity.
104
 
105
+ ## Future Directions
106
+
107
+ The project maintains a role-based agenda for moving Loop Engineering forward:
108
+
109
+ | Audience | Priority categories |
110
+ | --- | --- |
111
+ | Researchers | Factorized evaluation, verification science, state across runs, stopping policies, and human oversight |
112
+ | Infrastructure and reliability engineers | Durable execution, receipts and replay, least privilege, portability, and reliability economics |
113
+ | Application and product developers | Loop-worthy use cases, domain verification, escalation UX, progressive rollout, and maintainable adoption |
114
+
115
+ The complete [Future Directions agenda](https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/FUTURE-DIRECTIONS.md) defines measurable outputs, concrete starter projects, shared infrastructure priorities, and a qualification checklist.
116
+
117
  ## Dataset Structure
118
 
119
  The primary configuration is `resources`, with one `train` split backed by `data/resources.jsonl`. `data/resources.csv` contains the same rows for spreadsheet and dataframe workflows.
ROADMAP.md CHANGED
@@ -2,18 +2,20 @@
2
 
3
  The roadmap prioritizes stronger evidence, runnable implementations, and real operating results.
4
 
 
 
5
  ## Near Term
6
 
7
  - Collect more direct Loop Engineering sources as the term stabilizes.
8
  - Add real or anonymized gallery entries from practitioners running recurring agent loops.
9
- - Grow the runnable loop directory beyond the test-repair reference loop, including scheduled-trigger variants per runtime.
10
  - Add more translations for the introduction, mental model, Loop Contract, and contribution guide.
11
  - Audit contextual sources in small batches; replace weak summaries and secondary links with canonical evidence.
12
  - Replace unstable links with primary sources, official docs, papers, or implementation-heavy write-ups.
13
 
14
  ## Pattern Library
15
 
16
- The library now contains 15 reference patterns: PR babysitting, CI repair, docs drift, deploy verification, feedback clustering, dependency triage, evaluation regression, security review, cost control, bug hunting, enterprise approval, incident response, data quality, release notes, and model routing. Every pattern ships a schema-validated loop contract in `examples/`.
17
 
18
  Next pattern-library work should prioritize variants backed by operational evidence rather than adding names for coverage. Useful additions include runtime-specific implementations, before/after receipts, measured retry and cost budgets, failure cases, and human-escalation outcomes.
19
 
@@ -45,7 +47,8 @@ The gallery should grow from reference examples into public or anonymized case s
45
 
46
  ## Open Questions
47
 
48
- - Which loop primitives become common across Codex, Claude Code, GitHub Agentic Workflows, and custom runtimes?
49
- - What is the right schema shape for portable loop contracts?
50
- - Which verification gates are strong enough for unattended or semi-attended loops?
51
- - How should maintainers evaluate submitted real-world loop examples without exposing private data?
 
 
2
 
3
  The roadmap prioritizes stronger evidence, runnable implementations, and real operating results.
4
 
5
+ The role-based [Future Directions agenda](FUTURE-DIRECTIONS.md) complements this project roadmap with research questions, infrastructure priorities, application opportunities, measurable outputs, and starter projects.
6
+
7
  ## Near Term
8
 
9
  - Collect more direct Loop Engineering sources as the term stabilizes.
10
  - Add real or anonymized gallery entries from practitioners running recurring agent loops.
11
+ - Turn more validated contracts into runtime-specific executables with crash recovery, timeouts, replayable receipts, and failure-injection tests.
12
  - Add more translations for the introduction, mental model, Loop Contract, and contribution guide.
13
  - Audit contextual sources in small batches; replace weak summaries and secondary links with canonical evidence.
14
  - Replace unstable links with primary sources, official docs, papers, or implementation-heavy write-ups.
15
 
16
  ## Pattern Library
17
 
18
+ The library now contains 20 reference patterns: PR babysitting, CI repair, docs drift, deploy verification, feedback clustering, dependency triage, evaluation regression, security review, cost control, bug hunting, enterprise approval, incident response, data quality, release notes, model routing, benchmark optimization, knowledge freshness, performance regression, accessibility regression, and adversarial red teaming. Every pattern ships a schema-validated loop contract in `examples/`.
19
 
20
  Next pattern-library work should prioritize variants backed by operational evidence rather than adding names for coverage. Useful additions include runtime-specific implementations, before/after receipts, measured retry and cost budgets, failure cases, and human-escalation outcomes.
21
 
 
47
 
48
  ## Open Questions
49
 
50
+ - Which Loop Contract fields preserve their semantics across session, CI, scheduled, and durable runtimes?
51
+ - How should benchmarks separate model, harness, verifier, and outer-loop effects under matched budgets?
52
+ - Which verification gates remain calibrated under distribution shift and adversarial pressure?
53
+ - Which receipt format is sufficient for replay, incident review, and human escalation without retaining sensitive data?
54
+ - How should maintainers evaluate real-world loop examples without exposing private inputs, state, or traces?
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
 
design-qa.md CHANGED
@@ -14,7 +14,7 @@
14
 
15
  - Desktop first viewport: 1440 x 1000, page top, sticky navigation and the complete six-station agent loop visible.
16
  - Mobile first viewport: 390 x 844, page top, compact six-station scene, stage selector, and next-section cue visible without horizontal overflow.
17
- - Mobile navigation: eight links visible when expanded; Escape closes the menu, updates `aria-expanded`, and restores focus.
18
  - Pattern library: 20 symptom-first entries; mobile query `accessibility` returns exactly one matching pattern.
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.
@@ -24,6 +24,7 @@
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.
26
  - Interactive hero efficiency: the frame counter advanced by zero during a 700 ms offscreen check at the Resources section.
 
27
 
28
  ## Comparison History
29
 
@@ -39,6 +40,7 @@
39
  10. Verified progressive enhancement behavior: the semantic hero remains complete without WebGL, forced-colors and print hide the scene, reduced-motion renders a static frame, and the animation stops when the hero leaves the viewport.
40
  11. Expanded the implementation kit to 20 patterns, 20 validated contracts, and eight runtime starters. The runtime section now labels all five adaptable templates and all three executables, with use-case copy and an even desktop grid.
41
  12. Rechecked the expanded pattern and runtime sections at 1440 x 1000 and 390 x 844. Anchor offsets clear the sticky header, the page width stays equal to the viewport, and headings, icons, labels, and descriptions remain aligned.
 
42
 
43
  ## Findings
44
 
@@ -57,21 +59,24 @@
57
  - Mobile pattern library: `/private/tmp/ale-site-v07-patterns-mobile.png`
58
  - Desktop runtime map and starter grid: `/private/tmp/ale-site-v07-runtime-desktop-final.png`
59
  - Mobile runtime starters: `/private/tmp/ale-site-v07-runtime-mobile-final.png`
 
 
60
  - Three.js pointer-motion frame: `/private/tmp/awesome-loop-hero-three-motion-final.png`
61
  - Social preview: `/Users/chaoyue/Library/CloudStorage/Dropbox/Loop Engineering/awesome-loop-engineering/assets/social-preview.png`
62
 
63
  ## 2026-07-18 Repository Audit
64
 
65
- - Desktop: 1440 x 1000, no horizontal overflow, no hero text/scene overlap, and all eight section headings render without requiring scroll-triggered opacity changes.
66
  - Tablet: 768 x 900. The first pass clipped the intake and decision stations. The responsive camera now fits an 11.2-unit horizontal view between 720 px and 900 px, keeping all six stations, the retry path, and the outcome node inside the canvas.
67
  - 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.
68
- - Mobile navigation: opens all eight project links, reports `aria-expanded="true"`, closes on Escape, and restores focus to the menu button.
69
  - Pattern filter: `accessibility` returns exactly one of the 20 patterns.
70
  - Resource Atlas: remains idle above the fold, loads on approach or a direct resource anchor, and reports `545 of 545 resources | showing 8` on mobile.
71
  - Resource interactions: `SWE-bench` returns 9 matches, the paper filter narrows those to 6, Reset restores all 545, and Show more expands the rendered set from 8 to 16.
72
  - 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.
73
  - Scene pixels: the sampled desktop crop has 15.71% active pixels with RGB standard deviations of 35.83, 29.77, and 23.01; mobile has 27.84% active pixels with deviations of 41.27, 30.61, and 19.52. Both renders are nonblank and well contrasted.
74
  - 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.
 
75
  - Console: no page-origin errors or warnings during mobile navigation, pattern filtering, and Resource Atlas interactions.
76
  - Source audit: 545 rows checked; 496 public sources reachable, 1 access-restricted, 48 repository-native, and 0 broken or unreachable as of 2026-07-17 UTC.
77
  - Data and copy: the website, README, translations, social preview source, release copy, and Hugging Face card all report 545 resources, 20 patterns, 20 contracts, 8 runtime starters, and version 0.7.0.
 
14
 
15
  - Desktop first viewport: 1440 x 1000, page top, sticky navigation and the complete six-station agent loop visible.
16
  - Mobile first viewport: 390 x 844, page top, compact six-station scene, stage selector, and next-section cue visible without horizontal overflow.
17
+ - Mobile navigation: nine links visible when expanded; Escape closes the menu, updates `aria-expanded`, and restores focus.
18
  - Pattern library: 20 symptom-first entries; mobile query `accessibility` returns exactly one matching pattern.
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.
 
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.
26
  - Interactive hero efficiency: the frame counter advanced by zero during a 700 ms offscreen check at the Resources section.
27
+ - Future directions: three role-based tracks remain side by side at 1440 x 1000 and become a rule-separated single column at 390 x 844 without horizontal overflow.
28
 
29
  ## Comparison History
30
 
 
40
  10. Verified progressive enhancement behavior: the semantic hero remains complete without WebGL, forced-colors and print hide the scene, reduced-motion renders a static frame, and the animation stops when the hero leaves the viewport.
41
  11. Expanded the implementation kit to 20 patterns, 20 validated contracts, and eight runtime starters. The runtime section now labels all five adaptable templates and all three executables, with use-case copy and an even desktop grid.
42
  12. Rechecked the expanded pattern and runtime sections at 1440 x 1000 and 390 x 844. Anchor offsets clear the sticky header, the page width stays equal to the viewport, and headings, icons, labels, and descriptions remain aligned.
43
+ 13. Added the role-based future-directions section and rechecked it at both target viewports. Resource Atlas expansion initially displaced direct links to later sections; post-load hash restoration now leaves `#future` 84 px below the desktop viewport top and 74 px below it on mobile.
44
 
45
  ## Findings
46
 
 
59
  - Mobile pattern library: `/private/tmp/ale-site-v07-patterns-mobile.png`
60
  - Desktop runtime map and starter grid: `/private/tmp/ale-site-v07-runtime-desktop-final.png`
61
  - Mobile runtime starters: `/private/tmp/ale-site-v07-runtime-mobile-final.png`
62
+ - Desktop future directions: `/private/tmp/future-viewport-desktop.png`
63
+ - Mobile future directions: `/private/tmp/future-viewport-mobile.png`
64
  - Three.js pointer-motion frame: `/private/tmp/awesome-loop-hero-three-motion-final.png`
65
  - Social preview: `/Users/chaoyue/Library/CloudStorage/Dropbox/Loop Engineering/awesome-loop-engineering/assets/social-preview.png`
66
 
67
  ## 2026-07-18 Repository Audit
68
 
69
+ - Desktop: 1440 x 1000, no horizontal overflow, no hero text/scene overlap, and all nine section headings render without requiring scroll-triggered opacity changes.
70
  - Tablet: 768 x 900. The first pass clipped the intake and decision stations. The responsive camera now fits an 11.2-unit horizontal view between 720 px and 900 px, keeping all six stations, the retry path, and the outcome node inside the canvas.
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 `545 of 545 resources | showing 8` on mobile.
75
  - Resource interactions: `SWE-bench` returns 9 matches, the paper filter narrows those to 6, Reset restores all 545, and Show more expands the rendered set from 8 to 16.
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 sampled desktop crop has 15.71% active pixels with RGB standard deviations of 35.83, 29.77, and 23.01; mobile has 27.84% active pixels with deviations of 41.27, 30.61, and 19.52. Both renders are nonblank and well contrasted.
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
  - Source audit: 545 rows checked; 496 public sources reachable, 1 access-restricted, 48 repository-native, and 0 broken or unreachable as of 2026-07-17 UTC.
82
  - Data and copy: the website, README, translations, social preview source, release copy, and Hugging Face card all report 545 resources, 20 patterns, 20 contracts, 8 runtime starters, and version 0.7.0.
docs/index.html CHANGED
@@ -479,6 +479,36 @@
479
  text-transform: uppercase;
480
  }
481
  .runtime-kind.executable { color: var(--green); }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
482
  code {
483
  border: 1px solid var(--line);
484
  border-radius: 4px;
@@ -674,6 +704,10 @@
674
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
675
  .stat:last-child { grid-column: 1 / -1; border-left: 0; }
676
  .principles, .link-grid, .pattern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 
 
 
 
677
  .level { grid-template-columns: 54px 1fr; }
678
  .level .detail { grid-column: 2; }
679
  .resource-toolbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@@ -1057,6 +1091,7 @@
1057
  <a href="#runtimes">Runtimes</a>
1058
  <a href="#maturity">Maturity</a>
1059
  <a href="#resources">Resources</a>
 
1060
  <a href="#faq">FAQ</a>
1061
  <a class="mobile-nav-only" href="https://huggingface.co/datasets/cy0307/awesome-loop-engineering"><i class="icon" data-lucide="database" aria-hidden="true"></i>Dataset</a>
1062
  </nav>
@@ -1417,11 +1452,57 @@
1417
  </div>
1418
  </section>
1419
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1420
  <section id="contribute">
1421
  <div class="wrap">
1422
  <div class="section-head">
1423
  <div>
1424
- <p class="section-label"><i class="icon" data-lucide="handshake" aria-hidden="true"></i><span>07 / Contribute</span></p>
1425
  <h2>Improve the evidence or share a loop.</h2>
1426
  </div>
1427
  <p class="section-intro">Submit one canonical source, correct an existing record with primary evidence, or document a loop you have run.</p>
@@ -1439,7 +1520,7 @@
1439
  <div class="wrap">
1440
  <div class="section-head">
1441
  <div>
1442
- <p class="section-label"><i class="icon" data-lucide="message-circle-question-mark" aria-hidden="true"></i><span>08 / FAQ</span></p>
1443
  <h2>Questions that define the boundary.</h2>
1444
  </div>
1445
  <p class="section-intro">Use these tests to decide whether a recurring agent system needs a loop.</p>
@@ -1490,6 +1571,7 @@
1490
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/MANIFESTO.md">Manifesto</a>
1491
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/TAXONOMY.md">Taxonomy</a>
1492
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/ANTI-PATTERNS.md">Anti-patterns</a>
 
1493
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/meta/CURATION.md">Curation + provenance</a>
1494
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/data/resource_source_audit.csv">Source audit</a>
1495
  </div>
@@ -1888,6 +1970,7 @@
1888
  });
1889
  explorer.dataset.indexState = 'ready';
1890
  render();
 
1891
  })
1892
  .catch(function () {
1893
  loading = false;
@@ -1898,6 +1981,17 @@
1898
  });
1899
  }
1900
 
 
 
 
 
 
 
 
 
 
 
 
1901
  var resourceSection = document.getElementById('resources');
1902
  if (window.location.hash === '#resources') {
1903
  loadResources();
 
479
  text-transform: uppercase;
480
  }
481
  .runtime-kind.executable { color: var(--green); }
482
+ .future-grid {
483
+ display: grid;
484
+ grid-template-columns: repeat(3, minmax(0, 1fr));
485
+ border-top: 1px solid var(--line-strong);
486
+ border-bottom: 1px solid var(--line-strong);
487
+ }
488
+ .future-track {
489
+ display: flex;
490
+ min-width: 0;
491
+ flex-direction: column;
492
+ padding: 24px 24px 24px 0;
493
+ }
494
+ .future-track + .future-track { border-left: 1px solid var(--line); padding-left: 24px; }
495
+ .future-track h3 { display: flex; align-items: center; gap: 9px; margin: 0; font-size: 1rem; }
496
+ .future-track h3 .icon { width: 18px; height: 18px; color: var(--blue); }
497
+ .future-track ul { margin: 16px 0 22px; padding-left: 19px; }
498
+ .future-track li { margin-top: 9px; color: var(--muted); font-size: 0.86rem; line-height: 1.5; }
499
+ .future-track li::marker { color: var(--blue); }
500
+ .future-output { margin: auto 0 0; border-top: 1px solid var(--line); padding-top: 14px; color: var(--quiet); font-size: 0.76rem; line-height: 1.5; }
501
+ .future-output strong { display: block; margin-bottom: 3px; color: var(--ink); }
502
+ .future-shared {
503
+ display: grid;
504
+ grid-template-columns: 180px minmax(0, 1fr) auto;
505
+ gap: 22px;
506
+ align-items: center;
507
+ border-bottom: 1px solid var(--line-strong);
508
+ padding: 20px 0;
509
+ }
510
+ .future-shared strong { font-size: 0.92rem; }
511
+ .future-shared p { margin: 0; color: var(--muted); font-size: 0.84rem; line-height: 1.55; }
512
  code {
513
  border: 1px solid var(--line);
514
  border-radius: 4px;
 
704
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
705
  .stat:last-child { grid-column: 1 / -1; border-left: 0; }
706
  .principles, .link-grid, .pattern-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
707
+ .future-grid { grid-template-columns: 1fr; }
708
+ .future-track { padding: 20px 0; }
709
+ .future-track + .future-track { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
710
+ .future-shared { grid-template-columns: 1fr; gap: 10px; align-items: start; }
711
  .level { grid-template-columns: 54px 1fr; }
712
  .level .detail { grid-column: 2; }
713
  .resource-toolbar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
 
1091
  <a href="#runtimes">Runtimes</a>
1092
  <a href="#maturity">Maturity</a>
1093
  <a href="#resources">Resources</a>
1094
+ <a href="#future">Future</a>
1095
  <a href="#faq">FAQ</a>
1096
  <a class="mobile-nav-only" href="https://huggingface.co/datasets/cy0307/awesome-loop-engineering"><i class="icon" data-lucide="database" aria-hidden="true"></i>Dataset</a>
1097
  </nav>
 
1452
  </div>
1453
  </section>
1454
 
1455
+ <section id="future">
1456
+ <div class="wrap">
1457
+ <div class="section-head">
1458
+ <div>
1459
+ <p class="section-label"><i class="icon" data-lucide="compass" aria-hidden="true"></i><span>07 / Future directions</span></p>
1460
+ <h2>Decide what the field should prove next.</h2>
1461
+ </div>
1462
+ <p class="section-intro">A credible agenda separates claims to test, infrastructure to build, and product loops to validate. Each direction should end in external evidence, reproducible artifacts, or measured operating results.</p>
1463
+ </div>
1464
+ <div class="future-grid">
1465
+ <article class="future-track">
1466
+ <h3><i class="icon" data-lucide="book-open" aria-hidden="true"></i>For researchers</h3>
1467
+ <ul>
1468
+ <li>Separate model, harness, verifier, and loop effects under matched budgets.</li>
1469
+ <li>Measure false completion, calibration, tamper resistance, and recovery.</li>
1470
+ <li>Study state drift, stopping policies, and human oversight across runs.</li>
1471
+ </ul>
1472
+ <p class="future-output"><strong>Useful outputs</strong>Benchmarks, ablations, longitudinal datasets, preregistered studies, and negative results.</p>
1473
+ </article>
1474
+ <article class="future-track">
1475
+ <h3><i class="icon" data-lucide="wrench" aria-hidden="true"></i>For infrastructure engineers</h3>
1476
+ <ul>
1477
+ <li>Build crash-safe, idempotent, replayable, and observable runtimes.</li>
1478
+ <li>Turn contract permissions into enforceable least-privilege policy.</li>
1479
+ <li>Standardize receipts and preserve semantics across runtime adapters.</li>
1480
+ </ul>
1481
+ <p class="future-output"><strong>Useful outputs</strong>Reference workers, conformance suites, receipt schemas, replay tools, SLOs, and incident reports.</p>
1482
+ </article>
1483
+ <article class="future-track">
1484
+ <h3><i class="icon" data-lucide="code-2" aria-hidden="true"></i>For application developers</h3>
1485
+ <ul>
1486
+ <li>Choose recurring jobs with stable intake and a defensible definition of done.</li>
1487
+ <li>Design domain checkers and evidence-rich human handoffs.</li>
1488
+ <li>Progress from read-only shadowing to bounded autonomy with promotion gates.</li>
1489
+ </ul>
1490
+ <p class="future-output"><strong>Useful outputs</strong>Runnable vertical slices, domain evals, escalation UX, rollout studies, and failure write-ups.</p>
1491
+ </article>
1492
+ </div>
1493
+ <div class="future-shared">
1494
+ <strong>Shared milestones</strong>
1495
+ <p>Portable contracts and receipts, factorized benchmarks, replayable state, failure-injection suites, and public or safely anonymized case studies.</p>
1496
+ <a class="button" href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/FUTURE-DIRECTIONS.md"><i class="icon" data-lucide="compass" aria-hidden="true"></i>Open the agenda</a>
1497
+ </div>
1498
+ </div>
1499
+ </section>
1500
+
1501
  <section id="contribute">
1502
  <div class="wrap">
1503
  <div class="section-head">
1504
  <div>
1505
+ <p class="section-label"><i class="icon" data-lucide="handshake" aria-hidden="true"></i><span>08 / Contribute</span></p>
1506
  <h2>Improve the evidence or share a loop.</h2>
1507
  </div>
1508
  <p class="section-intro">Submit one canonical source, correct an existing record with primary evidence, or document a loop you have run.</p>
 
1520
  <div class="wrap">
1521
  <div class="section-head">
1522
  <div>
1523
+ <p class="section-label"><i class="icon" data-lucide="message-circle-question-mark" aria-hidden="true"></i><span>09 / FAQ</span></p>
1524
  <h2>Questions that define the boundary.</h2>
1525
  </div>
1526
  <p class="section-intro">Use these tests to decide whether a recurring agent system needs a loop.</p>
 
1571
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/MANIFESTO.md">Manifesto</a>
1572
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/TAXONOMY.md">Taxonomy</a>
1573
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/ANTI-PATTERNS.md">Anti-patterns</a>
1574
+ <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/FUTURE-DIRECTIONS.md">Future directions</a>
1575
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/meta/CURATION.md">Curation + provenance</a>
1576
  <a href="https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/data/resource_source_audit.csv">Source audit</a>
1577
  </div>
 
1970
  });
1971
  explorer.dataset.indexState = 'ready';
1972
  render();
1973
+ restorePostResourceHash();
1974
  })
1975
  .catch(function () {
1976
  loading = false;
 
1981
  });
1982
  }
1983
 
1984
+ function restorePostResourceHash() {
1985
+ var targetId = window.location.hash.slice(1);
1986
+ if (!targetId || targetId === 'resources') return;
1987
+ var target = document.getElementById(targetId);
1988
+ if (!target || !resourceSection) return;
1989
+ if (!(resourceSection.compareDocumentPosition(target) & Node.DOCUMENT_POSITION_FOLLOWING)) return;
1990
+ requestAnimationFrame(function () {
1991
+ target.scrollIntoView({ behavior: 'instant', block: 'start' });
1992
+ });
1993
+ }
1994
+
1995
  var resourceSection = document.getElementById('resources');
1996
  if (window.location.hash === '#resources') {
1997
  loadResources();
meta/hf_card_body.md CHANGED
@@ -69,6 +69,18 @@ Use `url` as the durable join key. `row_id` and `source_line` are positional and
69
 
70
  Do not use `signal_strength`, GitHub stars, forks, or inclusion in this collection as a quality label, endorsement, or automated ranking of scientific validity.
71
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  ## Dataset Structure
73
 
74
  The primary configuration is `resources`, with one `train` split backed by `data/resources.jsonl`. `data/resources.csv` contains the same rows for spreadsheet and dataframe workflows.
 
69
 
70
  Do not use `signal_strength`, GitHub stars, forks, or inclusion in this collection as a quality label, endorsement, or automated ranking of scientific validity.
71
 
72
+ ## Future Directions
73
+
74
+ The project maintains a role-based agenda for moving Loop Engineering forward:
75
+
76
+ | Audience | Priority categories |
77
+ | --- | --- |
78
+ | Researchers | Factorized evaluation, verification science, state across runs, stopping policies, and human oversight |
79
+ | Infrastructure and reliability engineers | Durable execution, receipts and replay, least privilege, portability, and reliability economics |
80
+ | Application and product developers | Loop-worthy use cases, domain verification, escalation UX, progressive rollout, and maintainable adoption |
81
+
82
+ The complete [Future Directions agenda](https://github.com/ChaoYue0307/awesome-loop-engineering/blob/main/FUTURE-DIRECTIONS.md) defines measurable outputs, concrete starter projects, shared infrastructure priorities, and a qualification checklist.
83
+
84
  ## Dataset Structure
85
 
86
  The primary configuration is `resources`, with one `train` split backed by `data/resources.jsonl`. `data/resources.csv` contains the same rows for spreadsheet and dataframe workflows.