Skip to content

Commit 9ee0622

Browse files
author
Your Name
committed
cli-28: added no completion notifiction for some very commone and quick commands
1 parent 5949d94 commit 9ee0622

8 files changed

Lines changed: 8 additions & 0 deletions

File tree

cecli/commands/clear.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
class ClearCommand(BaseCommand):
99
NORM_NAME = "clear"
1010
DESCRIPTION = "Clear the chat history"
11+
show_completion_notification = False
1112

1213
@classmethod
1314
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/exclude_skill.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
class ExcludeSkillCommand(BaseCommand):
88
NORM_NAME = "exclude-skill"
99
DESCRIPTION = "Exclude a skill by name (agent mode only)"
10+
show_completion_notification = False
1011

1112
@classmethod
1213
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/ls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
class LsCommand(BaseCommand):
88
NORM_NAME = "ls"
99
DESCRIPTION = "List all known files and indicate which are included in the chat session"
10+
show_completion_notification = False
1011

1112
@classmethod
1213
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/read_only_stub.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class ReadOnlyStubCommand(BaseCommand):
1919
DESCRIPTION = (
2020
"Add files to the chat as read-only stubs, or turn added files to read-only (stubs)"
2121
)
22+
show_completion_notification = False
2223

2324
@classmethod
2425
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/reset.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
class ResetCommand(BaseCommand):
1010
NORM_NAME = "reset"
1111
DESCRIPTION = "Drop all files and clear the chat history"
12+
show_completion_notification = False
1213

1314
@classmethod
1415
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/save.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
class SaveCommand(BaseCommand):
99
NORM_NAME = "save"
1010
DESCRIPTION = "Save commands to a file that can reconstruct the current chat session's files"
11+
show_completion_notification = False
1112

1213
@classmethod
1314
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/tokens.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
class TokensCommand(BaseCommand):
99
NORM_NAME = "tokens"
1010
DESCRIPTION = "Report on the number of tokens used by the current chat context"
11+
show_completion_notification = False
1112

1213
@classmethod
1314
async def execute(cls, io, coder, args, **kwargs):

cecli/commands/undo.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
class UndoCommand(BaseCommand):
1010
NORM_NAME = "undo"
1111
DESCRIPTION = "Undo the last git commit if it was done by cecli"
12+
show_completion_notification = False
1213

1314
@classmethod
1415
async def execute(cls, io, coder, args, **kwargs):

0 commit comments

Comments
 (0)