From 52915a4b95ed52d6e72aa36c6ab1b3467ebaa9a7 Mon Sep 17 00:00:00 2001 From: Tim Walsh Date: Fri, 28 Aug 2026 01:09:27 -0700 Subject: [PATCH] fix(config): --config help advertised a filename the code never writes The flag help said $HOME/.config/cu/config.yml, but ConfigType is "yaml", so Save writes config.yaml. Cosmetic, but it is the documented path for a file users are told to edit by hand. Regenerating the CLI docs touches every command page, since --config is a global flag rendered into each one. Co-Authored-By: Claude Opus 5 (1M context) Claude-Session: https://claude.ai/code/session_014aqbmccWm1tqttmBUCR5rv ClickUp: 86dxbeqyt --- docs/site/commands/cu.md | 4 ++-- docs/site/commands/cu_api.md | 4 ++-- docs/site/commands/cu_auth.md | 4 ++-- docs/site/commands/cu_auth_login.md | 4 ++-- docs/site/commands/cu_auth_logout.md | 4 ++-- docs/site/commands/cu_auth_status.md | 4 ++-- docs/site/commands/cu_bulk.md | 4 ++-- docs/site/commands/cu_bulk_close.md | 4 ++-- docs/site/commands/cu_bulk_delete.md | 4 ++-- docs/site/commands/cu_bulk_update.md | 4 ++-- docs/site/commands/cu_cache.md | 4 ++-- docs/site/commands/cu_cache_clean.md | 4 ++-- docs/site/commands/cu_cache_clear.md | 4 ++-- docs/site/commands/cu_cache_info.md | 4 ++-- docs/site/commands/cu_comment.md | 4 ++-- docs/site/commands/cu_comment_delete.md | 4 ++-- docs/site/commands/cu_comment_list.md | 4 ++-- docs/site/commands/cu_completion.md | 4 ++-- docs/site/commands/cu_config.md | 4 ++-- docs/site/commands/cu_config_get.md | 4 ++-- docs/site/commands/cu_config_init.md | 4 ++-- docs/site/commands/cu_config_list.md | 4 ++-- docs/site/commands/cu_config_set.md | 4 ++-- docs/site/commands/cu_config_show.md | 4 ++-- docs/site/commands/cu_export.md | 4 ++-- docs/site/commands/cu_export_tasks.md | 4 ++-- docs/site/commands/cu_field.md | 4 ++-- docs/site/commands/cu_field_clear.md | 4 ++-- docs/site/commands/cu_field_get.md | 4 ++-- docs/site/commands/cu_field_list.md | 4 ++-- docs/site/commands/cu_field_set.md | 4 ++-- docs/site/commands/cu_interactive.md | 4 ++-- docs/site/commands/cu_list.md | 4 ++-- docs/site/commands/cu_list_default.md | 4 ++-- docs/site/commands/cu_list_list.md | 4 ++-- docs/site/commands/cu_me.md | 4 ++-- docs/site/commands/cu_space.md | 4 ++-- docs/site/commands/cu_space_list.md | 4 ++-- docs/site/commands/cu_task.md | 4 ++-- docs/site/commands/cu_task_close.md | 4 ++-- docs/site/commands/cu_task_create.md | 4 ++-- docs/site/commands/cu_task_interactive.md | 4 ++-- docs/site/commands/cu_task_list.md | 4 ++-- docs/site/commands/cu_task_reopen.md | 4 ++-- docs/site/commands/cu_task_search.md | 4 ++-- docs/site/commands/cu_task_update.md | 4 ++-- docs/site/commands/cu_task_view.md | 4 ++-- docs/site/commands/cu_user.md | 4 ++-- docs/site/commands/cu_user_list.md | 4 ++-- docs/site/commands/cu_version.md | 4 ++-- internal/cmd/root.go | 2 +- 51 files changed, 101 insertions(+), 101 deletions(-) diff --git a/docs/site/commands/cu.md b/docs/site/commands/cu.md index f619108..5d22098 100644 --- a/docs/site/commands/cu.md +++ b/docs/site/commands/cu.md @@ -13,7 +13,7 @@ enabling efficient task management and seamless integration with development wor ### Options ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -h, --help help for cu -o, --output string output format (table|json|yaml|csv) (default "table") @@ -38,4 +38,4 @@ enabling efficient task management and seamless integration with development wor * [cu user](cu_user.md) - Manage users * [cu version](cu_version.md) - Show cu version information -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_api.md b/docs/site/commands/cu_api.md index db6d070..8fa5738 100644 --- a/docs/site/commands/cu_api.md +++ b/docs/site/commands/cu_api.md @@ -54,7 +54,7 @@ cu api [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -63,4 +63,4 @@ cu api [flags] * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_auth.md b/docs/site/commands/cu_auth.md index 823dfbf..aae2611 100644 --- a/docs/site/commands/cu_auth.md +++ b/docs/site/commands/cu_auth.md @@ -15,7 +15,7 @@ Authenticate cu with the ClickUp API using a personal API token. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -27,4 +27,4 @@ Authenticate cu with the ClickUp API using a personal API token. * [cu auth logout](cu_auth_logout.md) - Log out from ClickUp * [cu auth status](cu_auth_status.md) - Show authentication status -###### Auto generated by spf13/cobra on 14-Jul-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_auth_login.md b/docs/site/commands/cu_auth_login.md index f36b074..8d3e4e3 100644 --- a/docs/site/commands/cu_auth_login.md +++ b/docs/site/commands/cu_auth_login.md @@ -21,7 +21,7 @@ cu auth login [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -30,4 +30,4 @@ cu auth login [flags] * [cu auth](cu_auth.md) - Manage authentication with ClickUp -###### Auto generated by spf13/cobra on 14-Jul-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_auth_logout.md b/docs/site/commands/cu_auth_logout.md index 7856c30..abeaf56 100644 --- a/docs/site/commands/cu_auth_logout.md +++ b/docs/site/commands/cu_auth_logout.md @@ -20,7 +20,7 @@ cu auth logout [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -29,4 +29,4 @@ cu auth logout [flags] * [cu auth](cu_auth.md) - Manage authentication with ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_auth_status.md b/docs/site/commands/cu_auth_status.md index e2d51dc..ec4bb77 100644 --- a/docs/site/commands/cu_auth_status.md +++ b/docs/site/commands/cu_auth_status.md @@ -19,7 +19,7 @@ cu auth status [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu auth status [flags] * [cu auth](cu_auth.md) - Manage authentication with ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_bulk.md b/docs/site/commands/cu_bulk.md index 8d7063b..70f22f4 100644 --- a/docs/site/commands/cu_bulk.md +++ b/docs/site/commands/cu_bulk.md @@ -15,7 +15,7 @@ Perform bulk operations on multiple tasks at once. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -27,4 +27,4 @@ Perform bulk operations on multiple tasks at once. * [cu bulk delete](cu_bulk_delete.md) - Delete multiple tasks * [cu bulk update](cu_bulk_update.md) - Update multiple tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_bulk_close.md b/docs/site/commands/cu_bulk_close.md index efa094b..3d68b00 100644 --- a/docs/site/commands/cu_bulk_close.md +++ b/docs/site/commands/cu_bulk_close.md @@ -28,7 +28,7 @@ cu bulk close [task-ids...] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -37,4 +37,4 @@ cu bulk close [task-ids...] [flags] * [cu bulk](cu_bulk.md) - Perform bulk operations on tasks -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_bulk_delete.md b/docs/site/commands/cu_bulk_delete.md index 31c3686..4d7087e 100644 --- a/docs/site/commands/cu_bulk_delete.md +++ b/docs/site/commands/cu_bulk_delete.md @@ -27,7 +27,7 @@ cu bulk delete [task-ids...] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -36,4 +36,4 @@ cu bulk delete [task-ids...] [flags] * [cu bulk](cu_bulk.md) - Perform bulk operations on tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_bulk_update.md b/docs/site/commands/cu_bulk_update.md index 025f8ee..f7b8a6c 100644 --- a/docs/site/commands/cu_bulk_update.md +++ b/docs/site/commands/cu_bulk_update.md @@ -36,7 +36,7 @@ cu bulk update [task-ids...] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -45,4 +45,4 @@ cu bulk update [task-ids...] [flags] * [cu bulk](cu_bulk.md) - Perform bulk operations on tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_cache.md b/docs/site/commands/cu_cache.md index 0421c56..018b912 100644 --- a/docs/site/commands/cu_cache.md +++ b/docs/site/commands/cu_cache.md @@ -15,7 +15,7 @@ Manage the local cache used to improve performance. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -27,4 +27,4 @@ Manage the local cache used to improve performance. * [cu cache clear](cu_cache_clear.md) - Clear all cache entries * [cu cache info](cu_cache_info.md) - Show cache information and statistics -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_cache_clean.md b/docs/site/commands/cu_cache_clean.md index 4723737..fbcf5dc 100644 --- a/docs/site/commands/cu_cache_clean.md +++ b/docs/site/commands/cu_cache_clean.md @@ -19,7 +19,7 @@ cu cache clean [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu cache clean [flags] * [cu cache](cu_cache.md) - Manage local cache -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_cache_clear.md b/docs/site/commands/cu_cache_clear.md index 696a8ca..2b12486 100644 --- a/docs/site/commands/cu_cache_clear.md +++ b/docs/site/commands/cu_cache_clear.md @@ -19,7 +19,7 @@ cu cache clear [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu cache clear [flags] * [cu cache](cu_cache.md) - Manage local cache -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_cache_info.md b/docs/site/commands/cu_cache_info.md index 6d117f6..3aba8bc 100644 --- a/docs/site/commands/cu_cache_info.md +++ b/docs/site/commands/cu_cache_info.md @@ -19,7 +19,7 @@ cu cache info [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu cache info [flags] * [cu cache](cu_cache.md) - Manage local cache -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_comment.md b/docs/site/commands/cu_comment.md index 095c59a..9e6acfd 100644 --- a/docs/site/commands/cu_comment.md +++ b/docs/site/commands/cu_comment.md @@ -26,7 +26,7 @@ cu comment [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -37,4 +37,4 @@ cu comment [flags] * [cu comment delete](cu_comment_delete.md) - Delete a comment * [cu comment list](cu_comment_list.md) - List all comments on a task -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_comment_delete.md b/docs/site/commands/cu_comment_delete.md index 7402b95..283cbc1 100644 --- a/docs/site/commands/cu_comment_delete.md +++ b/docs/site/commands/cu_comment_delete.md @@ -16,7 +16,7 @@ cu comment delete [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -25,4 +25,4 @@ cu comment delete [flags] * [cu comment](cu_comment.md) - Manage task comments -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_comment_list.md b/docs/site/commands/cu_comment_list.md index c97a119..61ae767 100644 --- a/docs/site/commands/cu_comment_list.md +++ b/docs/site/commands/cu_comment_list.md @@ -15,7 +15,7 @@ cu comment list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -24,4 +24,4 @@ cu comment list [flags] * [cu comment](cu_comment.md) - Manage task comments -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_completion.md b/docs/site/commands/cu_completion.md index f97bd2d..e552506 100644 --- a/docs/site/commands/cu_completion.md +++ b/docs/site/commands/cu_completion.md @@ -50,7 +50,7 @@ cu completion [bash|zsh|fish|powershell] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -59,4 +59,4 @@ cu completion [bash|zsh|fish|powershell] * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_config.md b/docs/site/commands/cu_config.md index d9c9aca..c605bbf 100644 --- a/docs/site/commands/cu_config.md +++ b/docs/site/commands/cu_config.md @@ -15,7 +15,7 @@ View and modify cu configuration settings. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -29,4 +29,4 @@ View and modify cu configuration settings. * [cu config set](cu_config_set.md) - Set a configuration value * [cu config show](cu_config_show.md) - Show current configuration -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_config_get.md b/docs/site/commands/cu_config_get.md index 4a180ac..56a02be 100644 --- a/docs/site/commands/cu_config_get.md +++ b/docs/site/commands/cu_config_get.md @@ -19,7 +19,7 @@ cu config get [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu config get [flags] * [cu config](cu_config.md) - Manage cu configuration -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_config_init.md b/docs/site/commands/cu_config_init.md index d00f8df..397af64 100644 --- a/docs/site/commands/cu_config_init.md +++ b/docs/site/commands/cu_config_init.md @@ -19,7 +19,7 @@ cu config init [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu config init [flags] * [cu config](cu_config.md) - Manage cu configuration -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_config_list.md b/docs/site/commands/cu_config_list.md index 157234d..9cf86e8 100644 --- a/docs/site/commands/cu_config_list.md +++ b/docs/site/commands/cu_config_list.md @@ -19,7 +19,7 @@ cu config list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu config list [flags] * [cu config](cu_config.md) - Manage cu configuration -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_config_set.md b/docs/site/commands/cu_config_set.md index d10118a..8e9c38f 100644 --- a/docs/site/commands/cu_config_set.md +++ b/docs/site/commands/cu_config_set.md @@ -19,7 +19,7 @@ cu config set [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu config set [flags] * [cu config](cu_config.md) - Manage cu configuration -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_config_show.md b/docs/site/commands/cu_config_show.md index 11ff2b1..10ed7ad 100644 --- a/docs/site/commands/cu_config_show.md +++ b/docs/site/commands/cu_config_show.md @@ -19,7 +19,7 @@ cu config show [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu config show [flags] * [cu config](cu_config.md) - Manage cu configuration -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_export.md b/docs/site/commands/cu_export.md index 2b8394d..b9c44a2 100644 --- a/docs/site/commands/cu_export.md +++ b/docs/site/commands/cu_export.md @@ -15,7 +15,7 @@ Export ClickUp data to CSV, JSON, or Markdown formats. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -25,4 +25,4 @@ Export ClickUp data to CSV, JSON, or Markdown formats. * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp * [cu export tasks](cu_export_tasks.md) - Export tasks to file -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_export_tasks.md b/docs/site/commands/cu_export_tasks.md index e8462a7..00613af 100644 --- a/docs/site/commands/cu_export_tasks.md +++ b/docs/site/commands/cu_export_tasks.md @@ -36,7 +36,7 @@ cu export tasks [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode ``` @@ -44,4 +44,4 @@ cu export tasks [flags] * [cu export](cu_export.md) - Export data to various formats -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_field.md b/docs/site/commands/cu_field.md index b0da9cd..544f8a2 100644 --- a/docs/site/commands/cu_field.md +++ b/docs/site/commands/cu_field.md @@ -19,7 +19,7 @@ for dropdowns and labels — so names can be used on the command line. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -32,4 +32,4 @@ for dropdowns and labels — so names can be used on the command line. * [cu field list](cu_field_list.md) - List custom fields available on a list * [cu field set](cu_field_set.md) - Set a custom field value on a task -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_field_clear.md b/docs/site/commands/cu_field_clear.md index cad3f52..905b10f 100644 --- a/docs/site/commands/cu_field_clear.md +++ b/docs/site/commands/cu_field_clear.md @@ -15,7 +15,7 @@ cu field clear [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -24,4 +24,4 @@ cu field clear [flags] * [cu field](cu_field.md) - Manage custom field values -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_field_get.md b/docs/site/commands/cu_field_get.md index 7942f8a..be002ad 100644 --- a/docs/site/commands/cu_field_get.md +++ b/docs/site/commands/cu_field_get.md @@ -15,7 +15,7 @@ cu field get [field] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -24,4 +24,4 @@ cu field get [field] [flags] * [cu field](cu_field.md) - Manage custom field values -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_field_list.md b/docs/site/commands/cu_field_list.md index d6e685d..d3fc041 100644 --- a/docs/site/commands/cu_field_list.md +++ b/docs/site/commands/cu_field_list.md @@ -16,7 +16,7 @@ cu field list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -25,4 +25,4 @@ cu field list [flags] * [cu field](cu_field.md) - Manage custom field values -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_field_set.md b/docs/site/commands/cu_field_set.md index 57c7278..5684869 100644 --- a/docs/site/commands/cu_field_set.md +++ b/docs/site/commands/cu_field_set.md @@ -27,7 +27,7 @@ cu field set [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -36,4 +36,4 @@ cu field set [flags] * [cu field](cu_field.md) - Manage custom field values -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_interactive.md b/docs/site/commands/cu_interactive.md index 299f62b..f063354 100644 --- a/docs/site/commands/cu_interactive.md +++ b/docs/site/commands/cu_interactive.md @@ -19,7 +19,7 @@ cu interactive [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu interactive [flags] * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_list.md b/docs/site/commands/cu_list.md index 5dc566a..e99cf3d 100644 --- a/docs/site/commands/cu_list.md +++ b/docs/site/commands/cu_list.md @@ -15,7 +15,7 @@ View and manage ClickUp lists. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -26,4 +26,4 @@ View and manage ClickUp lists. * [cu list default](cu_list_default.md) - Set default list * [cu list list](cu_list_list.md) - List all lists -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_list_default.md b/docs/site/commands/cu_list_default.md index 1bddc95..bafcfd6 100644 --- a/docs/site/commands/cu_list_default.md +++ b/docs/site/commands/cu_list_default.md @@ -20,7 +20,7 @@ cu list default [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -29,4 +29,4 @@ cu list default [flags] * [cu list](cu_list.md) - Manage lists -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_list_list.md b/docs/site/commands/cu_list_list.md index 8f1af2b..e7a0401 100644 --- a/docs/site/commands/cu_list_list.md +++ b/docs/site/commands/cu_list_list.md @@ -22,7 +22,7 @@ cu list list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -31,4 +31,4 @@ cu list list [flags] * [cu list](cu_list.md) - Manage lists -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_me.md b/docs/site/commands/cu_me.md index 1ef221a..1f219fd 100644 --- a/docs/site/commands/cu_me.md +++ b/docs/site/commands/cu_me.md @@ -20,7 +20,7 @@ cu me [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -29,4 +29,4 @@ cu me [flags] * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_space.md b/docs/site/commands/cu_space.md index 8b80c7a..1d5213a 100644 --- a/docs/site/commands/cu_space.md +++ b/docs/site/commands/cu_space.md @@ -15,7 +15,7 @@ View and manage ClickUp spaces within your workspace. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -25,4 +25,4 @@ View and manage ClickUp spaces within your workspace. * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp * [cu space list](cu_space_list.md) - List all spaces -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_space_list.md b/docs/site/commands/cu_space_list.md index 4f01162..efc8c8c 100644 --- a/docs/site/commands/cu_space_list.md +++ b/docs/site/commands/cu_space_list.md @@ -19,7 +19,7 @@ cu space list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu space list [flags] * [cu space](cu_space.md) - Manage spaces -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task.md b/docs/site/commands/cu_task.md index 502979e..a0a655b 100644 --- a/docs/site/commands/cu_task.md +++ b/docs/site/commands/cu_task.md @@ -15,7 +15,7 @@ Create, view, update, and manage ClickUp tasks. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -32,4 +32,4 @@ Create, view, update, and manage ClickUp tasks. * [cu task update](cu_task_update.md) - Update a task * [cu task view](cu_task_view.md) - View task details -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_close.md b/docs/site/commands/cu_task_close.md index 611bb9c..a475785 100644 --- a/docs/site/commands/cu_task_close.md +++ b/docs/site/commands/cu_task_close.md @@ -20,7 +20,7 @@ cu task close [task-id] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -29,4 +29,4 @@ cu task close [task-id] [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_create.md b/docs/site/commands/cu_task_create.md index 423a755..dcf07db 100644 --- a/docs/site/commands/cu_task_create.md +++ b/docs/site/commands/cu_task_create.md @@ -27,7 +27,7 @@ cu task create [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -36,4 +36,4 @@ cu task create [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_interactive.md b/docs/site/commands/cu_task_interactive.md index 167cc44..715d449 100644 --- a/docs/site/commands/cu_task_interactive.md +++ b/docs/site/commands/cu_task_interactive.md @@ -19,7 +19,7 @@ cu task interactive [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu task interactive [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_list.md b/docs/site/commands/cu_task_list.md index fda3365..4540feb 100644 --- a/docs/site/commands/cu_task_list.md +++ b/docs/site/commands/cu_task_list.md @@ -31,7 +31,7 @@ cu task list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -40,4 +40,4 @@ cu task list [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_reopen.md b/docs/site/commands/cu_task_reopen.md index 4b8df44..cca07ea 100644 --- a/docs/site/commands/cu_task_reopen.md +++ b/docs/site/commands/cu_task_reopen.md @@ -20,7 +20,7 @@ cu task reopen [task-id] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -29,4 +29,4 @@ cu task reopen [task-id] [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 22-Aug-2026 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_search.md b/docs/site/commands/cu_task_search.md index f5115ba..047dc31 100644 --- a/docs/site/commands/cu_task_search.md +++ b/docs/site/commands/cu_task_search.md @@ -23,7 +23,7 @@ cu task search [query] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -32,4 +32,4 @@ cu task search [query] [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_update.md b/docs/site/commands/cu_task_update.md index d80571b..f145e12 100644 --- a/docs/site/commands/cu_task_update.md +++ b/docs/site/commands/cu_task_update.md @@ -27,7 +27,7 @@ cu task update [task-id] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -36,4 +36,4 @@ cu task update [task-id] [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_task_view.md b/docs/site/commands/cu_task_view.md index 7f4cf92..3cce05d 100644 --- a/docs/site/commands/cu_task_view.md +++ b/docs/site/commands/cu_task_view.md @@ -19,7 +19,7 @@ cu task view [task-id] [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu task view [task-id] [flags] * [cu task](cu_task.md) - Manage tasks -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_user.md b/docs/site/commands/cu_user.md index 3d55a0e..69c27f3 100644 --- a/docs/site/commands/cu_user.md +++ b/docs/site/commands/cu_user.md @@ -15,7 +15,7 @@ View and manage workspace users. ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -25,4 +25,4 @@ View and manage workspace users. * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp * [cu user list](cu_user_list.md) - List workspace users -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_user_list.md b/docs/site/commands/cu_user_list.md index 11fcec9..a156a57 100644 --- a/docs/site/commands/cu_user_list.md +++ b/docs/site/commands/cu_user_list.md @@ -19,7 +19,7 @@ cu user list [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu user list [flags] * [cu user](cu_user.md) - Manage users -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/docs/site/commands/cu_version.md b/docs/site/commands/cu_version.md index f906221..7b13573 100644 --- a/docs/site/commands/cu_version.md +++ b/docs/site/commands/cu_version.md @@ -19,7 +19,7 @@ cu version [flags] ### Options inherited from parent commands ``` - --config string config file (default is $HOME/.config/cu/config.yml) + --config string config file (default is $HOME/.config/cu/config.yaml) --debug enable debug mode -o, --output string output format (table|json|yaml|csv) (default "table") ``` @@ -28,4 +28,4 @@ cu version [flags] * [cu](cu.md) - A GitHub CLI-inspired command-line interface for ClickUp -###### Auto generated by spf13/cobra on 29-Jun-2025 +###### Auto generated by spf13/cobra on 28-Aug-2026 diff --git a/internal/cmd/root.go b/internal/cmd/root.go index 35c27c7..e1738df 100644 --- a/internal/cmd/root.go +++ b/internal/cmd/root.go @@ -45,7 +45,7 @@ func Execute() error { func init() { // Global flags - rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.config/cu/config.yml)") + rootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is $HOME/.config/cu/config.yaml)") rootCmd.PersistentFlags().BoolVar(&debug, "debug", false, "enable debug mode") rootCmd.PersistentFlags().StringVarP(&outputFormat, "output", "o", "table", "output format (table|json|yaml|csv)")