glaip-sdk 0.0.20__py3-none-any.whl → 0.6.5b6__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (157) hide show
  1. glaip_sdk/__init__.py +5 -2
  2. glaip_sdk/_version.py +10 -3
  3. glaip_sdk/agents/__init__.py +27 -0
  4. glaip_sdk/agents/base.py +1126 -0
  5. glaip_sdk/branding.py +15 -6
  6. glaip_sdk/cli/account_store.py +540 -0
  7. glaip_sdk/cli/agent_config.py +2 -6
  8. glaip_sdk/cli/auth.py +265 -45
  9. glaip_sdk/cli/commands/__init__.py +2 -2
  10. glaip_sdk/cli/commands/accounts.py +746 -0
  11. glaip_sdk/cli/commands/agents.py +270 -173
  12. glaip_sdk/cli/commands/common_config.py +101 -0
  13. glaip_sdk/cli/commands/configure.py +735 -143
  14. glaip_sdk/cli/commands/mcps.py +265 -134
  15. glaip_sdk/cli/commands/models.py +13 -9
  16. glaip_sdk/cli/commands/tools.py +67 -88
  17. glaip_sdk/cli/commands/transcripts.py +755 -0
  18. glaip_sdk/cli/commands/update.py +3 -8
  19. glaip_sdk/cli/config.py +49 -7
  20. glaip_sdk/cli/constants.py +38 -0
  21. glaip_sdk/cli/context.py +8 -0
  22. glaip_sdk/cli/core/__init__.py +79 -0
  23. glaip_sdk/cli/core/context.py +124 -0
  24. glaip_sdk/cli/core/output.py +846 -0
  25. glaip_sdk/cli/core/prompting.py +649 -0
  26. glaip_sdk/cli/core/rendering.py +187 -0
  27. glaip_sdk/cli/display.py +45 -32
  28. glaip_sdk/cli/hints.py +57 -0
  29. glaip_sdk/cli/io.py +14 -17
  30. glaip_sdk/cli/main.py +232 -143
  31. glaip_sdk/cli/masking.py +21 -33
  32. glaip_sdk/cli/mcp_validators.py +5 -15
  33. glaip_sdk/cli/pager.py +12 -19
  34. glaip_sdk/cli/parsers/__init__.py +1 -3
  35. glaip_sdk/cli/parsers/json_input.py +11 -22
  36. glaip_sdk/cli/resolution.py +3 -9
  37. glaip_sdk/cli/rich_helpers.py +1 -3
  38. glaip_sdk/cli/slash/__init__.py +0 -9
  39. glaip_sdk/cli/slash/accounts_controller.py +500 -0
  40. glaip_sdk/cli/slash/accounts_shared.py +75 -0
  41. glaip_sdk/cli/slash/agent_session.py +61 -28
  42. glaip_sdk/cli/slash/prompt.py +13 -10
  43. glaip_sdk/cli/slash/remote_runs_controller.py +566 -0
  44. glaip_sdk/cli/slash/session.py +772 -222
  45. glaip_sdk/cli/slash/tui/__init__.py +9 -0
  46. glaip_sdk/cli/slash/tui/accounts.tcss +86 -0
  47. glaip_sdk/cli/slash/tui/accounts_app.py +872 -0
  48. glaip_sdk/cli/slash/tui/background_tasks.py +72 -0
  49. glaip_sdk/cli/slash/tui/loading.py +58 -0
  50. glaip_sdk/cli/slash/tui/remote_runs_app.py +628 -0
  51. glaip_sdk/cli/transcript/__init__.py +12 -52
  52. glaip_sdk/cli/transcript/cache.py +258 -60
  53. glaip_sdk/cli/transcript/capture.py +72 -21
  54. glaip_sdk/cli/transcript/history.py +815 -0
  55. glaip_sdk/cli/transcript/launcher.py +1 -3
  56. glaip_sdk/cli/transcript/viewer.py +77 -329
  57. glaip_sdk/cli/update_notifier.py +177 -24
  58. glaip_sdk/cli/utils.py +242 -1309
  59. glaip_sdk/cli/validators.py +16 -18
  60. glaip_sdk/client/__init__.py +2 -1
  61. glaip_sdk/client/_agent_payloads.py +53 -37
  62. glaip_sdk/client/agent_runs.py +147 -0
  63. glaip_sdk/client/agents.py +320 -92
  64. glaip_sdk/client/base.py +78 -35
  65. glaip_sdk/client/main.py +19 -10
  66. glaip_sdk/client/mcps.py +123 -15
  67. glaip_sdk/client/run_rendering.py +218 -78
  68. glaip_sdk/client/shared.py +21 -0
  69. glaip_sdk/client/tools.py +161 -34
  70. glaip_sdk/client/validators.py +20 -48
  71. glaip_sdk/config/constants.py +11 -0
  72. glaip_sdk/exceptions.py +1 -3
  73. glaip_sdk/icons.py +9 -3
  74. glaip_sdk/mcps/__init__.py +21 -0
  75. glaip_sdk/mcps/base.py +345 -0
  76. glaip_sdk/models/__init__.py +90 -0
  77. glaip_sdk/models/agent.py +47 -0
  78. glaip_sdk/models/agent_runs.py +116 -0
  79. glaip_sdk/models/common.py +42 -0
  80. glaip_sdk/models/mcp.py +33 -0
  81. glaip_sdk/models/tool.py +33 -0
  82. glaip_sdk/payload_schemas/__init__.py +1 -13
  83. glaip_sdk/payload_schemas/agent.py +1 -3
  84. glaip_sdk/registry/__init__.py +55 -0
  85. glaip_sdk/registry/agent.py +164 -0
  86. glaip_sdk/registry/base.py +139 -0
  87. glaip_sdk/registry/mcp.py +253 -0
  88. glaip_sdk/registry/tool.py +231 -0
  89. glaip_sdk/rich_components.py +58 -2
  90. glaip_sdk/runner/__init__.py +59 -0
  91. glaip_sdk/runner/base.py +84 -0
  92. glaip_sdk/runner/deps.py +115 -0
  93. glaip_sdk/runner/langgraph.py +597 -0
  94. glaip_sdk/runner/mcp_adapter/__init__.py +13 -0
  95. glaip_sdk/runner/mcp_adapter/base_mcp_adapter.py +43 -0
  96. glaip_sdk/runner/mcp_adapter/langchain_mcp_adapter.py +158 -0
  97. glaip_sdk/runner/mcp_adapter/mcp_config_builder.py +95 -0
  98. glaip_sdk/runner/tool_adapter/__init__.py +18 -0
  99. glaip_sdk/runner/tool_adapter/base_tool_adapter.py +44 -0
  100. glaip_sdk/runner/tool_adapter/langchain_tool_adapter.py +177 -0
  101. glaip_sdk/tools/__init__.py +22 -0
  102. glaip_sdk/tools/base.py +435 -0
  103. glaip_sdk/utils/__init__.py +58 -12
  104. glaip_sdk/utils/a2a/__init__.py +34 -0
  105. glaip_sdk/utils/a2a/event_processor.py +188 -0
  106. glaip_sdk/utils/agent_config.py +4 -14
  107. glaip_sdk/utils/bundler.py +267 -0
  108. glaip_sdk/utils/client.py +111 -0
  109. glaip_sdk/utils/client_utils.py +46 -28
  110. glaip_sdk/utils/datetime_helpers.py +58 -0
  111. glaip_sdk/utils/discovery.py +78 -0
  112. glaip_sdk/utils/display.py +25 -21
  113. glaip_sdk/utils/export.py +143 -0
  114. glaip_sdk/utils/general.py +1 -36
  115. glaip_sdk/utils/import_export.py +15 -16
  116. glaip_sdk/utils/import_resolver.py +492 -0
  117. glaip_sdk/utils/instructions.py +101 -0
  118. glaip_sdk/utils/rendering/__init__.py +115 -1
  119. glaip_sdk/utils/rendering/formatting.py +38 -23
  120. glaip_sdk/utils/rendering/layout/__init__.py +64 -0
  121. glaip_sdk/utils/rendering/{renderer → layout}/panels.py +10 -3
  122. glaip_sdk/utils/rendering/{renderer → layout}/progress.py +73 -12
  123. glaip_sdk/utils/rendering/layout/summary.py +74 -0
  124. glaip_sdk/utils/rendering/layout/transcript.py +606 -0
  125. glaip_sdk/utils/rendering/models.py +18 -8
  126. glaip_sdk/utils/rendering/renderer/__init__.py +9 -51
  127. glaip_sdk/utils/rendering/renderer/base.py +476 -882
  128. glaip_sdk/utils/rendering/renderer/config.py +4 -10
  129. glaip_sdk/utils/rendering/renderer/debug.py +30 -34
  130. glaip_sdk/utils/rendering/renderer/factory.py +138 -0
  131. glaip_sdk/utils/rendering/renderer/stream.py +13 -54
  132. glaip_sdk/utils/rendering/renderer/summary_window.py +79 -0
  133. glaip_sdk/utils/rendering/renderer/thinking.py +273 -0
  134. glaip_sdk/utils/rendering/renderer/toggle.py +182 -0
  135. glaip_sdk/utils/rendering/renderer/tool_panels.py +442 -0
  136. glaip_sdk/utils/rendering/renderer/transcript_mode.py +162 -0
  137. glaip_sdk/utils/rendering/state.py +204 -0
  138. glaip_sdk/utils/rendering/step_tree_state.py +100 -0
  139. glaip_sdk/utils/rendering/steps/__init__.py +34 -0
  140. glaip_sdk/utils/rendering/steps/event_processor.py +778 -0
  141. glaip_sdk/utils/rendering/steps/format.py +176 -0
  142. glaip_sdk/utils/rendering/{steps.py → steps/manager.py} +122 -26
  143. glaip_sdk/utils/rendering/timing.py +36 -0
  144. glaip_sdk/utils/rendering/viewer/__init__.py +21 -0
  145. glaip_sdk/utils/rendering/viewer/presenter.py +184 -0
  146. glaip_sdk/utils/resource_refs.py +29 -26
  147. glaip_sdk/utils/runtime_config.py +422 -0
  148. glaip_sdk/utils/serialization.py +32 -46
  149. glaip_sdk/utils/sync.py +142 -0
  150. glaip_sdk/utils/tool_detection.py +33 -0
  151. glaip_sdk/utils/validation.py +20 -28
  152. {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.6.5b6.dist-info}/METADATA +49 -4
  153. glaip_sdk-0.6.5b6.dist-info/RECORD +159 -0
  154. {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.6.5b6.dist-info}/WHEEL +1 -1
  155. glaip_sdk/models.py +0 -259
  156. glaip_sdk-0.0.20.dist-info/RECORD +0 -80
  157. {glaip_sdk-0.0.20.dist-info → glaip_sdk-0.6.5b6.dist-info}/entry_points.txt +0 -0
