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.