Frontmatter
| id | 7833 |
| title | Demo: Self-Healing Repository Script (Agent OS) |
| state | Closed |
| labels | enhancementdeveloper-experienceai |
| assignees | tobiu |
| createdAt | Nov 21, 2025, 1:56 AM |
| updatedAt | Nov 21, 2025, 2:16 AM |
| githubUrl | https://github.com/neomjs/neo/issues/7833 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Nov 21, 2025, 2:16 AM |
Demo: Self-Healing Repository Script (Agent OS)
tobiu assigned to @tobiu on Nov 21, 2025, 1:57 AM

tobiu
Nov 21, 2025, 2:16 AM
Input from Gemini 3.0 Preview:
I have successfully implemented and validated the "Self-Healing" demo script.
Deliverables:
ai/examples/self-healing.mjs: A fully autonomous script that monitors GitHub for bugs, queries the Knowledge Base for context, logs a plan to Memory, and posts a solution to the issue.- Validation: Ran the script against test issue #7834. The agent successfully identified
DomEvents.mdas the relevant context and posted a structured analysis comment.
This confirms that the "Agent OS" architecture (Unified SDK + Code Execution) allows agents to perform complex, multi-step maintenance tasks without human intervention.
Closing ticket.
tobiu closed this issue on Nov 21, 2025, 2:16 AM
Objective Develop a proof-of-concept "Self-Healing" script that demonstrates the full power of the Agent OS SDK (
ai/services.mjs). The script will autonomously simulate a bug fix workflow by interacting with GitHub issues, the Knowledge Base, and the Memory Core.Context We have established the "Code Execution" infrastructure (#7831, #7832). The next step is to prove its value with a complex, multi-domain use case. This demo will serve as the canonical example for the "Agent OS" vision.
Workflow to Implement (
ai/examples/self-healing.mjs)GH_IssueServiceto find an open issue labeledbug(or a specific test issue).KB_QueryServiceto search for code and documentation relevant to the issue's title/body.Memory_Serviceto log the agent's "thought process" and plan of attack.Deliverables
ai/examples/self-healing.mjs: The executable script.ai/sdk-manifest.mdif new patterns emerge.Dependencies
ai/services.mjs(Completed).