feat(mma): Implement Deep AST-Driven Context Pruning and mark track complete

This commit is contained in:
2026-03-06 17:05:48 -05:00
parent d7dc3f6c49
commit af4a227d67
7 changed files with 449 additions and 115 deletions

View File

@@ -88,12 +88,14 @@ CONSTRAINTS:
OUTPUT REQUIREMENT:
Return a JSON array of 'Tickets' in Godot ECS Flat List format.
Include 'depends_on' pointers to construct an execution DAG (Directed Acyclic Graph).
Include 'target_symbols' (list of strings) to specify which functions or classes should be extracted if using a targeted context view.
[
{
"id": "ticket_id",
"type": "Ticket",
"goal": "Surgical implementation task",
"target_file": "path/to/file",
"target_symbols": ["function_name", "ClassName.method_name"],
"depends_on": ["other_ticket_id"],
"context_requirements": ["list_of_needed_skeletons"]
},