applied-cli 0.5.27__tar.gz → 0.5.28__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: applied-cli
3
- Version: 0.5.27
3
+ Version: 0.5.28
4
4
  Summary: CLI and shared client library for Applied Labs AI support agents
5
5
  Author: Applied Labs
6
6
  License-Expression: MIT
@@ -281,6 +281,42 @@ def knowledge(
281
281
  typer.echo(result)
282
282
 
283
283
 
284
+ # -----------------------------------------------------------------------------
285
+ # Flow commands
286
+ # -----------------------------------------------------------------------------
287
+
288
+
289
+ @app.command()
290
+ def flows(
291
+ agent_id: str = typer.Option(None, "--agent", "-a", help="Filter by agent ID"),
292
+ status: str = typer.Option(
293
+ None, "--status", "-s", help="Filter by status: Active, Draft, Archived"
294
+ ),
295
+ format: str = typer.Option(
296
+ "csv", "--format", "-f", help="Output format: csv or json"
297
+ ),
298
+ ) -> None:
299
+ """List flows."""
300
+ client = get_client()
301
+ result = asyncio.run(
302
+ tools.flow_list(client, agent_id=agent_id, status=status, output_format=format)
303
+ )
304
+ typer.echo(result)
305
+
306
+
307
+ @app.command()
308
+ def flow(
309
+ id: str = typer.Argument(..., help="Flow ID"),
310
+ format: str = typer.Option(
311
+ "summary", "--format", "-f", help="Output format: summary, full, or json"
312
+ ),
313
+ ) -> None:
314
+ """Get a single flow with its graph (nodes and edges)."""
315
+ client = get_client()
316
+ result = asyncio.run(tools.flow_get(client, id, output_format=format))
317
+ typer.echo(result)
318
+
319
+
284
320
  def main() -> None:
285
321
  """CLI entrypoint."""
286
322
  app()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: applied-cli
3
- Version: 0.5.27
3
+ Version: 0.5.28
4
4
  Summary: CLI and shared client library for Applied Labs AI support agents
5
5
  Author: Applied Labs
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "applied-cli"
3
- version = "0.5.27"
3
+ version = "0.5.28"
4
4
  description = "CLI and shared client library for Applied Labs AI support agents"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.11"
File without changes
File without changes