File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,15 @@ import (
1717var listSkillsFn = defaultListSkills
1818
1919func newListCmd () * cobra.Command {
20+ // --skills is accepted for forward-compat (future component types)
21+ // but currently skills is the only component, so the output is the same.
2022 var showSkills bool
2123
2224 cmd := & cobra.Command {
2325 Use : "list" ,
2426 Short : "List installed AI tools components" ,
2527 RunE : func (cmd * cobra.Command , args []string ) error {
26- // Currently skills is the only component, so always show detailed view.
28+ _ = showSkills
2729 return listSkillsFn (cmd )
2830 },
2931 }
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ func newVersionCmd() *cobra.Command {
1818 Use : "version" ,
1919 Short : "Show installed AI skills version" ,
2020 RunE : func (cmd * cobra.Command , args []string ) error {
21- // showSkills is accepted for forward-compat but currently
22- // skills is the only component, so the output is the same.
21+ // --skills is accepted for forward-compat (future component types)
22+ // but currently skills is the only component, so the output is the same.
2323 _ = showSkills
2424 ctx := cmd .Context ()
2525
You can’t perform that action at this time.
0 commit comments