kiwi-code 0.0.37__tar.gz → 0.0.38__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.
Files changed (54) hide show
  1. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/PKG-INFO +1 -1
  2. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/pyproject.toml +1 -1
  3. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/commands.py +1 -1
  4. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/slash_commands.py +1 -1
  5. kiwi_code-0.0.38/tests/test_slash_commands.py +11 -0
  6. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/uv.lock +1 -1
  7. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/.github/workflows/publish.yml +0 -0
  8. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/.github/workflows/test.yml +0 -0
  9. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/.gitignore +0 -0
  10. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/.python-version +0 -0
  11. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/CLAUDE.md +0 -0
  12. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/Makefile +0 -0
  13. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/README.md +0 -0
  14. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/__init__.py +0 -0
  15. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/auth.py +0 -0
  16. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/cli.py +0 -0
  17. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/client.py +0 -0
  18. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/logger.py +0 -0
  19. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/models.py +0 -0
  20. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/runtime_manager.py +0 -0
  21. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_cli/server.py +0 -0
  22. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_runtime/__init__.py +0 -0
  23. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_runtime/__main__.py +0 -0
  24. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_runtime/main.py +0 -0
  25. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_runtime/snake_game/.gitignore +0 -0
  26. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_runtime/snake_game/requirements.txt +0 -0
  27. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/__init__.py +0 -0
  28. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/inline_file_picker.py +0 -0
  29. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/main.py +0 -0
  30. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/random_words.py +0 -0
  31. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/runtime_agent.py +0 -0
  32. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/__init__.py +0 -0
  33. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/attach_content.py +0 -0
  34. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/command_result.py +0 -0
  35. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/dashboard.py +0 -0
  36. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/file_browser.py +0 -0
  37. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/help.py +0 -0
  38. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/id_picker.py +0 -0
  39. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/login.py +0 -0
  40. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/runtime_cleanup.py +0 -0
  41. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/runtime_logs.py +0 -0
  42. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/screens/slash_picker.py +0 -0
  43. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/status_words.py +0 -0
  44. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/src/kiwi_tui/widgets.py +0 -0
  45. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/test_hello.py +0 -0
  46. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/__init__.py +0 -0
  47. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/conftest.py +0 -0
  48. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_cli_help.py +0 -0
  49. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_imports.py +0 -0
  50. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_reexec_kiwi.py +0 -0
  51. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_runtime_log_trimming.py +0 -0
  52. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_tokens.py +0 -0
  53. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_tui_headless.py +0 -0
  54. {kiwi_code-0.0.37 → kiwi_code-0.0.38}/tests/test_tui_palette.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kiwi-code
3
- Version: 0.0.37
3
+ Version: 0.0.38
4
4
  Summary: A textual-based terminal user interface application
5
5
  Project-URL: Homepage, https://meetkiwi.ai
6
6
  Project-URL: Repository, https://github.com/jetoslabs/kiwi-code
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "kiwi-code"
3
- version = "0.0.37"
3
+ version = "0.0.38"
4
4
  description = "A textual-based terminal user interface application"
5
5
  readme = {file = "README.md", content-type = "text/markdown"}
6
6
  requires-python = ">=3.11,<4.0"
@@ -320,7 +320,7 @@ Runtime:
320
320
  Query:
321
321
  /actions list [--name NAME] [--limit N]
322
322
  /actions get <id>
323
- /autocode-select Select one of the 3 special AutoCode actions
323
+ /autocode-select Choose the version of AutoCode you wish to use
324
324
  /runs list [--action-id ID] [--status STATUS] [--limit N]
325
325
  /runs get <id>
326
326
  /graphs list [--name NAME] [--limit N]
@@ -20,7 +20,7 @@ SLASH_COMMANDS: list[SlashCommand] = [
20
20
  SlashCommand("Session", "/status", "Show current action & run", "/status"),
21
21
  SlashCommand("Session", "/cancel", "Cancel active request", "/cancel"),
22
22
  SlashCommand("Session", "/use <action_id>", "Switch to a different action", "/use "),
23
- SlashCommand("Session", "/autocode-select", "Pick one of the 3 special AutoCode actions", "/autocode-select"),
23
+ SlashCommand("Session", "/autocode-select", "Choose the version of AutoCode you wish to use", "/autocode-select"),
24
24
  SlashCommand("Session", "/name <new name>", "Rename the current run (action run or graph run)", "/name "),
25
25
  SlashCommand("Session", "/continue <run_id>", "Continue an existing run", "/continue "),
26
26
 
@@ -0,0 +1,11 @@
1
+ from kiwi_cli.commands import HELP_TEXT
2
+ from kiwi_tui.slash_commands import SLASH_COMMANDS
3
+
4
+
5
+ def test_slash_commands_lists_autocode_select_with_updated_description() -> None:
6
+ command = next(cmd for cmd in SLASH_COMMANDS if cmd.template == "/autocode-select")
7
+ assert command.description == "Choose the version of AutoCode you wish to use"
8
+
9
+
10
+ def test_cli_help_text_lists_autocode_select_with_updated_description() -> None:
11
+ assert "/autocode-select Choose the version of AutoCode you wish to use" in HELP_TEXT
@@ -397,7 +397,7 @@ wheels = [
397
397
 
398
398
  [[package]]
399
399
  name = "kiwi-code"
400
- version = "0.0.37"
400
+ version = "0.0.38"
401
401
  source = { editable = "." }
402
402
  dependencies = [
403
403
  { name = "autobots-client" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes