taskswarm-cli 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 (48) hide show
  1. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/PKG-INFO +8 -6
  2. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/README.md +7 -5
  3. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/pyproject.toml +1 -1
  4. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/.gitignore +0 -0
  5. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/LICENSE +0 -0
  6. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/01-basic-server/run.py +0 -0
  7. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/02-ci-gate/gate.py +0 -0
  8. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/03-claude-code-hook/relay.py +0 -0
  9. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/README.md +0 -0
  10. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/__init__.py +0 -0
  11. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/__init__.py +0 -0
  12. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/claude_code_adapter.py +0 -0
  13. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/generic_adapter.py +0 -0
  14. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/types.py +0 -0
  15. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/cli.py +0 -0
  16. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/client/__init__.py +0 -0
  17. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/client/api_client.py +0 -0
  18. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/client/tasks_registry.py +0 -0
  19. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/__init__.py +0 -0
  20. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/dispatch.py +0 -0
  21. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/ntfy.py +0 -0
  22. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/os_notify.py +0 -0
  23. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/py.typed +0 -0
  24. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/schema/__init__.py +0 -0
  25. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/schema/events.py +0 -0
  26. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/__init__.py +0 -0
  27. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/auth.py +0 -0
  28. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/config.py +0 -0
  29. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/event_store.py +0 -0
  30. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/http_server.py +0 -0
  31. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/server.py +0 -0
  32. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/ui/index.html +0 -0
  33. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/util/__init__.py +0 -0
  34. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/util/sync_sleep.py +0 -0
  35. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/__init__.py +0 -0
  36. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/conftest.py +0 -0
  37. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_adapters.py +0 -0
  38. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_api_client.py +0 -0
  39. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_auth.py +0 -0
  40. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_cli.py +0 -0
  41. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_config.py +0 -0
  42. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_event_store.py +0 -0
  43. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_events_schema.py +0 -0
  44. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_notify.py +0 -0
  45. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_ntfy.py +0 -0
  46. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_os_notify.py +0 -0
  47. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_server_lifecycle.py +0 -0
  48. {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_tasks_registry.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: taskswarm-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Self-hosted event server that pushes a notification the instant a parallel coding-agent session blocks, needs review, fails, or finishes.
5
5
  Project-URL: Homepage, https://github.com/RudrenduPaul/taskswarm
6
6
  Project-URL: Repository, https://github.com/RudrenduPaul/taskswarm
@@ -38,9 +38,9 @@ Description-Content-Type: text/markdown
38
38
  Self-hosted event server that pushes a notification the instant a parallel
39
39
  coding-agent session blocks, needs review, fails, or finishes.
40
40
 
41
- [![PyPI version](https://img.shields.io/pypi/v/taskswarm.svg)](https://pypi.org/project/taskswarm/)
41
+ [![PyPI version](https://img.shields.io/pypi/v/taskswarm-cli.svg)](https://pypi.org/project/taskswarm-cli/)
42
42
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/RudrenduPaul/taskswarm/blob/main/LICENSE)
43
- [![Python versions](https://img.shields.io/pypi/pyversions/taskswarm.svg)](https://pypi.org/project/taskswarm/)
43
+ [![Python versions](https://img.shields.io/pypi/pyversions/taskswarm-cli.svg)](https://pypi.org/project/taskswarm-cli/)
44
44
  [![CI](https://github.com/RudrenduPaul/taskswarm/actions/workflows/ci.yml/badge.svg)](https://github.com/RudrenduPaul/taskswarm/actions/workflows/ci.yml)
45
45
 
46
46
  ## Why this exists
@@ -62,16 +62,17 @@ standard library.
62
62
 
63
63
  ## Install
64
64
 
65
- Live on PyPI as `taskswarm`:
65
+ Live on PyPI as `taskswarm-cli` (renamed from the original `taskswarm`
66
+ package, which has stopped receiving updates and points here):
66
67
 
67
68
  ```bash
68
- pip install taskswarm
69
+ pip install taskswarm-cli
69
70
  ```
70
71
 
71
72
  or with [uv](https://docs.astral.sh/uv/):
72
73
 
73
74
  ```bash
74
- uv add taskswarm
75
+ uv add taskswarm-cli
75
76
  ```
76
77
 
77
78
  The complementary JS/TS distribution is already live on npm as
@@ -215,3 +216,4 @@ pytest
215
216
  ## License
216
217
 
217
218
  MIT, see [LICENSE](https://github.com/RudrenduPaul/taskswarm/blob/main/LICENSE).
219
+
@@ -3,9 +3,9 @@
3
3
  Self-hosted event server that pushes a notification the instant a parallel
4
4
  coding-agent session blocks, needs review, fails, or finishes.
5
5
 
6
- [![PyPI version](https://img.shields.io/pypi/v/taskswarm.svg)](https://pypi.org/project/taskswarm/)
6
+ [![PyPI version](https://img.shields.io/pypi/v/taskswarm-cli.svg)](https://pypi.org/project/taskswarm-cli/)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/RudrenduPaul/taskswarm/blob/main/LICENSE)
8
- [![Python versions](https://img.shields.io/pypi/pyversions/taskswarm.svg)](https://pypi.org/project/taskswarm/)
8
+ [![Python versions](https://img.shields.io/pypi/pyversions/taskswarm-cli.svg)](https://pypi.org/project/taskswarm-cli/)
9
9
  [![CI](https://github.com/RudrenduPaul/taskswarm/actions/workflows/ci.yml/badge.svg)](https://github.com/RudrenduPaul/taskswarm/actions/workflows/ci.yml)
10
10
 
11
11
  ## Why this exists
@@ -27,16 +27,17 @@ standard library.
27
27
 
28
28
  ## Install
29
29
 
30
- Live on PyPI as `taskswarm`:
30
+ Live on PyPI as `taskswarm-cli` (renamed from the original `taskswarm`
31
+ package, which has stopped receiving updates and points here):
31
32
 
32
33
  ```bash
33
- pip install taskswarm
34
+ pip install taskswarm-cli
34
35
  ```
35
36
 
36
37
  or with [uv](https://docs.astral.sh/uv/):
37
38
 
38
39
  ```bash
39
- uv add taskswarm
40
+ uv add taskswarm-cli
40
41
  ```
41
42
 
42
43
  The complementary JS/TS distribution is already live on npm as
@@ -180,3 +181,4 @@ pytest
180
181
  ## License
181
182
 
182
183
  MIT, see [LICENSE](https://github.com/RudrenduPaul/taskswarm/blob/main/LICENSE).
184
+
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "taskswarm-cli"
7
- version = "0.1.0"
7
+ version = "0.1.1"
8
8
  description = "Self-hosted event server that pushes a notification the instant a parallel coding-agent session blocks, needs review, fails, or finishes."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
File without changes
File without changes