@@ -132,7 +132,7 @@ impl ContextSubcommand {
132132 session. stderr,
133133 style:: SetAttribute ( Attribute :: Bold ) ,
134134 StyledText :: emphasis_fg( ) ,
135- style:: Print ( format!( "👤 Agent ({}):\n " , context_manager. current_profile) ) ,
135+ style:: Print ( format!( "Agent ({}):\n " , context_manager. current_profile) ) ,
136136 StyledText :: reset_attributes( ) ,
137137 ) ?;
138138
@@ -145,7 +145,10 @@ impl ContextSubcommand {
145145 ) ?;
146146 } else {
147147 for path in & agent_owned_list {
148- execute ! ( session. stderr, style:: Print ( format!( " {} " , path. get_path_as_str( ) ) ) ) ?;
148+ execute ! (
149+ session. stderr,
150+ style:: Print ( format!( " - {} " , path. get_path_as_str( ) ) )
151+ ) ?;
149152 if let Ok ( context_files) = context_manager
150153 . get_context_files_by_path ( os, path. get_path_as_str ( ) )
151154 . await
@@ -172,7 +175,7 @@ impl ContextSubcommand {
172175 session. stderr,
173176 style:: SetAttribute ( Attribute :: Bold ) ,
174177 StyledText :: emphasis_fg( ) ,
175- style:: Print ( "💬 Session (temporary):\n " ) ,
178+ style:: Print ( "Session (temporary):\n " ) ,
176179 StyledText :: reset_attributes( ) ,
177180 ) ?;
178181
@@ -185,7 +188,10 @@ impl ContextSubcommand {
185188 ) ?;
186189 } else {
187190 for path in & session_owned_list {
188- execute ! ( session. stderr, style:: Print ( format!( " {} " , path. get_path_as_str( ) ) ) ) ?;
191+ execute ! (
192+ session. stderr,
193+ style:: Print ( format!( " - {} " , path. get_path_as_str( ) ) )
194+ ) ?;
189195 if let Ok ( context_files) = context_manager
190196 . get_context_files_by_path ( os, path. get_path_as_str ( ) )
191197 . await
@@ -234,12 +240,11 @@ impl ContextSubcommand {
234240 StyledText :: reset_attributes( )
235241 ) ?;
236242
237- for ( filename, content, is_temporary ) in & profile_context_files {
243+ for ( filename, content, _is_temporary ) in & profile_context_files {
238244 let est_tokens = TokenCounter :: count_tokens ( content) ;
239- let icon = if * is_temporary { "💬" } else { "👤" } ;
240245 execute ! (
241246 session. stderr,
242- style:: Print ( format!( "{icon} {filename} " ) ) ,
247+ style:: Print ( format!( "- {filename} " ) ) ,
243248 StyledText :: secondary_fg( ) ,
244249 style:: Print ( format!( "(~{est_tokens} tkns)\n " ) ) ,
245250 StyledText :: reset( ) ,
0 commit comments