From 3bf1691f4e32235f84f5cff9d6e4a3fdb9a57ffc Mon Sep 17 00:00:00 2001 From: Ben Sima Date: Sat, 8 Nov 2025 16:13:29 -0500 Subject: Add task manager for AI agents Implemented a dependency-aware task tracker inspired by beads: - Task CRUD operations (create, list, update, ready) - Dependency tracking and ready work detection - JSONL storage with git sync via hooks - Export/import for cross-machine synchronization - Short base62-encoded task IDs (e.g., t-1ky7gJ2) Added comprehensive AGENTS.md documentation: - Task manager usage and workflows - Development tools (bild, lint, repl.sh) - Git-branchless workflow guidelines - Coding conventions Integrated with git hooks for auto-sync: - post-merge/post-checkout: import tasks - pre-commit/pre-push: export tasks Also includes beads design analysis document for reference. Completed tasks: - t-a1b2c3: Show help text when invoked without args - t-d4e5f6: Move dev instructions to AGENTS.md - t-g7h8i9: Implement shorter task IDs - t-p6q7r8: Add git-branchless workflow docs https: //ampcode.com/threads/T-85f4ee29-a529-4f59-ac6f-6ffec75b6a56 Co-authored-by: Amp Amp-Thread-ID: https://ampcode.com/threads/T-85f4ee29-a529-4f59-ac6f-6ffec75b6a56 --- .gitignore | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index ac8a177..9ee57a2 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,19 @@ dist* .direnv/ Biz/Mynion/Prompt.md .aider* + +# Node.js +node_modules/ +package-lock.json +package.json + +# Task tracker +.tasks/*.db +.tasks/*.db-journal +.tasks/*.sock +.tasks/*.pipe +.tasks/*.log + +# But DO track the JSONL file +!.tasks/ +!.tasks/tasks.jsonl -- cgit v1.2.3