@@ -33,9 +33,15 @@ from glaip_sdk.branding import (
33
33
  WARNING_STYLE,
34
34
  AIPBranding,
35
35
  )
36
- from glaip_sdk.cli.commands.configure import configure_command, load_config
36
+ from glaip_sdk.cli.auth import resolve_api_url_from_context
37
+ from glaip_sdk.cli.account_store import get_account_store
38
+ from glaip_sdk.cli.commands import transcripts as transcripts_cmd
39
+ from glaip_sdk.cli.commands.configure import _configure_interactive, load_config
37
40
  from glaip_sdk.cli.commands.update import update_command
41
+ from glaip_sdk.cli.hints import format_command_hint
42
+ from glaip_sdk.cli.slash.accounts_controller import AccountsController
38
43
  from glaip_sdk.cli.slash.agent_session import AgentRunSession
44
+ from glaip_sdk.cli.slash.accounts_shared import env_credentials_present
39
45
  from glaip_sdk.cli.slash.prompt import (
40
46
  FormattedText,
41
47
  PromptSession,
@@ -44,19 +50,19 @@ from glaip_sdk.cli.slash.prompt import (
44
50
  setup_prompt_toolkit,
45
51
  to_formatted_text,
46
52
  )
53
+ from glaip_sdk.cli.slash.remote_runs_controller import RemoteRunsController
47
54
  from glaip_sdk.cli.transcript import (
48
55
  export_cached_transcript,
49
- normalise_export_destination,
50
- resolve_manifest_for_export,
51
- suggest_filename,
56
+ load_history_snapshot,
52
57
  )
53
58
  from glaip_sdk.cli.transcript.viewer import ViewerContext, run_viewer_session
54
59
  from glaip_sdk.cli.update_notifier import maybe_notify_update
55
60
  from glaip_sdk.cli.utils import (
56
61
  _fuzzy_pick_for_resources,
57
62
  command_hint,
58
- format_command_hint,
63
+ format_size,
59
64
  get_client,
65
+ restore_slash_session_context,
60
66
  )
61
67
  from glaip_sdk.rich_components import AIPGrid, AIPPanel, AIPTable
62
68
 
@@ -71,6 +77,72 @@ class SlashCommand:
71
77
  help: str
72
78
  handler: SlashHandler
73
79
  aliases: tuple[str, ...] = ()
80
+ agent_only: bool = False
81
+
82
+
83
+ NEW_QUICK_ACTIONS: tuple[dict[str, Any], ...] = (
84
+ {
85
+ "cli": "transcripts",
86
+ "slash": "transcripts",
87
+ "description": "Review transcript cache",
88
+ "tag": "NEW",
89
+ "priority": 10,
90
+ "scope": "global",
91
+ },
92
+ {
93
+ "cli": None,
94
+ "slash": "runs",
95
+ "description": "View remote run history for the active agent",
96
+ "tag": "NEW",
97
+ "priority": 8,
98
+ "scope": "agent",
99
+ },
100
+ )
101
+
102
+
103
+ DEFAULT_QUICK_ACTIONS: tuple[dict[str, Any], ...] = (
104
+ {
105
+ "cli": None,
106
+ "slash": "accounts",
107
+ "description": "Switch account profile",
108
+ "priority": 5,
109
+ },
110
+ {
111
+ "cli": "status",
112
+ "slash": "status",
113
+ "description": "Connection check",
114
+ "priority": 0,
115
+ },
116
+ {
117
+ "cli": "agents list",
118
+ "slash": "agents",
119
+ "description": "Browse agents",
120
+ "priority": 0,
121
+ },
122
+ {
123
+ "cli": "help",
124
+ "slash": "help",
125
+ "description": "Show all commands",
126
+ "priority": 0,
127
+ },
128
+ {
129
+ "cli": "configure",
130
+ "slash": "login",
131
+ "description": f"Configure credentials (alias [{HINT_COMMAND_STYLE}]/configure[/])",
132
+ "priority": -1,
133
+ },
134
+ )
135
+
136
+
137
+ HELP_COMMAND = "/help"
138
+
139
+
140
+ def _quick_action_scope(action: dict[str, Any]) -> str:
141
+ """Return the scope for a quick action definition."""
142
+ scope = action.get("scope") or "global"
143
+ if isinstance(scope, str):
144
+ return scope.lower()
145
+ return "global"
74
146
 
75
147
 
76
148
  class SlashSession:
@@ -98,8 +170,9 @@ class SlashSession:
98
170
  self._welcome_rendered = False
99
171
  self._active_renderer: Any | None = None
100
172
  self._current_agent: Any | None = None
173
+ self._runs_pagination_state: dict[str, dict[str, Any]] = {} # agent_id -> {page, limit, cursor}
101
174
 
102
- self._home_placeholder = "Start with / to browse commands"
175
+ self._home_placeholder = "Hint: type / to explore commands · Ctrl+D exits"
103
176
 
104
177
  # Command string constants to avoid duplication
105
178
  self.STATUS_COMMAND = "/status"
@@ -120,8 +193,25 @@ class SlashSession:
120
193
  # ------------------------------------------------------------------
121
194
  # Session orchestration
122
195
  # ------------------------------------------------------------------
196
+ def refresh_branding(
197
+ self,
198
+ sdk_version: str | None = None,
199
+ *,
200
+ branding_cls: type[AIPBranding] | None = None,
201
+ ) -> None:
202
+ """Refresh branding assets after an in-session SDK upgrade."""
203
+ branding_type = branding_cls or AIPBranding
204
+ self._branding = branding_type.create_from_sdk(
205
+ sdk_version=sdk_version,
206
+ package_name="glaip-sdk",
207
+ )
208
+ self._welcome_rendered = False
209
+ self.console.print()
210
+ self.console.print(f"[{SUCCESS_STYLE}]CLI updated to {self._branding.version}. Refreshing banner...[/]")
211
+ self._render_header(initial=True)
123
212
 
124
213
  def _setup_prompt_toolkit(self) -> None:
214
+ """Initialize prompt_toolkit session and style."""
125
215
  session, style = setup_prompt_toolkit(self, interactive=self._interactive)
126
216
  self._ptk_session = session
127
217
  self._ptk_style = style
@@ -149,10 +239,7 @@ class SlashSession:
149
239
  self._run_interactive_loop()
150
240
  finally:
151
241
  if ctx_obj is not None:
152
- if previous_session is None:
153
- ctx_obj.pop("_slash_session", None)
154
- else:
155
- ctx_obj["_slash_session"] = previous_session
242
+ restore_slash_session_context(ctx_obj, previous_session)
156
243
 
157
244
  def _run_interactive_loop(self) -> None:
158
245
  """Run the main interactive command loop."""
@@ -181,16 +268,12 @@ class SlashSession:
181
268
  return True
182
269
 
183
270
  if not raw.startswith("/"):
184
- self.console.print(
185
- f"[{INFO_STYLE}]Hint:[/] start commands with `/`. Try `/agents` to select an agent."
186
- )
271
+ self.console.print(f"[{INFO_STYLE}]Hint:[/] start commands with `/`. Try `/agents` to select an agent.")
187
272
  return True
188
273
 
189
274
  return self.handle_command(raw)
190
275
 
191
- def _run_non_interactive(
192
- self, initial_commands: Iterable[str] | None = None
193
- ) -> None:
276
+ def _run_non_interactive(self, initial_commands: Iterable[str] | None = None) -> None:
194
277
  """Run slash commands in non-interactive mode."""
195
278
  commands = list(initial_commands or [])
196
279
  if not commands:
@@ -202,38 +285,124 @@ class SlashSession:
202
285
  if not self.handle_command(raw):
203
286
  break
204
287
 
288
+ def _handle_account_selection(self) -> bool:
289
+ """Handle account selection when accounts exist but none are active.
290
+
291
+ Returns:
292
+ True if configuration is ready after selection, False if user aborted.
293
+ """
294
+ self.console.print(f"[{INFO_STYLE}]No active account selected. Please choose an account:[/]")
295
+ try:
296
+ self._cmd_accounts([], False)
297
+ self._config_cache = None
298
+ return self._check_configuration_after_selection()
299
+ except KeyboardInterrupt:
300
+ self.console.print(f"[{ERROR_STYLE}]Account selection aborted. Closing the command palette.[/]")
301
+ return False
302
+
303
+ def _check_configuration_after_selection(self) -> bool:
304
+ """Check if configuration is ready after account selection.
305
+
306
+ Returns:
307
+ True if configuration is ready, False otherwise.
308
+ """
309
+ return self._configuration_ready()
310
+
311
+ def _handle_new_account_creation(self) -> bool:
312
+ """Handle new account creation when no accounts exist.
313
+
314
+ Returns:
315
+ True if configuration succeeded, False if user aborted.
316
+ """
317
+ previous_tip_env = os.environ.get("AIP_SUPPRESS_CONFIGURE_TIP")
318
+ os.environ["AIP_SUPPRESS_CONFIGURE_TIP"] = "1"
319
+ self._suppress_login_layout = True
320
+ try:
321
+ self._cmd_login([], False)
322
+ return True
323
+ except KeyboardInterrupt:
324
+ self.console.print(f"[{ERROR_STYLE}]Configuration aborted. Closing the command palette.[/]")
325
+ return False
326
+ finally:
327
+ self._suppress_login_layout = False
328
+ if previous_tip_env is None:
329
+ os.environ.pop("AIP_SUPPRESS_CONFIGURE_TIP", None)
330
+ else:
331
+ os.environ["AIP_SUPPRESS_CONFIGURE_TIP"] = previous_tip_env
332
+
205
333
  def _ensure_configuration(self) -> bool:
206
334
  """Ensure the CLI has both API URL and credentials before continuing."""
207
335
  while not self._configuration_ready():
208
- self.console.print(
209
- f"[{WARNING_STYLE}]Configuration required.[/] Launching `/login` wizard..."
210
- )
211
- self._suppress_login_layout = True
212
- try:
213
- self._cmd_login([], False)
214
- except KeyboardInterrupt:
215
- self.console.print(
216
- f"[{ERROR_STYLE}]Configuration aborted. Closing the command palette.[/]"
217
- )
336
+ store = get_account_store()
337
+ accounts = store.list_accounts()
338
+ active_account = store.get_active_account()
339
+
340
+ # If accounts exist but none are active, show accounts list first
341
+ if accounts and (not active_account or active_account not in accounts):
342
+ if not self._handle_account_selection():
343
+ return False
344
+ continue
345
+
346
+ # No accounts exist - prompt for configuration
347
+ if not self._handle_new_account_creation():
218
348
  return False
219
- finally:
220
- self._suppress_login_layout = False
221
349
 
222
350
  return True
223
351
 
352
+ def _get_credentials_from_context_and_env(self) -> tuple[str, str]:
353
+ """Get credentials from context and environment variables.
354
+
355
+ Returns:
356
+ Tuple of (api_url, api_key) from context/env overrides.
357
+ """
358
+ api_url = ""
359
+ api_key = ""
360
+ if isinstance(self.ctx.obj, dict):
361
+ api_url = self.ctx.obj.get("api_url", "")
362
+ api_key = self.ctx.obj.get("api_key", "")
363
+ # Environment variables take precedence
364
+ env_url = os.getenv("AIP_API_URL", "")
365
+ env_key = os.getenv("AIP_API_KEY", "")
366
+ return (env_url or api_url, env_key or api_key)
367
+
368
+ def _get_credentials_from_account_store(self) -> tuple[str, str] | None:
369
+ """Get credentials from the active account in account store.
370
+
371
+ Returns:
372
+ Tuple of (api_url, api_key) if active account exists, None otherwise.
373
+ """
374
+ store = get_account_store()
375
+ active_account = store.get_active_account()
376
+ if not active_account:
377
+ return None
378
+
379
+ account = store.get_account(active_account)
380
+ if not account:
381
+ return None
382
+
383
+ api_url = account.get("api_url", "")
384
+ api_key = account.get("api_key", "")
385
+ return (api_url, api_key)
386
+
224
387
  def _configuration_ready(self) -> bool:
225
388
  """Check whether API URL and credentials are available."""
226
- config = self._load_config()
227
- api_url = self._get_api_url(config)
228
- if not api_url:
389
+ # Check for explicit overrides in context/env first
390
+ override_url, override_key = self._get_credentials_from_context_and_env()
391
+ if override_url and override_key:
392
+ return True
393
+
394
+ # Read from account store directly to avoid stale cache
395
+ account_creds = self._get_credentials_from_account_store()
396
+ if account_creds is None:
229
397
  return False
230
398
 
231
- api_key: str | None = None
232
- if isinstance(self.ctx.obj, dict):
233
- api_key = self.ctx.obj.get("api_key")
399
+ store_url, store_key = account_creds
400
+
401
+ # Use override values if available, otherwise use store values
402
+ api_url = override_url or store_url
403
+ api_key = override_key or store_key
234
404
 
235
- api_key = api_key or config.get("api_key") or os.getenv("AIP_API_KEY")
236
- return bool(api_key)
405
+ return bool(api_url and api_key)
237
406
 
238
407
  def handle_command(self, raw: str, *, invoked_from_agent: bool = False) -> bool:
239
408
  """Parse and execute a single slash command string."""
@@ -246,11 +415,9 @@ class SlashSession:
246
415
  if command is None:
247
416
  suggestion = self._suggest(verb)
248
417
  if suggestion:
249
- self.console.print(
250
- f"[{WARNING_STYLE}]Unknown command '{verb}'. Did you mean '/{suggestion}'?[/]"
251
- )
418
+ self.console.print(f"[{WARNING_STYLE}]Unknown command '{verb}'. Did you mean '/{suggestion}'?[/]")
252
419
  else:
253
- help_command = "/help"
420
+ help_command = HELP_COMMAND
254
421
  help_hint = format_command_hint(help_command) or help_command
255
422
  self.console.print(
256
423
  f"[{WARNING_STYLE}]Unknown command '{verb}'. Type {help_hint} for a list of options.[/]"
@@ -263,15 +430,28 @@ class SlashSession:
263
430
  return False
264
431
  return True
265
432
 
433
+ def _continue_session(self) -> bool:
434
+ """Signal that the slash session should remain active."""
435
+ return not self._should_exit
436
+
266
437
  # ------------------------------------------------------------------
267
438
  # Command handlers
268
439
  # ------------------------------------------------------------------
269
440
  def _cmd_help(self, _args: list[str], invoked_from_agent: bool) -> bool:
441
+ """Handle the /help command.
442
+
443
+ Args:
444
+ _args: Command arguments (unused).
445
+ invoked_from_agent: Whether invoked from agent context.
446
+
447
+ Returns:
448
+ True to continue session.
449
+ """
270
450
  try:
271
451
  if invoked_from_agent:
272
452
  self._render_agent_help()
273
453
  else:
274
- self._render_global_help()
454
+ self._render_global_help(include_agent_hint=True)
275
455
  except Exception as exc: # pragma: no cover - UI/display errors
276
456
  self.console.print(f"[{ERROR_STYLE}]Error displaying help: {exc}[/]")
277
457
  return False
@@ -279,21 +459,21 @@ class SlashSession:
279
459
  return True
280
460
 
281
461
  def _render_agent_help(self) -> None:
462
+ """Render help text for agent context commands."""
282
463
  table = AIPTable()
283
464
  table.add_column("Input", style=HINT_COMMAND_STYLE, no_wrap=True)
284
465
  table.add_column("What happens", style=HINT_DESCRIPTION_COLOR)
285
466
  table.add_row("<message>", "Run the active agent once with that prompt.")
286
- table.add_row("/details", "Show the full agent export and metadata.")
467
+ table.add_row("/details", "Show the agent export (prompts to expand instructions).")
287
468
  table.add_row(self.STATUS_COMMAND, "Display connection status without leaving.")
469
+ table.add_row("/runs", "✨ NEW · Open the remote run browser for this agent.")
288
470
  table.add_row("/export [path]", "Export the latest agent transcript as JSONL.")
289
471
  table.add_row("/exit (/back)", "Return to the slash home screen.")
290
- table.add_row("/help (/?)", "Display this context-aware menu.")
472
+ table.add_row(f"{HELP_COMMAND} (/?)", "Display this context-aware menu.")
291
473
 
292
474
  panel_items = [table]
293
475
  if self.last_run_input:
294
- panel_items.append(
295
- Text.from_markup(f"[dim]Last run input:[/] {self.last_run_input}")
296
- )
476
+ panel_items.append(Text.from_markup(f"[dim]Last run input:[/] {self.last_run_input}"))
297
477
  panel_items.append(
298
478
  Text.from_markup(
299
479
  "[dim]Global commands (e.g. `/login`, `/status`) remain available inside the agent prompt.[/dim]"
@@ -307,13 +487,28 @@ class SlashSession:
307
487
  border_style=PRIMARY,
308
488
  )
309
489
  )
490
+ new_commands_table = AIPTable()
491
+ new_commands_table.add_column("Command", style=HINT_COMMAND_STYLE, no_wrap=True)
492
+ new_commands_table.add_column("Description", style=HINT_DESCRIPTION_COLOR)
493
+ new_commands_table.add_row(
494
+ "/runs",
495
+ "✨ NEW · View remote run history with keyboard navigation and export options.",
496
+ )
497
+ self.console.print(
498
+ AIPPanel(
499
+ new_commands_table,
500
+ title="New commands",
501
+ border_style=SECONDARY_LIGHT,
502
+ )
503
+ )
310
504
 
311
- def _render_global_help(self) -> None:
505
+ def _render_global_help(self, *, include_agent_hint: bool = False) -> None:
506
+ """Render help text for global slash commands."""
312
507
  table = AIPTable()
313
508
  table.add_column("Command", style=HINT_COMMAND_STYLE, no_wrap=True)
314
509
  table.add_column("Description", style=HINT_DESCRIPTION_COLOR)
315
510
 
316
- for cmd in sorted(self._unique_commands.values(), key=lambda c: c.name):
511
+ for cmd in self._visible_commands(include_agent_only=False):
317
512
  aliases = ", ".join(f"/{alias}" for alias in cmd.aliases if alias)
318
513
  verb = f"/{cmd.name}"
319
514
  if aliases:
@@ -321,7 +516,9 @@ class SlashSession:
321
516
  table.add_row(verb, cmd.help)
322
517
 
323
518
  tip = Text.from_markup(
324
- f"[{HINT_PREFIX_STYLE}]Tip:[/] {format_command_hint(self.AGENTS_COMMAND) or self.AGENTS_COMMAND} lets you jump into an agent run prompt quickly."
519
+ f"[{HINT_PREFIX_STYLE}]Tip:[/] "
520
+ f"{format_command_hint(self.AGENTS_COMMAND) or self.AGENTS_COMMAND} "
521
+ "lets you jump into an agent run prompt quickly."
325
522
  )
326
523
 
327
524
  self.console.print(
@@ -331,11 +528,26 @@ class SlashSession:
331
528
  border_style=PRIMARY,
332
529
  )
333
530
  )
531
+ if include_agent_hint:
532
+ self.console.print(
533
+ "[dim]Additional commands (e.g. `/runs`) become available after you pick an agent with `/agents`. "
534
+ "Those agent-only commands stay hidden here to avoid confusion.[/]"
535
+ )
334
536
 
335
537
  def _cmd_login(self, _args: list[str], _invoked_from_agent: bool) -> bool:
538
+ """Handle the /login command.
539
+
540
+ Args:
541
+ _args: Command arguments (unused).
542
+ _invoked_from_agent: Whether invoked from agent context (unused).
543
+
544
+ Returns:
545
+ True to continue session.
546
+ """
336
547
  self.console.print(f"[{ACCENT_STYLE}]Launching configuration wizard...[/]")
337
548
  try:
338
- self.ctx.invoke(configure_command)
549
+ # Use the modern account-aware wizard directly (bypasses legacy config gating)
550
+ _configure_interactive(account_name=None)
339
551
  self._config_cache = None
340
552
  if self._suppress_login_layout:
341
553
  self._welcome_rendered = False
@@ -345,14 +557,23 @@ class SlashSession:
345
557
  self._show_default_quick_actions()
346
558
  except click.ClickException as exc:
347
559
  self.console.print(f"[{ERROR_STYLE}]{exc}[/]")
348
- return True
560
+ return self._continue_session()
349
561
 
350
562
  def _cmd_status(self, _args: list[str], _invoked_from_agent: bool) -> bool:
563
+ """Handle the /status command.
564
+
565
+ Args:
566
+ _args: Command arguments (unused).
567
+ _invoked_from_agent: Whether invoked from agent context (unused).
568
+
569
+ Returns:
570
+ True to continue session.
571
+ """
351
572
  ctx_obj = self.ctx.obj if isinstance(self.ctx.obj, dict) else None
352
573
  previous_console = None
353
574
  try:
354
575
  status_module = importlib.import_module("glaip_sdk.cli.main")
355
- status_command = getattr(status_module, "status")
576
+ status_command = status_module.status
356
577
 
357
578
  if ctx_obj is not None:
358
579
  previous_console = ctx_obj.get("_slash_console")
@@ -360,9 +581,7 @@ class SlashSession:
360
581
 
361
582
  self.ctx.invoke(status_command)
362
583
 
363
- hints: list[tuple[str, str]] = [
364
- (self.AGENTS_COMMAND, "Browse agents and run them")
365
- ]
584
+ hints: list[tuple[str, str]] = [(self.AGENTS_COMMAND, "Browse agents and run them")]
366
585
  if self.recent_agents:
367
586
  top = self.recent_agents[0]
368
587
  label = top.get("name") or top.get("id")
@@ -376,9 +595,176 @@ class SlashSession:
376
595
  ctx_obj.pop("_slash_console", None)
377
596
  else:
378
597
  ctx_obj["_slash_console"] = previous_console
379
- return True
598
+ return self._continue_session()
599
+
600
+ def _cmd_transcripts(self, args: list[str], _invoked_from_agent: bool) -> bool:
601
+ """Handle the /transcripts command.
602
+
603
+ Args:
604
+ args: Command arguments (limit or detail/show with run_id).
605
+ _invoked_from_agent: Whether invoked from agent context (unused).
606
+
607
+ Returns:
608
+ True to continue session.
609
+ """
610
+ if args and args[0].lower() in {"detail", "show"}:
611
+ if len(args) < 2:
612
+ self.console.print(f"[{WARNING_STYLE}]Usage: /transcripts detail <run_id>[/]")
613
+ return self._continue_session()
614
+ self._show_transcript_detail(args[1])
615
+ return self._continue_session()
616
+
617
+ limit, ok = self._parse_transcripts_limit(args)
618
+ if not ok:
619
+ return self._continue_session()
620
+
621
+ snapshot = load_history_snapshot(limit=limit, ctx=self.ctx)
622
+
623
+ if self._handle_transcripts_empty(snapshot, limit):
624
+ return self._continue_session()
625
+
626
+ self._render_transcripts_snapshot(snapshot)
627
+ return self._continue_session()
628
+
629
+ def _parse_transcripts_limit(self, args: list[str]) -> tuple[int | None, bool]:
630
+ """Parse limit argument from transcripts command.
631
+
632
+ Args:
633
+ args: Command arguments.
634
+
635
+ Returns:
636
+ Tuple of (limit value or None, success boolean).
637
+ """
638
+ if not args:
639
+ return None, True
640
+ try:
641
+ limit = int(args[0])
642
+ except ValueError:
643
+ self.console.print(f"[{WARNING_STYLE}]Usage: /transcripts [limit][/]")
644
+ return None, False
645
+ if limit < 0:
646
+ self.console.print(f"[{WARNING_STYLE}]Usage: /transcripts [limit][/]")
647
+ return None, False
648
+ return limit, True
649
+
650
+ def _handle_transcripts_empty(self, snapshot: Any, limit: int | None) -> bool:
651
+ """Handle empty transcript snapshot cases.
652
+
653
+ Args:
654
+ snapshot: Transcript snapshot object.
655
+ limit: Limit value or None.
656
+
657
+ Returns:
658
+ True if empty case was handled, False otherwise.
659
+ """
660
+ if snapshot.cached_entries == 0:
661
+ self.console.print(f"[{WARNING_STYLE}]No cached transcripts yet. Run an agent first.[/]")
662
+ for warning in snapshot.warnings:
663
+ self.console.print(f"[{WARNING_STYLE}]{warning}[/]")
664
+ return True
665
+ if limit == 0 and snapshot.cached_entries:
666
+ self.console.print(f"[{WARNING_STYLE}]Limit is 0; nothing to display.[/]")
667
+ return True
668
+ return False
669
+
670
+ def _render_transcripts_snapshot(self, snapshot: Any) -> None:
671
+ """Render transcript snapshot table and metadata.
672
+
673
+ Args:
674
+ snapshot: Transcript snapshot object to render.
675
+ """
676
+ size_text = format_size(snapshot.total_size_bytes)
677
+ header = f"[dim]Manifest: {snapshot.manifest_path} · {snapshot.total_entries} runs · {size_text} used[/]"
678
+ self.console.print(header)
679
+
680
+ if snapshot.limit_clamped:
681
+ self.console.print(
682
+ f"[{WARNING_STYLE}]Requested limit exceeded maximum; showing first {snapshot.limit_applied} runs.[/]"
683
+ )
684
+
685
+ if snapshot.total_entries > len(snapshot.entries):
686
+ subset_message = (
687
+ f"[dim]Showing {len(snapshot.entries)} of {snapshot.total_entries} "
688
+ f"runs (limit={snapshot.limit_applied}).[/]"
689
+ )
690
+ self.console.print(subset_message)
691
+ self.console.print("[dim]Hint: run `/transcripts <limit>` to change how many rows are displayed.[/]")
692
+
693
+ if snapshot.migration_summary:
694
+ self.console.print(f"[{INFO_STYLE}]{snapshot.migration_summary}[/]")
695
+
696
+ for warning in snapshot.warnings:
697
+ self.console.print(f"[{WARNING_STYLE}]{warning}[/]")
698
+
699
+ table = transcripts_cmd._build_table(snapshot.entries)
700
+ self.console.print(table)
701
+ self.console.print("[dim]! Missing transcript[/]")
702
+
703
+ def _show_transcript_detail(self, run_id: str) -> None:
704
+ """Render the cached transcript log for a single run."""
705
+ snapshot = load_history_snapshot(ctx=self.ctx)
706
+ entry = snapshot.index.get(run_id)
707
+ if entry is None:
708
+ self.console.print(f"[{WARNING_STYLE}]Run id {run_id} was not found in the cache manifest.[/]")
709
+ return
710
+
711
+ try:
712
+ transcript_path, transcript_text = transcripts_cmd._load_transcript_text(entry)
713
+ except click.ClickException as exc:
714
+ self.console.print(f"[{WARNING_STYLE}]{exc}[/]")
715
+ return
716
+
717
+ meta, events = transcripts_cmd._decode_transcript(transcript_text)
718
+ if transcripts_cmd._maybe_launch_transcript_viewer(
719
+ self.ctx,
720
+ entry,
721
+ meta,
722
+ events,
723
+ console_override=self.console,
724
+ force=True,
725
+ initial_view="transcript",
726
+ ):
727
+ if snapshot.migration_summary:
728
+ self.console.print(f"[{INFO_STYLE}]{snapshot.migration_summary}[/]")
729
+ for warning in snapshot.warnings:
730
+ self.console.print(f"[{WARNING_STYLE}]{warning}[/]")
731
+ return
732
+
733
+ if snapshot.migration_summary:
734
+ self.console.print(f"[{INFO_STYLE}]{snapshot.migration_summary}[/]")
735
+ for warning in snapshot.warnings:
736
+ self.console.print(f"[{WARNING_STYLE}]{warning}[/]")
737
+ view = transcripts_cmd._render_transcript_display(entry, snapshot.manifest_path, transcript_path, meta, events)
738
+ self.console.print(view, markup=False, highlight=False, soft_wrap=True, end="")
739
+
740
+ def _cmd_runs(self, args: list[str], _invoked_from_agent: bool) -> bool:
741
+ """Handle the /runs command for browsing remote agent run history.
742
+
743
+ Args:
744
+ args: Command arguments (optional run_id for detail view).
745
+ _invoked_from_agent: Whether invoked from agent context.
746
+
747
+ Returns:
748
+ True to continue session.
749
+ """
750
+ controller = RemoteRunsController(self)
751
+ return controller.handle_runs_command(args)
752
+
753
+ def _cmd_accounts(self, args: list[str], _invoked_from_agent: bool) -> bool:
754
+ """Handle the /accounts command for listing and switching accounts."""
755
+ controller = AccountsController(self)
756
+ return controller.handle_accounts_command(args)
380
757
 
381
758
  def _cmd_agents(self, args: list[str], _invoked_from_agent: bool) -> bool:
759
+ """Handle the /agents command.
760
+
761
+ Args:
762
+ args: Command arguments (optional agent reference).
763
+ _invoked_from_agent: Whether invoked from agent context (unused).
764
+
765
+ Returns:
766
+ True to continue session.
767
+ """
382
768
  client = self._get_client_or_fail()
383
769
  if not client:
384
770
  return True
@@ -417,9 +803,7 @@ class SlashSession:
417
803
  """Handle case when no agents are available."""
418
804
  hint = command_hint("agents create", slash_command=None, ctx=self.ctx)
419
805
  if hint:
420
- self.console.print(
421
- f"[{WARNING_STYLE}]No agents available. Use `{hint}` to add one.[/]"
422
- )
806
+ self.console.print(f"[{WARNING_STYLE}]No agents available. Use `{hint}` to add one.[/]")
423
807
  else:
424
808
  self.console.print(f"[{WARNING_STYLE}]No agents available.[/]")
425
809
 
@@ -446,7 +830,7 @@ class SlashSession:
446
830
  self._render_header()
447
831
 
448
832
  self._show_agent_followup_actions(picked_agent)
449
- return True
833
+ return self._continue_session()
450
834
 
451
835
  def _show_agent_followup_actions(self, picked_agent: Any) -> None:
452
836
  """Show follow-up action hints after agent session."""
@@ -458,6 +842,7 @@ class SlashSession:
458
842
  hints.append((f"/agents {agent_id}", f"Reopen {agent_label}"))
459
843
  hints.extend(
460
844
  [
845
+ ("/accounts", "Switch account"),
461
846
  (self.AGENTS_COMMAND, "Browse agents"),
462
847
  (self.STATUS_COMMAND, "Check connection"),
463
848
  ]
@@ -466,6 +851,15 @@ class SlashSession:
466
851
  self._show_quick_actions(hints, title="Next actions")
467
852
 
468
853
  def _cmd_exit(self, _args: list[str], invoked_from_agent: bool) -> bool:
854
+ """Handle the /exit command.
855
+
856
+ Args:
857
+ _args: Command arguments (unused).
858
+ invoked_from_agent: Whether invoked from agent context.
859
+
860
+ Returns:
861
+ False to exit session, True to continue.
862
+ """
469
863
  if invoked_from_agent:
470
864
  # Returning False would stop the full session; we only want to exit
471
865
  # the agent context. Raising a custom flag keeps the outer loop
@@ -479,6 +873,7 @@ class SlashSession:
479
873
  # Utilities
480
874
  # ------------------------------------------------------------------
481
875
  def _register_defaults(self) -> None:
876
+ """Register default slash commands."""
482
877
  self._register(
483
878
  SlashCommand(
484
879
  name="help",
@@ -490,7 +885,7 @@ class SlashSession:
490
885
  self._register(
491
886
  SlashCommand(
492
887
  name="login",
493
- help="Run `/login` (alias `/configure`) to set credentials.",
888
+ help="Configure API credentials (alias `/configure`).",
494
889
  handler=SlashSession._cmd_login,
495
890
  aliases=("configure",),
496
891
  )
@@ -502,6 +897,23 @@ class SlashSession:
502
897
  handler=SlashSession._cmd_status,
503
898
  )
504
899
  )
900
+ self._register(
901
+ SlashCommand(
902
+ name="accounts",
903
+ help="✨ NEW · Browse and switch stored accounts (Textual with Rich fallback).",
904
+ handler=SlashSession._cmd_accounts,
905
+ )
906
+ )
907
+ self._register(
908
+ SlashCommand(
909
+ name="transcripts",
910
+ help=(
911
+ "✨ NEW · Review cached transcript history. "
912
+ "Add a number (e.g. `/transcripts 5`) to change the row limit."
913
+ ),
914
+ handler=SlashSession._cmd_transcripts,
915
+ )
916
+ )
505
917
  self._register(
506
918
  SlashCommand(
507
919
  name="agents",
@@ -531,28 +943,44 @@ class SlashSession:
531
943
  handler=SlashSession._cmd_update,
532
944
  )
533
945
  )
946
+ self._register(
947
+ SlashCommand(
948
+ name="runs",
949
+ help="✨ NEW · Browse remote agent run history (requires active agent session).",
950
+ handler=SlashSession._cmd_runs,
951
+ agent_only=True,
952
+ )
953
+ )
534
954
 
535
955
  def _register(self, command: SlashCommand) -> None:
956
+ """Register a slash command.
957
+
958
+ Args:
959
+ command: SlashCommand to register.
960
+ """
536
961
  self._unique_commands[command.name] = command
537
962
  for key in (command.name, *command.aliases):
538
963
  self._commands[key] = command
539
964
 
965
+ def _visible_commands(self, *, include_agent_only: bool) -> list[SlashCommand]:
966
+ """Return the list of commands that should be shown in global listings."""
967
+ commands = sorted(self._unique_commands.values(), key=lambda c: c.name)
968
+ if include_agent_only:
969
+ return commands
970
+ return [cmd for cmd in commands if not cmd.agent_only]
971
+
540
972
  def open_transcript_viewer(self, *, announce: bool = True) -> None:
541
973
  """Launch the transcript viewer for the most recent run."""
542
974
  payload, manifest = self._get_last_transcript()
543
975
  if payload is None or manifest is None:
544
976
  if announce:
545
- self.console.print(
546
- f"[{WARNING_STYLE}]No transcript is available yet. Run an agent first.[/]"
547
- )
977
+ self.console.print(f"[{WARNING_STYLE}]No transcript is available yet. Run an agent first.[/]")
548
978
  return
549
979
 
550
980
  run_id = manifest.get("run_id")
551
981
  if not run_id:
552
982
  if announce:
553
- self.console.print(
554
- f"[{WARNING_STYLE}]Latest transcript is missing run metadata.[/]"
555
- )
983
+ self.console.print(f"[{WARNING_STYLE}]Latest transcript is missing run metadata.[/]")
556
984
  return
557
985
 
558
986
  viewer_ctx = ViewerContext(
@@ -565,15 +993,21 @@ class SlashSession:
565
993
  )
566
994
 
567
995
  def _export(destination: Path) -> Path:
996
+ """Export cached transcript to destination.
997
+
998
+ Args:
999
+ destination: Path to export transcript to.
1000
+
1001
+ Returns:
1002
+ Path to exported transcript file.
1003
+ """
568
1004
  return export_cached_transcript(destination=destination, run_id=run_id)
569
1005
 
570
1006
  try:
571
1007
  run_viewer_session(self.console, viewer_ctx, _export)
572
1008
  except Exception as exc: # pragma: no cover - interactive failures
573
1009
  if announce:
574
- self.console.print(
575
- f"[{ERROR_STYLE}]Failed to launch transcript viewer: {exc}[/]"
576
- )
1010
+ self.console.print(f"[{ERROR_STYLE}]Failed to launch transcript viewer: {exc}[/]")
577
1011
 
578
1012
  def _get_last_transcript(self) -> tuple[Any | None, dict[str, Any] | None]:
579
1013
  """Fetch the most recently stored transcript payload and manifest."""
@@ -584,65 +1018,18 @@ class SlashSession:
584
1018
  manifest = ctx_obj.get("_last_transcript_manifest")
585
1019
  return payload, manifest
586
1020
 
587
- def _cmd_export(self, args: list[str], _invoked_from_agent: bool) -> bool:
1021
+ def _cmd_export(self, _args: list[str], _invoked_from_agent: bool) -> bool:
588
1022
  """Slash handler for `/export` command."""
589
- path_arg = args[0] if args else None
590
- run_id = args[1] if len(args) > 1 else None
591
-
592
- manifest_entry = resolve_manifest_for_export(self.ctx, run_id)
593
- if manifest_entry is None:
594
- if run_id:
595
- self.console.print(
596
- f"[{WARNING_STYLE}]No cached transcript found with run id {run_id!r}. Omit the run id to export the most recent run.[/]"
597
- )
598
- else:
599
- self.console.print(
600
- f"[{WARNING_STYLE}]No cached transcripts available yet. Run an agent first.[/]"
601
- )
602
- return False
603
-
604
- destination = self._resolve_export_destination(path_arg, manifest_entry)
605
- if destination is None:
606
- return False
607
-
608
- try:
609
- exported = export_cached_transcript(
610
- destination=destination,
611
- run_id=manifest_entry.get("run_id"),
612
- )
613
- except FileNotFoundError as exc:
614
- self.console.print(f"[{ERROR_STYLE}]{exc}[/]")
615
- return False
616
- except Exception as exc: # pragma: no cover - unexpected IO failures
617
- self.console.print(f"[{ERROR_STYLE}]Failed to export transcript: {exc}[/]")
618
- return False
619
- else:
620
- self.console.print(f"[{SUCCESS_STYLE}]Transcript exported to[/] {exported}")
621
- return True
622
-
623
- def _resolve_export_destination(
624
- self, path_arg: str | None, manifest_entry: dict[str, Any]
625
- ) -> Path | None:
626
- if path_arg:
627
- return normalise_export_destination(Path(path_arg))
628
-
629
- default_name = suggest_filename(manifest_entry)
630
- prompt = f"Save transcript to [{default_name}]: "
631
- try:
632
- response = self.console.input(prompt)
633
- except EOFError:
634
- self.console.print("[dim]Export cancelled.[/dim]")
635
- return None
636
-
637
- chosen = response.strip() or default_name
638
- return normalise_export_destination(Path(chosen))
1023
+ self.console.print(
1024
+ f"[{WARNING_STYLE}]`/export` is deprecated. Use `/transcripts`, select a run, "
1025
+ "and open the transcript viewer to export.[/]"
1026
+ )
1027
+ return True
639
1028
 
640
1029
  def _cmd_update(self, args: list[str], _invoked_from_agent: bool) -> bool:
641
1030
  """Slash handler for `/update` command."""
642
1031
  if args:
643
- self.console.print(
644
- "Usage: `/update` upgrades glaip-sdk to the latest published version."
645
- )
1032
+ self.console.print("Usage: `/update` upgrades glaip-sdk to the latest published version.")
646
1033
  return True
647
1034
 
648
1035
  try:
@@ -710,6 +1097,14 @@ class SlashSession:
710
1097
  pass
711
1098
 
712
1099
  def _parse(self, raw: str) -> tuple[str, list[str]]:
1100
+ """Parse a raw command string into verb and arguments.
1101
+
1102
+ Args:
1103
+ raw: Raw command string.
1104
+
1105
+ Returns:
1106
+ Tuple of (verb, args).
1107
+ """
713
1108
  try:
714
1109
  tokens = shlex.split(raw)
715
1110
  except ValueError:
@@ -725,6 +1120,14 @@ class SlashSession:
725
1120
  return head, tokens[1:]
726
1121
 
727
1122
  def _suggest(self, verb: str) -> str | None:
1123
+ """Suggest a similar command name for an unknown verb.
1124
+
1125
+ Args:
1126
+ verb: Unknown command verb.
1127
+
1128
+ Returns:
1129
+ Suggested command name or None.
1130
+ """
728
1131
  keys = [cmd.name for cmd in self._unique_commands.values()]
729
1132
  match = get_close_matches(verb, keys, n=1)
730
1133
  return match[0] if match else None
@@ -742,21 +1145,18 @@ class SlashSession:
742
1145
  prompt_kwargs: dict[str, Any] = {"style": self._ptk_style}
743
1146
  if placeholder:
744
1147
  placeholder_text = (
745
- FormattedText([("class:placeholder", placeholder)])
746
- if FormattedText is not None
747
- else placeholder
1148
+ FormattedText([("class:placeholder", placeholder)]) if FormattedText is not None else placeholder
748
1149
  )
749
1150
  prompt_kwargs["placeholder"] = placeholder_text
750
1151
  return prompt_kwargs
751
1152
 
752
- def _prompt_with_prompt_toolkit(
753
- self, message: str | Callable[[], Any], placeholder: str | None
754
- ) -> str:
1153
+ def _prompt_with_prompt_toolkit(self, message: str | Callable[[], Any], placeholder: str | None) -> str:
755
1154
  """Handle prompting with prompt_toolkit."""
756
1155
  with patch_stdout(): # pragma: no cover - UI specific
757
1156
  if callable(message):
758
1157
 
759
1158
  def prompt_text() -> Any:
1159
+ """Get formatted prompt text from callable message."""
760
1160
  return self._convert_message(message())
761
1161
  else:
762
1162
  prompt_text = self._convert_message(message)
@@ -765,9 +1165,7 @@ class SlashSession:
765
1165
 
766
1166
  try:
767
1167
  return self._ptk_session.prompt(prompt_text, **prompt_kwargs)
768
- except (
769
- TypeError
770
- ): # pragma: no cover - compatibility with older prompt_toolkit
1168
+ except TypeError: # pragma: no cover - compatibility with older prompt_toolkit
771
1169
  prompt_kwargs.pop("placeholder", None)
772
1170
  return self._ptk_session.prompt(prompt_text, **prompt_kwargs)
773
1171
 
@@ -786,9 +1184,7 @@ class SlashSession:
786
1184
  except Exception:
787
1185
  return str(raw_value)
788
1186
 
789
- def _prompt_with_basic_input(
790
- self, message: str | Callable[[], Any], placeholder: str | None
791
- ) -> str:
1187
+ def _prompt_with_basic_input(self, message: str | Callable[[], Any], placeholder: str | None) -> str:
792
1188
  """Handle prompting with basic input."""
793
1189
  if placeholder:
794
1190
  self.console.print(f"[dim]{placeholder}[/dim]")
@@ -798,9 +1194,7 @@ class SlashSession:
798
1194
 
799
1195
  return input(actual_message)
800
1196
 
801
- def _prompt(
802
- self, message: str | Callable[[], Any], *, placeholder: str | None = None
803
- ) -> str:
1197
+ def _prompt(self, message: str | Callable[[], Any], *, placeholder: str | None = None) -> str:
804
1198
  """Main prompt function with reduced complexity."""
805
1199
  if self._ptk_session and self._ptk_style and patch_stdout:
806
1200
  return self._prompt_with_prompt_toolkit(message, placeholder)
@@ -808,13 +1202,16 @@ class SlashSession:
808
1202
  return self._prompt_with_basic_input(message, placeholder)
809
1203
 
810
1204
  def _get_client(self) -> Any: # type: ignore[no-any-return]
1205
+ """Get or create the API client instance.
1206
+
1207
+ Returns:
1208
+ API client instance.
1209
+ """
811
1210
  if self._client is None:
812
1211
  self._client = get_client(self.ctx)
813
1212
  return self._client
814
1213
 
815
- def set_contextual_commands(
816
- self, commands: dict[str, str] | None, *, include_global: bool = True
817
- ) -> None:
1214
+ def set_contextual_commands(self, commands: dict[str, str] | None, *, include_global: bool = True) -> None:
818
1215
  """Set context-specific commands that should appear in completions."""
819
1216
  self._contextual_commands = dict(commands or {})
820
1217
  self._contextual_include_global = include_global if commands else True
@@ -828,15 +1225,18 @@ class SlashSession:
828
1225
  return self._contextual_include_global
829
1226
 
830
1227
  def _remember_agent(self, agent: Any) -> None: # type: ignore[no-any-return]
1228
+ """Remember an agent in recent agents list.
1229
+
1230
+ Args:
1231
+ agent: Agent object to remember.
1232
+ """
831
1233
  agent_data = {
832
1234
  "id": str(getattr(agent, "id", "")),
833
1235
  "name": getattr(agent, "name", "") or "",
834
1236
  "type": getattr(agent, "type", "") or "",
835
1237
  }
836
1238
 
837
- self.recent_agents = [
838
- a for a in self.recent_agents if a.get("id") != agent_data["id"]
839
- ]
1239
+ self.recent_agents = [a for a in self.recent_agents if a.get("id") != agent_data["id"]]
840
1240
  self.recent_agents.insert(0, agent_data)
841
1241
  self.recent_agents = self.recent_agents[:5]
842
1242
 
@@ -847,6 +1247,13 @@ class SlashSession:
847
1247
  focus_agent: bool = False,
848
1248
  initial: bool = False,
849
1249
  ) -> None:
1250
+ """Render the session header with branding and status.
1251
+
1252
+ Args:
1253
+ active_agent: Optional active agent to display.
1254
+ focus_agent: Whether to focus on agent display.
1255
+ initial: Whether this is the initial render.
1256
+ """
850
1257
  if focus_agent and active_agent is not None:
851
1258
  self._render_focused_agent_header(active_agent)
852
1259
  return
@@ -889,11 +1296,10 @@ class SlashSession:
889
1296
 
890
1297
  header_grid = self._build_header_grid(agent_info, transcript_status)
891
1298
  keybar = self._build_keybar()
892
-
893
1299
  header_grid.add_row(keybar, "")
894
- self.console.print(
895
- AIPPanel(header_grid, title="Agent Session", border_style=PRIMARY)
896
- )
1300
+
1301
+ # Agent-scoped commands like /runs will appear in /help, no need to duplicate here
1302
+ self.console.print(AIPPanel(header_grid, title="Agent Session", border_style=PRIMARY))
897
1303
 
898
1304
  def _get_agent_info(self, active_agent: Any) -> dict[str, str]:
899
1305
  """Extract agent information for display."""
@@ -914,9 +1320,7 @@ class SlashSession:
914
1320
  has_transcript = bool(payload and manifest and manifest.get("run_id"))
915
1321
  run_id = (manifest or {}).get("run_id")
916
1322
  transcript_ready = (
917
- has_transcript
918
- and latest_agent_id == agent_id
919
- and self._agent_transcript_ready.get(agent_id) == run_id
1323
+ has_transcript and latest_agent_id == agent_id and self._agent_transcript_ready.get(agent_id) == run_id
920
1324
  )
921
1325
 
922
1326
  return {
@@ -925,9 +1329,7 @@ class SlashSession:
925
1329
  "run_id": run_id,
926
1330
  }
927
1331
 
928
- def _build_header_grid(
929
- self, agent_info: dict[str, str], transcript_status: dict[str, Any]
930
- ) -> AIPGrid:
1332
+ def _build_header_grid(self, agent_info: dict[str, str], transcript_status: dict[str, Any]) -> AIPGrid:
931
1333
  """Build the main header grid with agent information."""
932
1334
  header_grid = AIPGrid(expand=True)
933
1335
  header_grid.add_column(ratio=3)
@@ -938,11 +1340,7 @@ class SlashSession:
938
1340
  f"[{ACCENT_STYLE}]{agent_info['id']}[/]"
939
1341
  )
940
1342
  status_line = f"[{SUCCESS_STYLE}]ready[/]"
941
- status_line += (
942
- " · transcript ready"
943
- if transcript_status["transcript_ready"]
944
- else " · transcript pending"
945
- )
1343
+ status_line += " · transcript ready" if transcript_status["transcript_ready"] else " · transcript pending"
946
1344
  header_grid.add_row(primary_line, status_line)
947
1345
 
948
1346
  if agent_info["description"]:
@@ -959,30 +1357,39 @@ class SlashSession:
959
1357
  keybar.add_column(justify="left", ratio=1)
960
1358
  keybar.add_column(justify="left", ratio=1)
961
1359
  keybar.add_column(justify="left", ratio=1)
962
- keybar.add_column(justify="left", ratio=1)
963
1360
 
964
1361
  keybar.add_row(
965
- format_command_hint("/help", "Show commands") or "",
966
- format_command_hint("/details", "Agent config") or "",
1362
+ format_command_hint(HELP_COMMAND, "Show commands") or "",
1363
+ format_command_hint("/details", "Agent config (expand prompt)") or "",
967
1364
  format_command_hint("/exit", "Back") or "",
968
- "[bold]Alt+Enter[/bold] [dim]Line break[/dim]",
969
1365
  )
970
1366
 
971
1367
  return keybar
972
1368
 
973
- def _render_main_header(
974
- self, active_agent: Any | None = None, *, full: bool = False
975
- ) -> None:
1369
+ def _render_main_header(self, active_agent: Any | None = None, *, full: bool = False) -> None:
976
1370
  """Render the main AIP environment header."""
977
1371
  config = self._load_config()
978
1372
 
1373
+ account_name, account_host, env_lock = self._get_account_context()
979
1374
  api_url = self._get_api_url(config)
980
- status = "Configured" if config.get("api_key") else "Not configured"
981
1375
 
982
- segments = [
983
- f"[dim]Base URL[/dim] • {api_url or 'Not configured'}",
984
- f"[dim]Credentials[/dim] • {status}",
985
- ]
1376
+ host_display = account_host or "Not configured"
1377
+ account_segment = f"[dim]Account[/dim] • {account_name} ({host_display})"
1378
+ if env_lock:
1379
+ account_segment += " 🔒"
1380
+
1381
+ segments = [account_segment]
1382
+
1383
+ if api_url:
1384
+ base_label = "[dim]Base URL[/dim]"
1385
+ if env_lock:
1386
+ base_label = "[dim]Base URL (env)[/dim]"
1387
+ # Always show Base URL when env-lock is active to reveal overrides
1388
+ if env_lock or api_url != account_host:
1389
+ segments.append(f"{base_label} • {api_url}")
1390
+ elif not api_url:
1391
+ segments.append("[dim]Base URL[/dim] • Not configured")
1392
+
986
1393
  agent_info = self._build_agent_status_line(active_agent)
987
1394
  if agent_info:
988
1395
  segments.append(agent_info)
@@ -990,7 +1397,7 @@ class SlashSession:
990
1397
  rendered_line = " ".join(segments)
991
1398
 
992
1399
  if full:
993
- self.console.print(rendered_line)
1400
+ self.console.print(rendered_line, soft_wrap=False)
994
1401
  return
995
1402
 
996
1403
  status_bar = AIPGrid(expand=True)
@@ -1005,12 +1412,23 @@ class SlashSession:
1005
1412
  )
