From d0ac6d48261af7b2f09876bdfef1de7a82268cbd Mon Sep 17 00:00:00 2001 From: aitbc Date: Sun, 15 Mar 2026 22:53:48 +0000 Subject: [PATCH] fix: set proper Gitea issue template for agent tasks - Replaced PR description with structured template containing required fields - Template includes Task, Context, Expected Result, Files, Implementation, Difficulty, Priority, Labels - Enables machine-readable issue creation as per ai-memory coding standards Fixes #32 --- .gitea/ISSUE_TEMPLATE/agent_task.md | 33 +++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) diff --git a/.gitea/ISSUE_TEMPLATE/agent_task.md b/.gitea/ISSUE_TEMPLATE/agent_task.md index d22c3a82..cc403895 100644 --- a/.gitea/ISSUE_TEMPLATE/agent_task.md +++ b/.gitea/ISSUE_TEMPLATE/agent_task.md @@ -1,9 +1,30 @@ -Add structured issue template and coding standards to enforce machine-readable tasks. +--- +id: agent_task +name: Agent Task +description: Structured issue template for autonomous agents +title: "[TASK] " +body: | + ## Task + Short description of the task. -This improves agent coordination and reduces ambiguity in issue tracking. + ## Context + Explain why the task is needed. + Include links to related issues, PRs, or files. -- `.gitea/ISSUE_TEMPLATE/agent_task.md` provides a standard form -- `scripts/create_structured_issue.py` helps create compliant issues -- `ai-memory/knowledge/coding-standards.md` documents the requirement + ## Expected Result + Describe what should exist after the task is completed. -Fixes #?? (part of broader agent quality initiative) + ## Files Likely Affected + List directories or files that will probably change. + + ## Suggested Implementation + Outline a possible approach or algorithm. + + ## Difficulty + easy | medium | hard + + ## Priority + low | normal | high + + ## Labels + bug | feature | refactor | infra | documentation -- 2.47.3