@@ -95,7 +95,7 @@ impl ContextSubcommand {
9595 session. stderr,
9696 style:: SetAttribute ( Attribute :: Bold ) ,
9797 StyledText :: emphasis_fg( ) ,
98- style:: Print ( format!( "👤 Agent ({}):\n " , context_manager. current_profile) ) ,
98+ style:: Print ( format!( "Agent ({}):\n " , context_manager. current_profile) ) ,
9999 StyledText :: reset_attributes( ) ,
100100 ) ?;
101101
@@ -108,7 +108,10 @@ impl ContextSubcommand {
108108 ) ?;
109109 } else {
110110 for path in & agent_owned_list {
111- execute ! ( session. stderr, style:: Print ( format!( " {} " , path. get_path_as_str( ) ) ) ) ?;
111+ execute ! (
112+ session. stderr,
113+ style:: Print ( format!( " - {} " , path. get_path_as_str( ) ) )
114+ ) ?;
112115 if let Ok ( context_files) = context_manager
113116 . get_context_files_by_path ( os, path. get_path_as_str ( ) )
114117 . await
@@ -135,7 +138,7 @@ impl ContextSubcommand {
135138 session. stderr,
136139 style:: SetAttribute ( Attribute :: Bold ) ,
137140 StyledText :: emphasis_fg( ) ,
138- style:: Print ( "💬 Session (temporary):\n " ) ,
141+ style:: Print ( "Session (temporary):\n " ) ,
139142 StyledText :: reset_attributes( ) ,
140143 ) ?;
141144
@@ -148,7 +151,10 @@ impl ContextSubcommand {
148151 ) ?;
149152 } else {
150153 for path in & session_owned_list {
151- execute ! ( session. stderr, style:: Print ( format!( " {} " , path. get_path_as_str( ) ) ) ) ?;
154+ execute ! (
155+ session. stderr,
156+ style:: Print ( format!( " - {} " , path. get_path_as_str( ) ) )
157+ ) ?;
152158 if let Ok ( context_files) = context_manager
153159 . get_context_files_by_path ( os, path. get_path_as_str ( ) )
154160 . await
@@ -197,12 +203,11 @@ impl ContextSubcommand {
197203 StyledText :: reset_attributes( )
198204 ) ?;
199205
200- for ( filename, content, is_temporary ) in & profile_context_files {
206+ for ( filename, content, _is_temporary ) in & profile_context_files {
201207 let est_tokens = TokenCounter :: count_tokens ( content) ;
202- let icon = if * is_temporary { "💬" } else { "👤" } ;
203208 execute ! (
204209 session. stderr,
205- style:: Print ( format!( "{icon} {filename} " ) ) ,
210+ style:: Print ( format!( "- {filename} " ) ) ,
206211 StyledText :: secondary_fg( ) ,
207212 style:: Print ( format!( "(~{est_tokens} tkns)\n " ) ) ,
208213 StyledText :: reset( ) ,
0 commit comments