1006
1413
  )
1007
1414
 
1008
- def _get_api_url(self, config: dict[str, Any]) -> str | None:
1009
- """Get the API URL from various sources."""
1010
- api_url = None
1011
- if isinstance(self.ctx.obj, dict):
1012
- api_url = self.ctx.obj.get("api_url")
1013
- return api_url or config.get("api_url") or os.getenv("AIP_API_URL")
1415
+ def _get_api_url(self, _config: dict[str, Any] | None = None) -> str | None:
1416
+ """Get the API URL from context or account store (CLI/palette ignores env credentials)."""
1417
+ return resolve_api_url_from_context(self.ctx)
1418
+
1419
+ def _get_account_context(self) -> tuple[str, str, bool]:
1420
+ """Return active account name, host, and env-lock flag."""
1421
+ try:
1422
+ store = get_account_store()
1423
+ active = store.get_active_account() or "default"
1424
+ account = store.get_account(active) if hasattr(store, "get_account") else None
1425
+ host = ""
1426
+ if account:
1427
+ host = account.get("api_url", "")
1428
+ env_lock = env_credentials_present()
1429
+ return active, host, env_lock
1430
+ except Exception:
1431
+ return "default", "", env_credentials_present()
1014
1432
 
1015
1433
  def _build_agent_status_line(self, active_agent: Any | None) -> str | None:
1016
1434
  """Return a short status line about the active or recent agent."""
@@ -1025,35 +1443,96 @@ class SlashSession:
1025
1443
  return None
1026
1444
 
1027
1445
  def _show_default_quick_actions(self) -> None:
1028
- hints: list[tuple[str | None, str]] = [
1029
- (
1030
- command_hint("status", slash_command="status", ctx=self.ctx),
1031
- "Connection check",
1032
- ),
1033
- (
1034
- command_hint("agents list", slash_command="agents", ctx=self.ctx),
1035
- "Browse agents",
1036
- ),
1037
- (
1038
- command_hint("help", slash_command="help", ctx=self.ctx),
1039
- "Show all commands",
1040
- ),
1041
- ]
1042
- filtered = [(cmd, desc) for cmd, desc in hints if cmd]
1043
- if filtered:
1044
- self._show_quick_actions(filtered, title="Quick actions")
1446
+ """Show simplified help hint to discover commands."""
1447
+ self.console.print(f"[dim]{'─' * 40}[/]")
1448
+ help_hint = format_command_hint(HELP_COMMAND, "Show all commands") or HELP_COMMAND
1449
+ self.console.print(f" {help_hint}")
1045
1450
  self._default_actions_shown = True
1046
1451
 
1452
+ def _collect_scoped_new_action_hints(self, scope: str) -> list[tuple[str, str]]:
1453
+ """Return new quick action hints filtered by scope."""
1454
+ scoped_actions = [action for action in NEW_QUICK_ACTIONS if _quick_action_scope(action) == scope]
1455
+ # Don't highlight with sparkle emoji in quick actions display - it will show in command palette instead
1456
+ return self._collect_quick_action_hints(scoped_actions)
1457
+
1458
+ def _collect_quick_action_hints(
1459
+ self,
1460
+ actions: Iterable[dict[str, Any]],
1461
+ ) -> list[tuple[str, str]]:
1462
+ """Collect quick action hints from action definitions.
1463
+
1464
+ Args:
1465
+ actions: Iterable of action dictionaries.
1466
+
1467
+ Returns:
1468
+ List of (command, description) tuples.
1469
+ """
1470
+ collected: list[tuple[str, str]] = []
1471
+
1472
+ def sort_key(payload: dict[str, Any]) -> tuple[int, str]:
1473
+ priority = int(payload.get("priority", 0))
1474
+ label = str(payload.get("slash") or payload.get("cli") or "")
1475
+ return (-priority, label.lower())
1476
+
1477
+ for action in sorted(actions, key=sort_key):
1478
+ hint = self._build_quick_action_hint(action)
1479
+ if hint:
1480
+ collected.append(hint)
1481
+ return collected
1482
+
1483
+ def _build_quick_action_hint(
1484
+ self,
1485
+ action: dict[str, Any],
1486
+ ) -> tuple[str, str] | None:
1487
+ """Build a quick action hint from an action definition.
1488
+
1489
+ Args:
1490
+ action: Action dictionary.
1491
+
1492
+ Returns:
1493
+ Tuple of (command, description) or None.
1494
+ """
1495
+ command = command_hint(action.get("cli"), slash_command=action.get("slash"), ctx=self.ctx)
1496
+ if not command:
1497
+ return None
1498
+ description = action.get("description", "")
1499
+ # Don't include tag or sparkle emoji in quick actions display
1500
+ # The NEW tag will only show in the command dropdown (help text)
1501
+ return command, description
1502
+
1503
+ def _render_quick_action_group(self, hints: list[tuple[str, str]], title: str) -> None:
1504
+ """Render a group of quick action hints.
1505
+
1506
+ Args:
1507
+ hints: List of (command, description) tuples.
1508
+ title: Group title.
1509
+ """
1510
+ for line in self._format_quick_action_lines(hints, title):
1511
+ self.console.print(line)
1512
+
1513
+ def _chunk_tokens(self, tokens: list[str], *, size: int) -> Iterable[list[str]]:
1514
+ """Chunk tokens into groups of specified size.
1515
+
1516
+ Args:
1517
+ tokens: List of tokens to chunk.
1518
+ size: Size of each chunk.
1519
+
1520
+ Yields:
1521
+ Lists of tokens.
1522
+ """
1523
+ for index in range(0, len(tokens), size):
1524
+ yield tokens[index : index + size]
1525
+
1047
1526
  def _render_home_hint(self) -> None:
1527
+ """Render hint text for home screen."""
1048
1528
  if self._home_hint_shown:
1049
1529
  return
1050
- hint_lines = [
1051
- f"[{HINT_PREFIX_STYLE}]Hint:[/]",
1052
- f" Type {format_command_hint('/') or '/'} to explore commands",
1053
- " Press [dim]Ctrl+C[/] to cancel the current entry",
1054
- " Press [dim]Ctrl+D[/] to quit",
1055
- ]
1056
- self.console.print("\n".join(hint_lines))
1530
+ hint_text = (
1531
+ f"[{HINT_PREFIX_STYLE}]Hint:[/] "
1532
+ f"Type {format_command_hint('/') or '/'} to explore commands · "
1533
+ "Press [dim]Ctrl+D[/] to quit"
1534
+ )
1535
+ self.console.print(hint_text)
1057
1536
  self._home_hint_shown = True
1058
1537
 
1059
1538
  def _show_quick_actions(
@@ -1063,36 +1542,99 @@ class SlashSession:
1063
1542
  title: str = "Quick actions",
1064
1543
  inline: bool = False,
1065
1544
  ) -> None:
1066
- hint_list = [
1067
- (command, description) for command, description in hints if command
1068
- ]
1545
+ """Show quick action hints.
1546
+
1547
+ Args:
1548
+ hints: Iterable of (command, description) tuples.
1549
+ title: Title for the hints.
1550
+ inline: Whether to render inline or in a panel.
1551
+ """
1552
+ hint_list = self._normalize_quick_action_hints(hints)
1069
1553
  if not hint_list:
1070
1554
  return
1071
1555
 
1072
1556
  if inline:
1073
- lines: list[str] = []
1074
- for command, description in hint_list:
1075
- formatted = format_command_hint(command, description)
1076
- if formatted:
1077
- lines.append(formatted)
1078
- if lines:
1079
- self.console.print("\n".join(lines))
1557
+ self._render_inline_quick_actions(hint_list, title)
1080
1558
  return
1081
1559
 
1560
+ self._render_panel_quick_actions(hint_list, title)
1561
+
1562
+ def _normalize_quick_action_hints(self, hints: Iterable[tuple[str, str]]) -> list[tuple[str, str]]:
1563
+ """Normalize quick action hints by filtering out empty commands.
1564
+
1565
+ Args:
1566
+ hints: Iterable of (command, description) tuples.
1567
+
1568
+ Returns:
1569
+ List of normalized hints.
1570
+ """
1571
+ return [(command, description) for command, description in hints if command]
1572
+
1573
+ def _render_inline_quick_actions(self, hint_list: list[tuple[str, str]], title: str) -> None:
1574
+ """Render quick actions inline.
1575
+
1576
+ Args:
1577
+ hint_list: List of (command, description) tuples.
1578
+ title: Title for the hints.
1579
+ """
1580
+ tokens: list[str] = []
1581
+ for command, description in hint_list:
1582
+ formatted = format_command_hint(command, description)
1583
+ if formatted:
1584
+ tokens.append(formatted)
1585
+ if not tokens:
1586
+ return
1587
+ prefix = f"[dim]{title}:[/]" if title else ""
1588
+ body = " ".join(tokens)
1589
+ text = f"{prefix} {body}" if prefix else body
1590
+ self.console.print(text.strip())
1591
+
1592
+ def _render_panel_quick_actions(self, hint_list: list[tuple[str, str]], title: str) -> None:
1593
+ """Render quick actions in a panel.
1594
+
1595
+ Args:
1596
+ hint_list: List of (command, description) tuples.
1597
+ title: Panel title.
1598
+ """
1082
1599
  body_lines: list[Text] = []
