Skip to content

Commit 3aa563f

Browse files
committed
Establish public maintainer baseline
1 parent e0eff10 commit 3aa563f

File tree

4 files changed

+50
-2
lines changed

4 files changed

+50
-2
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Maintainer roadmap
4+
url: https://github.com/qicesun/SRE-Agent-App/issues
5+
about: Review current roadmap, evaluation, and maintenance issues before opening a new task.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Maintainer task
2+
description: Track roadmap, evaluation, release, or documentation work for the public project.
3+
title: "[Maintainer]: "
4+
labels:
5+
- maintenance
6+
body:
7+
- type: dropdown
8+
id: task-type
9+
attributes:
10+
label: Task type
11+
description: Which maintenance stream does this belong to?
12+
options:
13+
- Roadmap
14+
- Evaluation
15+
- Release
16+
- Documentation
17+
- Integration hardening
18+
validations:
19+
required: true
20+
- type: textarea
21+
id: summary
22+
attributes:
23+
label: Summary
24+
description: Describe the work that needs to be tracked.
25+
placeholder: Add a short, concrete description of the maintenance task.
26+
validations:
27+
required: true
28+
- type: textarea
29+
id: outcome
30+
attributes:
31+
label: Expected outcome
32+
description: What should be true when this task is done?
33+
placeholder: Document the observable result or repository artifact expected from this task.
34+
validations:
35+
required: true

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Key building blocks:
9292
### 📦 Installation & Setup
9393
1) Clone the repo:
9494
```bash
95-
git clone https://github.com/<your-org>/SRE-Agent-App.git
95+
git clone https://github.com/qicesun/SRE-Agent-App.git
9696
cd SRE-Agent-App
9797
```
9898

@@ -151,3 +151,11 @@ mvn spring-boot:run
151151
## Notes
152152
- Session scope (K8s namespace/workload, GitLab project, Jira project key) is stored in `SessionConfigStore` keyed by `X-Session-Id`.
153153
- The agent system prompt is rebuilt every turn and includes the latest session config (credentials are never injected into the prompt).
154+
155+
## Maintainer Workflows / Roadmap
156+
- **Release cadence:** Public milestones are captured as GitHub releases. `v0.1.0` establishes the first maintained baseline for the project.
157+
- **Evaluation work:** Current maintainer work focuses on repeatable incident-evaluation scenarios, demo hardening, and validation of agent behavior across Kubernetes, GitLab, Jira, and web-research paths.
158+
- **Integration hardening:** Near-term follow-up work prioritizes safer action boundaries, more robust external integration handling, and clearer operator-facing failure modes.
159+
- **Documentation:** README, release notes, and issue tracking are kept in sync so the public repo reflects the current maintenance state, known limitations, and next steps.
160+
161+
Track active maintenance in GitHub via the `v0.1.0` release and the `v0.2.0 Evaluation Hardening` milestone issues.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
<groupId>com.qicesun</groupId>
1515
<artifactId>sre-agent</artifactId>
16-
<version>0.0.1-SNAPSHOT</version>
16+
<version>0.1.0</version>
1717
<name>SRE Agent</name>
1818
<description>Spring Boot SRE Agent with LangChain4j and Kubernetes client</description>
1919
<packaging>jar</packaging>

0 commit comments

Comments
 (0)