todo-agent 0.1.0__tar.gz → 0.1.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.
Files changed (55) hide show
  1. {todo_agent-0.1.0 → todo_agent-0.1.1}/PKG-INFO +5 -7
  2. {todo_agent-0.1.0 → todo_agent-0.1.1}/pyproject.toml +4 -6
  3. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/_version.py +3 -3
  4. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/PKG-INFO +5 -7
  5. {todo_agent-0.1.0 → todo_agent-0.1.1}/.gitignore +0 -0
  6. {todo_agent-0.1.0 → todo_agent-0.1.1}/LICENSE +0 -0
  7. {todo_agent-0.1.0 → todo_agent-0.1.1}/MANIFEST.in +0 -0
  8. {todo_agent-0.1.0 → todo_agent-0.1.1}/Makefile +0 -0
  9. {todo_agent-0.1.0 → todo_agent-0.1.1}/README.md +0 -0
  10. {todo_agent-0.1.0 → todo_agent-0.1.1}/docs/publishing.md +0 -0
  11. {todo_agent-0.1.0 → todo_agent-0.1.1}/requirements-dev.txt +0 -0
  12. {todo_agent-0.1.0 → todo_agent-0.1.1}/requirements.txt +0 -0
  13. {todo_agent-0.1.0 → todo_agent-0.1.1}/setup.cfg +0 -0
  14. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/__init__.py +0 -0
  15. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_core/__init__.py +0 -0
  16. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_core/test_conversation_manager.py +0 -0
  17. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_core/test_todo_manager.py +0 -0
  18. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/__init__.py +0 -0
  19. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_config.py +0 -0
  20. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_inference.py +0 -0
  21. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_llm_client_factory.py +0 -0
  22. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_ollama_client.py +0 -0
  23. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_openrouter_client.py +0 -0
  24. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_todo_shell.py +0 -0
  25. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_token_counter.py +0 -0
  26. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_interface/__init__.py +0 -0
  27. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_interface/test_cli.py +0 -0
  28. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_interface/test_tools.py +0 -0
  29. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_logger.py +0 -0
  30. {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_main.py +0 -0
  31. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/__init__.py +0 -0
  32. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/__init__.py +0 -0
  33. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/conversation_manager.py +0 -0
  34. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/exceptions.py +0 -0
  35. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/todo_manager.py +0 -0
  36. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/__init__.py +0 -0
  37. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/config.py +0 -0
  38. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/inference.py +0 -0
  39. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/llm_client.py +0 -0
  40. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/llm_client_factory.py +0 -0
  41. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/logger.py +0 -0
  42. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/ollama_client.py +0 -0
  43. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/openrouter_client.py +0 -0
  44. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/prompts/system_prompt.txt +0 -0
  45. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/todo_shell.py +0 -0
  46. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/token_counter.py +0 -0
  47. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/interface/__init__.py +0 -0
  48. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/interface/cli.py +0 -0
  49. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/interface/tools.py +0 -0
  50. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/main.py +0 -0
  51. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/SOURCES.txt +0 -0
  52. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/dependency_links.txt +0 -0
  53. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/entry_points.txt +0 -0
  54. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/requires.txt +0 -0
  55. {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/top_level.txt +0 -0
@@ -1,22 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: todo-agent
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A natural language interface for todo.sh task management
5
5
  Author: codeprimate
6
6
  Maintainer: codeprimate
7
7
  License-Expression: GPL-3.0
8
- Project-URL: Homepage, https://github.com/codeprimate/todo_agent
9
- Project-URL: Documentation, https://github.com/codeprimate/todo_agent#readme
10
- Project-URL: Repository, https://github.com/codeprimate/todo_agent
11
- Project-URL: Bug Tracker, https://github.com/codeprimate/todo_agent/issues
8
+ Project-URL: Homepage, https://github.com/codeprimate/todo-agent
9
+ Project-URL: Documentation, https://github.com/codeprimate/todo-agent#readme
10
+ Project-URL: Repository, https://github.com/codeprimate/todo-agent
11
+ Project-URL: Bug Tracker, https://github.com/codeprimate/todo-agent/issues
12
12
  Keywords: todo,task-management,llm,natural-language,cli
13
13
  Classifier: Development Status :: 3 - Alpha
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Intended Audience :: End Users/Desktop
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
22
20
  Classifier: Programming Language :: Python :: 3.12
@@ -21,8 +21,6 @@ classifiers = [
21
21
  "Intended Audience :: End Users/Desktop",
22
22
  "Operating System :: OS Independent",
23
23
  "Programming Language :: Python :: 3",
24
- "Programming Language :: Python :: 3.8",
25
- "Programming Language :: Python :: 3.9",
26
24
  "Programming Language :: Python :: 3.10",
27
25
  "Programming Language :: Python :: 3.11",
28
26
  "Programming Language :: Python :: 3.12",
@@ -63,10 +61,10 @@ dev = [
63
61
  todo-agent = "todo_agent.main:main"
64
62
 
65
63
  [project.urls]
66
- Homepage = "https://github.com/codeprimate/todo_agent"
67
- Documentation = "https://github.com/codeprimate/todo_agent#readme"
68
- Repository = "https://github.com/codeprimate/todo_agent"
69
- "Bug Tracker" = "https://github.com/codeprimate/todo_agent/issues"
64
+ Homepage = "https://github.com/codeprimate/todo-agent"
65
+ Documentation = "https://github.com/codeprimate/todo-agent#readme"
66
+ Repository = "https://github.com/codeprimate/todo-agent"
67
+ "Bug Tracker" = "https://github.com/codeprimate/todo-agent/issues"
70
68
 
71
69
  [tool.setuptools_scm]
72
70
  write_to = "todo_agent/_version.py"
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.1.0'
32
- __version_tuple__ = version_tuple = (0, 1, 0)
31
+ __version__ = version = '0.1.1'
32
+ __version_tuple__ = version_tuple = (0, 1, 1)
33
33
 
34
- __commit_id__ = commit_id = 'g4976d8c8c'
34
+ __commit_id__ = commit_id = 'g88ad576b3'
@@ -1,22 +1,20 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: todo-agent
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A natural language interface for todo.sh task management
5
5
  Author: codeprimate
6
6
  Maintainer: codeprimate
7
7
  License-Expression: GPL-3.0
8
- Project-URL: Homepage, https://github.com/codeprimate/todo_agent
9
- Project-URL: Documentation, https://github.com/codeprimate/todo_agent#readme
10
- Project-URL: Repository, https://github.com/codeprimate/todo_agent
11
- Project-URL: Bug Tracker, https://github.com/codeprimate/todo_agent/issues
8
+ Project-URL: Homepage, https://github.com/codeprimate/todo-agent
9
+ Project-URL: Documentation, https://github.com/codeprimate/todo-agent#readme
10
+ Project-URL: Repository, https://github.com/codeprimate/todo-agent
11
+ Project-URL: Bug Tracker, https://github.com/codeprimate/todo-agent/issues
12
12
  Keywords: todo,task-management,llm,natural-language,cli
13
13
  Classifier: Development Status :: 3 - Alpha
14
14
  Classifier: Intended Audience :: Developers
15
15
  Classifier: Intended Audience :: End Users/Desktop
16
16
  Classifier: Operating System :: OS Independent
17
17
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.8
19
- Classifier: Programming Language :: Python :: 3.9
20
18
  Classifier: Programming Language :: Python :: 3.10
21
19
  Classifier: Programming Language :: Python :: 3.11
22
20
  Classifier: Programming Language :: Python :: 3.12
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes