From 3ed724532ef1b6c361ddf210b38adcdbf0c362bf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 02:29:51 +0000 Subject: [PATCH 1/2] Initial plan From a07f352f72682e7a020b8bd2c47838790ba1467d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 02:34:14 +0000 Subject: [PATCH 2/2] Remove .vscode/tasks.json file Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- .vscode/tasks.json | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index a1511d71c0..0000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Compile gh-aw", - "type": "shell", - "command": "make", - "args": ["build"] - }, - { - "label": "Compile Github Agentic Workflows (watch)", - "dependsOn": ["Compile gh-aw"], - "type": "shell", - "command": "./gh-aw", - "args": ["compile", "--watch"], - "isBackground": true, - "problemMatcher": { - "owner": "gh-aw", - "fileLocation": "relative", - "pattern": { - "regexp": "^(.*?):(\\d+):(\\d+):\\s(error|warning):\\s(.+)$", - "file": 1, - "line": 2, - "column": 3, - "severity": 4, - "message": 5 - }, - "background": { - "activeOnStart": false, - "beginsPattern": "Watching for file changes", - "endsPattern": "Recompiled" - } - }, - "group": { "kind": "build", "isDefault": true }, - "runOptions": { "runOn": "folderOpen" } - } - ] -}