1083
1600
  for command, description in hint_list:
1084
1601
  formatted = format_command_hint(command, description)
1085
1602
  if formatted:
1086
1603
  body_lines.append(Text.from_markup(formatted))
1087
-
1604
+ if not body_lines:
1605
+ return
1088
1606
  panel_content = Group(*body_lines)
1089
- self.console.print(
1090
- AIPPanel(
1091
- panel_content, title=title, border_style=SECONDARY_LIGHT, expand=False
1092
- )
1093
- )
1607
+ self.console.print(AIPPanel(panel_content, title=title, border_style=SECONDARY_LIGHT, expand=False))
1608
+
1609
+ def _format_quick_action_lines(self, hints: list[tuple[str, str]], title: str) -> list[str]:
1610
+ """Return formatted lines for quick action hints."""
1611
+ if not hints:
1612
+ return []
1613
+ formatted_tokens: list[str] = []
1614
+ for command, description in hints:
1615
+ formatted = format_command_hint(command, description)
1616
+ if formatted:
1617
+ formatted_tokens.append(f"• {formatted}")
1618
+ if not formatted_tokens:
1619
+ return []
1620
+ lines: list[str] = []
1621
+ # Use vertical layout (1 per line) for better readability
1622
+ chunks = list(self._chunk_tokens(formatted_tokens, size=1))
1623
+ prefix = f"[dim]{title}[/dim]\n " if title else ""
1624
+ for idx, chunk in enumerate(chunks):
1625
+ row = " ".join(chunk)
1626
+ if idx == 0:
1627
+ lines.append(f"{prefix}{row}" if prefix else row)
1628
+ else:
1629
+ lines.append(f" {row}")
1630
+ return lines
1094
1631
 
1095
1632
  def _load_config(self) -> dict[str, Any]:
1633
+ """Load configuration with caching.
1634
+
1635
+ Returns:
1636
+ Configuration dictionary.
1637
+ """
1096
1638
  if self._config_cache is None:
1097
1639
  try:
1098
1640
  self._config_cache = load_config() or {}
@@ -1100,9 +1642,17 @@ class SlashSession:
1100
1642
  self._config_cache = {}
1101
1643
  return self._config_cache
1102
1644
 
1103
- def _resolve_agent_from_ref(
1104
- self, client: Any, available_agents: list[Any], ref: str
1105
- ) -> Any | None:
1645
+ def _resolve_agent_from_ref(self, client: Any, available_agents: list[Any], ref: str) -> Any | None:
1646
+ """Resolve an agent from a reference string.
1647
+
1648
+ Args:
1649
+ client: API client instance.
1650
+ available_agents: List of available agents.
1651
+ ref: Reference string (ID or name).
1652
+
1653
+ Returns:
1654
+ Resolved agent or None.
1655
+ """
1106
1656
  ref = ref.strip()
1107
1657
  if not ref:
1108
1658
  return None