vibecore 0.4.0__tar.gz → 0.4.1__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.

Potentially problematic release.


This version of vibecore might be problematic. Click here for more details.

Files changed (86) hide show
  1. {vibecore-0.4.0 → vibecore-0.4.1}/PKG-INFO +1 -1
  2. {vibecore-0.4.0 → vibecore-0.4.1}/pyproject.toml +1 -1
  3. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/main.py +1 -1
  4. {vibecore-0.4.0 → vibecore-0.4.1}/.gitignore +0 -0
  5. {vibecore-0.4.0 → vibecore-0.4.1}/LICENSE +0 -0
  6. {vibecore-0.4.0 → vibecore-0.4.1}/README.md +0 -0
  7. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/__init__.py +0 -0
  8. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/agents/default.py +0 -0
  9. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/agents/prompts.py +0 -0
  10. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/agents/task.py +0 -0
  11. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/__init__.py +0 -0
  12. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/config.py +0 -0
  13. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/interceptor.py +0 -0
  14. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/manager.py +0 -0
  15. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/models.py +0 -0
  16. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/oauth_flow.py +0 -0
  17. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/pkce.py +0 -0
  18. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/storage.py +0 -0
  19. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/auth/token_manager.py +0 -0
  20. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/cli.py +0 -0
  21. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/context.py +0 -0
  22. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/flow.py +0 -0
  23. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/handlers/__init__.py +0 -0
  24. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/handlers/stream_handler.py +0 -0
  25. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/main.tcss +0 -0
  26. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/mcp/__init__.py +0 -0
  27. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/mcp/manager.py +0 -0
  28. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/mcp/server_wrapper.py +0 -0
  29. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/models/__init__.py +0 -0
  30. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/models/anthropic.py +0 -0
  31. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/models/anthropic_auth.py +0 -0
  32. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/prompts/common_system_prompt.txt +0 -0
  33. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/py.typed +0 -0
  34. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/session/__init__.py +0 -0
  35. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/session/file_lock.py +0 -0
  36. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/session/jsonl_session.py +0 -0
  37. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/session/loader.py +0 -0
  38. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/session/path_utils.py +0 -0
  39. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/settings.py +0 -0
  40. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/__init__.py +0 -0
  41. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/base.py +0 -0
  42. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/file/__init__.py +0 -0
  43. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/file/executor.py +0 -0
  44. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/file/tools.py +0 -0
  45. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/file/utils.py +0 -0
  46. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/path_validator.py +0 -0
  47. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/python/__init__.py +0 -0
  48. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/python/backends/__init__.py +0 -0
  49. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/python/backends/terminal_backend.py +0 -0
  50. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/python/helpers.py +0 -0
  51. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/python/manager.py +0 -0
  52. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/python/tools.py +0 -0
  53. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/shell/__init__.py +0 -0
  54. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/shell/executor.py +0 -0
  55. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/shell/tools.py +0 -0
  56. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/task/__init__.py +0 -0
  57. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/task/executor.py +0 -0
  58. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/task/tools.py +0 -0
  59. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/todo/__init__.py +0 -0
  60. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/todo/manager.py +0 -0
  61. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/todo/models.py +0 -0
  62. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/todo/tools.py +0 -0
  63. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/webfetch/__init__.py +0 -0
  64. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/webfetch/executor.py +0 -0
  65. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/webfetch/models.py +0 -0
  66. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/webfetch/tools.py +0 -0
  67. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/__init__.py +0 -0
  68. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/base.py +0 -0
  69. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/ddgs/__init__.py +0 -0
  70. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/ddgs/backend.py +0 -0
  71. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/executor.py +0 -0
  72. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/models.py +0 -0
  73. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/tools/websearch/tools.py +0 -0
  74. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/utils/__init__.py +0 -0
  75. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/utils/text.py +0 -0
  76. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/core.py +0 -0
  77. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/core.tcss +0 -0
  78. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/expandable.py +0 -0
  79. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/expandable.tcss +0 -0
  80. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/info.py +0 -0
  81. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/info.tcss +0 -0
  82. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/messages.py +0 -0
  83. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/messages.tcss +0 -0
  84. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/tool_message_factory.py +0 -0
  85. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/tool_messages.py +0 -0
  86. {vibecore-0.4.0 → vibecore-0.4.1}/src/vibecore/widgets/tool_messages.tcss +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vibecore
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Build your own AI-powered automation tools in the terminal with this extensible agent framework
5
5
  Project-URL: Homepage, https://github.com/serialx/vibecore
6
6
  Project-URL: Repository, https://github.com/serialx/vibecore
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "vibecore"
3
- version = "0.4.0"
3
+ version = "0.4.1"
4
4
  description = "Build your own AI-powered automation tools in the terminal with this extensible agent framework"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -269,7 +269,7 @@ class VibecoreApp(App):
269
269
  if self.agent_status == "waiting_user_input":
270
270
  self.message_queue.append(event.text)
271
271
  self.user_input_event.set()
272
- if self.agent_status == "running":
272
+ elif self.agent_status == "running":
273
273
  # If agent is running, queue the message
274
274
  self.message_queue.append(event.text)
275
275
  log(f"Message queued: {event.text}")
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes