From 97494a8775fd97ed0aaa4677f45fca2a70186259 Mon Sep 17 00:00:00 2001 From: Max Date: Sat, 21 Feb 2026 17:20:20 -0600 Subject: [PATCH] Add CLI tools documentation to README --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 5498486..5b78ccd 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,27 @@ npm run start npm run lint ``` +## CLI Tools for AI Access + +Located in `scripts/` directory. These allow programmatic access without browser automation. + +```bash +# Task CRUD +./scripts/gantt-task-crud.sh list [status] # List all tasks +./scripts/gantt-task-crud.sh get # Get specific task +./scripts/gantt-task-crud.sh create "Title" [status] [priority] [project-id] [assignee-id] +./scripts/gantt-task-crud.sh update +./scripts/gantt-task-crud.sh delete + +# File Attachments +./scripts/attach-file.sh # Attach file to task +./scripts/view-attachment.sh [index] # View attachment content +``` + +**Requires:** `scripts/.env` with `SUPABASE_URL` and `SUPABASE_SERVICE_ROLE_KEY` + +See: `STANDARD_CLI_INTEGRATION.md` in workspace for full pattern. + ## Notes - You may see a Next.js warning about multiple lockfiles and inferred workspace root. This is non-blocking for local dev.