diff --git a/.claude/skills/bug-tracker/scripts/tracker.py b/.claude/skills/bug-tracker/scripts/tracker.py index 07130a7d..540a2d7d 100644 --- a/.claude/skills/bug-tracker/scripts/tracker.py +++ b/.claude/skills/bug-tracker/scripts/tracker.py @@ -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")