2b-agent 0.2.1__tar.gz → 0.2.2__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 (50) hide show
  1. {2b_agent-0.2.1 → 2b_agent-0.2.2}/.gitignore +1 -0
  2. {2b_agent-0.2.1 → 2b_agent-0.2.2}/PKG-INFO +1 -1
  3. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/__init__.py +1 -1
  4. {2b_agent-0.2.1 → 2b_agent-0.2.2}/.github/workflows/release.yml +0 -0
  5. {2b_agent-0.2.1 → 2b_agent-0.2.2}/LICENSE +0 -0
  6. {2b_agent-0.2.1 → 2b_agent-0.2.2}/NOTICE +0 -0
  7. {2b_agent-0.2.1 → 2b_agent-0.2.2}/README.md +0 -0
  8. {2b_agent-0.2.1 → 2b_agent-0.2.2}/install.sh +0 -0
  9. {2b_agent-0.2.1 → 2b_agent-0.2.2}/pyproject.toml +0 -0
  10. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/app_tui.py +0 -0
  11. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/banner.py +0 -0
  12. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/cli.py +0 -0
  13. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/commands.py +0 -0
  14. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/config.py +0 -0
  15. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/conversation.py +0 -0
  16. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/diagnostics.py +0 -0
  17. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/doctor.py +0 -0
  18. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/lsp.py +0 -0
  19. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/mcp_client.py +0 -0
  20. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/orchestrator.py +0 -0
  21. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/planparse.py +0 -0
  22. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/prompt.py +0 -0
  23. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/providers/__init__.py +0 -0
  24. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/providers/anthropic.py +0 -0
  25. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/providers/base.py +0 -0
  26. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/providers/google.py +0 -0
  27. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/providers/ollama.py +0 -0
  28. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/providers/openai_compat.py +0 -0
  29. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/rawkey.py +0 -0
  30. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/registry.py +0 -0
  31. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/repomap.py +0 -0
  32. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/session.py +0 -0
  33. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/symbols.py +0 -0
  34. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/theme.py +0 -0
  35. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/tools.py +0 -0
  36. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/toolspec.py +0 -0
  37. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/tui.py +0 -0
  38. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/uninstall.py +0 -0
  39. {2b_agent-0.2.1 → 2b_agent-0.2.2}/src/two_b/update.py +0 -0
  40. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/spike_ctrl_b.py +0 -0
  41. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_default_model.py +0 -0
  42. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_diagnostics.py +0 -0
  43. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_doctor.py +0 -0
  44. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_edit_file.py +0 -0
  45. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_lsp.py +0 -0
  46. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_mcp_resolver.py +0 -0
  47. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_search_semantics.py +0 -0
  48. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_uninstall.py +0 -0
  49. {2b_agent-0.2.1 → 2b_agent-0.2.2}/tests/test_update.py +0 -0
  50. {2b_agent-0.2.1 → 2b_agent-0.2.2}/uv.lock +0 -0
@@ -5,3 +5,4 @@ __pycache__/
5
5
  dist/
6
6
  build/
7
7
  .DS_Store
8
+ prepush.sh
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: 2b-agent
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A local-first coding agent that keeps small local models focused instead of hallucinating.
5
5
  License-Expression: Apache-2.0
6
6
  License-File: LICENSE
@@ -5,4 +5,4 @@ host keeps the model's world simple — a small, native tool schema over the
5
5
  provider's own wire format, with all orchestration complexity kept host-side.
6
6
  """
7
7
 
8
- __version__ = "0.2.1"
8
+ __version__ = "0.2.2"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes