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.
- {todo_agent-0.1.0 → todo_agent-0.1.1}/PKG-INFO +5 -7
- {todo_agent-0.1.0 → todo_agent-0.1.1}/pyproject.toml +4 -6
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/_version.py +3 -3
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/PKG-INFO +5 -7
- {todo_agent-0.1.0 → todo_agent-0.1.1}/.gitignore +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/LICENSE +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/MANIFEST.in +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/Makefile +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/README.md +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/docs/publishing.md +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/requirements-dev.txt +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/requirements.txt +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/setup.cfg +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_core/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_core/test_conversation_manager.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_core/test_todo_manager.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_config.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_inference.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_llm_client_factory.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_ollama_client.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_openrouter_client.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_todo_shell.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_infrastructure/test_token_counter.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_interface/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_interface/test_cli.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_interface/test_tools.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_logger.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/tests/test_main.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/conversation_manager.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/exceptions.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/core/todo_manager.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/config.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/inference.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/llm_client.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/llm_client_factory.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/logger.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/ollama_client.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/openrouter_client.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/prompts/system_prompt.txt +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/todo_shell.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/infrastructure/token_counter.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/interface/__init__.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/interface/cli.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/interface/tools.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent/main.py +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/SOURCES.txt +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/dependency_links.txt +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/entry_points.txt +0 -0
- {todo_agent-0.1.0 → todo_agent-0.1.1}/todo_agent.egg-info/requires.txt +0 -0
- {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.
|
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/
|
9
|
-
Project-URL: Documentation, https://github.com/codeprimate/
|
10
|
-
Project-URL: Repository, https://github.com/codeprimate/
|
11
|
-
Project-URL: Bug Tracker, https://github.com/codeprimate/
|
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/
|
67
|
-
Documentation = "https://github.com/codeprimate/
|
68
|
-
Repository = "https://github.com/codeprimate/
|
69
|
-
"Bug Tracker" = "https://github.com/codeprimate/
|
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.
|
32
|
-
__version_tuple__ = version_tuple = (0, 1,
|
31
|
+
__version__ = version = '0.1.1'
|
32
|
+
__version_tuple__ = version_tuple = (0, 1, 1)
|
33
33
|
|
34
|
-
__commit_id__ = commit_id = '
|
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.
|
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/
|
9
|
-
Project-URL: Documentation, https://github.com/codeprimate/
|
10
|
-
Project-URL: Repository, https://github.com/codeprimate/
|
11
|
-
Project-URL: Bug Tracker, https://github.com/codeprimate/
|
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
|
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
|
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
|