summaryrefslogtreecommitdiff
path: root/AGENTS.md
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-02-04 09:11:30 +0200
committerPaul Buetow <paul@buetow.org>2026-02-04 09:11:30 +0200
commit288aa24e8bc4f22cb7de5d60789e1d6ec79f7395 (patch)
treebe644130fbffaf946e3122ffdf89dc203447124a /AGENTS.md
parent6d8953d52efa6037b679d7a722b060c687843f3a (diff)
add runtime debugging signals and convert to magev0.10.0
- Add SIGUSR1 handler for goroutine stack dumps when app hangs - Add SIGUSR2 handler for full profiling (heap, cpu, block) - Add --debug-dir flag for configurable debug output location - Convert build system from go-task to mage - Update documentation with debugging workflow - Bump version to 0.10.0
Diffstat (limited to 'AGENTS.md')
-rw-r--r--AGENTS.md13
1 files changed, 9 insertions, 4 deletions
diff --git a/AGENTS.md b/AGENTS.md
index 3514455..5614e44 100644
--- a/AGENTS.md
+++ b/AGENTS.md
@@ -10,16 +10,21 @@ TaskSamurai is a fast Terminal User Interface (TUI) for Taskwarrior written in G
```bash
# Build the application
-go-task
+mage build
+# or simply
+mage
# Run the application
-go-task run
+mage run
# Run all tests
-go-task test
+mage test
# Install to $GOPATH/bin
-go-task install
+mage install
+
+# Clean build artifacts
+mage clean
# Run with debug logging
./tasksamurai --debug-log debug.log