Update README with project get and sprint get commands

This commit is contained in:
Max 2026-02-21 17:51:25 -06:00
parent 873712e037
commit b0fc52ade4

View File

@ -70,6 +70,9 @@ A unified CLI that covers all API operations.
# List all projects # List all projects
./scripts/gantt.sh project list ./scripts/gantt.sh project list
# Get specific project
./scripts/gantt.sh project get <project-id>
# Create project # Create project
./scripts/gantt.sh project create "Project Name" "Description" "#color" ./scripts/gantt.sh project create "Project Name" "Description" "#color"
@ -89,6 +92,9 @@ A unified CLI that covers all API operations.
# List all sprints # List all sprints
./scripts/gantt.sh sprint list ./scripts/gantt.sh sprint list
# Get specific sprint
./scripts/gantt.sh sprint get <sprint-id>
# Create sprint # Create sprint
./scripts/gantt.sh sprint create "Sprint 2" <project-id> "2026-02-23" "2026-03-01" "Sprint goal" ./scripts/gantt.sh sprint create "Sprint 2" <project-id> "2026-02-23" "2026-03-01" "Sprint goal"
@ -218,10 +224,12 @@ Displays text files in terminal, saves binary files to `/tmp/`.
| Add comment | ✅ | ✅ | ❌ | | Add comment | ✅ | ✅ | ❌ |
| Attach file | ✅ | ✅ | ✅ | | Attach file | ✅ | ✅ | ✅ |
| List projects | ✅ | ✅ | ❌ | | List projects | ✅ | ✅ | ❌ |
| Get project | ✅ | ✅ | ❌ |
| Create project | ✅ | ✅ | ❌ | | Create project | ✅ | ✅ | ❌ |
| Update project | ✅ | ✅ | ❌ | | Update project | ✅ | ✅ | ❌ |
| Delete project | ✅ | ✅ | ❌ | | Delete project | ✅ | ✅ | ❌ |
| List sprints | ✅ | ✅ | ❌ | | List sprints | ✅ | ✅ | ❌ |
| Get sprint | ✅ | ✅ | ❌ |
| Create sprint | ✅ | ✅ | ❌ | | Create sprint | ✅ | ✅ | ❌ |
| Update sprint | ✅ | ✅ | ❌ | | Update sprint | ✅ | ✅ | ❌ |
| Delete sprint | ✅ | ✅ | ❌ | | Delete sprint | ✅ | ✅ | ❌ |