Skip to content

Commit 71b2609

Browse files
authored
feat(events): add Loop Engineering conference session (#91)
Signed-off-by: yjlu12 <yjlu12@iflytek.com>
1 parent 9dde5c9 commit 71b2609

3 files changed

Lines changed: 21 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ All notable changes to this project will be documented in this file.
77
### Added
88

99
- **Astron Ecosystem Milestone**: Added a bilingual, responsive `/milestone` Gantt-style timeline alongside Projects and Landscape, covering Astron Agent, Astron RPA, and SkillHub rankings through August 2026, GitHub Trending peaks, foundation membership, ecosystem recognition, and industry awards
10+
- **New Event: Maintaining an Enterprise-Grade Agent Project Solo (2026-09-04)**: Added the A2M Shanghai conference session on using Loop Engineering to create an AI-native, automated, and verifiable delivery loop for Astron Agent, including bilingual title, subtitle, description, venue, and details link
11+
- **Event Subtitles**: Added optional bilingual subtitle fields to event cards while preserving the existing title fallback for older events
1012

1113
### Fixed
1214

src/data/events.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
export interface Event {
66
title: string;
77
titleZh: string;
8+
subtitle?: string;
9+
subtitleEn?: string;
810
date: string;
911
type: 'conference' | 'meetup' | 'hackathon' | 'workshop' | 'webinar';
1012
status?: 'upcoming' | 'ongoing' | 'past';
@@ -15,6 +17,20 @@ export interface Event {
1517
}
1618

1719
export const events: Event[] = [
20+
{
21+
title: 'How One Person Can Sustainably Maintain an Enterprise-Grade Open-Source Agent Project',
22+
titleZh: '一个人,如何持续维护一个企业级 Agent 开源项目',
23+
subtitle: '从 Astron Agent 的工程复杂度,到 Loop Engineering 的自驱动闭环',
24+
subtitleEn: "From Astron Agent's Engineering Complexity to a Self-Driving Loop with Loop Engineering",
25+
date: '2026-09-04',
26+
type: 'conference',
27+
description:
28+
'如何通过 Loop Engineering,将 AI Coding 引入真实研发流程,自动化解决需求拆解、代码开发、测试验证、CI 检测、部署上线等环节中的效率与质量问题,形成从需求到交付的自动化闭环。通过这一实践,Astron Agent 项目的研发流程正在从传统人工驱动,逐步演进为 AI 原生、自动化、可验证的工程体系,为复杂 AI 应用平台的持续迭代和规模化交付提供了新的实践路径。',
29+
descriptionEn:
30+
"Learn how Loop Engineering brings AI Coding into real-world development workflows to automate requirements decomposition, code development, test validation, CI checks, and deployment, improving efficiency and quality while creating an automated loop from requirements to delivery. Through this practice, Astron Agent's development process is evolving from traditional human-driven workflows into an AI-native, automated, and verifiable engineering system, offering a new path for the continuous iteration and scalable delivery of complex AI application platforms.",
31+
location: 'IBP International Conference Center, Shanghai, China',
32+
link: 'https://a2m.msup.com.cn/course/19413?aid=4949&qd=dahui&city=shanghai&_a2m_nocache=1787040965742',
33+
},
1834
{
1935
title: 'Driving Real Hardware with Astron Agent',
2036
titleZh: '用 Astron Agent 驱动真实硬件',

src/pages/events.astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,10 @@ const newsPosts = posts
166166
</h3>
167167
<p
168168
class="mt-1 text-sm text-gray-500 dark:text-gray-500"
169-
data-lang-zh={event.titleZh}
170-
data-lang-en={event.title}
169+
data-lang-zh={event.subtitle || event.titleZh}
170+
data-lang-en={event.subtitleEn || event.title}
171171
>
172-
{event.title}
172+
{event.subtitle || event.titleZh}
173173
</p>
174174
<p
175175
class="mt-3 text-sm text-gray-600 dark:text-gray-400"

0 commit comments

Comments
 (0)