sync: auto-sync from HOWARD-HOME at 2026-07-18 14:24:05

Author: Howard Enos
Machine: HOWARD-HOME
Timestamp: 2026-07-18 14:24:05
This commit is contained in:
2026-07-18 14:24:39 -07:00
parent 7e6b385286
commit 8ddde6a946

View File

@@ -339,7 +339,7 @@ def main():
p_list = sub.add_parser("list", help="List issues")
p_list.add_argument("--repo", choices=TRACKED_REPOS)
p_list.add_argument("--type", choices=["bug", "feature", "skill", "project", "security", "client-project"])
p_list.add_argument("--type", choices=["bug", "feature", "skill", "project", "security", "client-project", "thought"])
p_list.add_argument("--state", choices=["open", "closed", "all"], default="open")
p_list.add_argument("--client")
p_list.add_argument("--json", action="store_true")
@@ -349,7 +349,7 @@ def main():
p_create.add_argument("--title", required=True)
p_create.add_argument("--body", default="")
p_create.add_argument("--type", required=True,
choices=["bug", "feature", "skill", "project", "security", "client-project"])
choices=["bug", "feature", "skill", "project", "security", "client-project", "thought"])
p_create.add_argument("--priority", required=True, choices=PRIORITY_LABELS)
p_create.add_argument("--component")
p_create.add_argument("--client")