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.
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/PKG-INFO +8 -6
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/README.md +7 -5
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/pyproject.toml +1 -1
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/.gitignore +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/LICENSE +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/01-basic-server/run.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/02-ci-gate/gate.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/03-claude-code-hook/relay.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/examples/README.md +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/claude_code_adapter.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/generic_adapter.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/adapters/types.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/cli.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/client/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/client/api_client.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/client/tasks_registry.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/dispatch.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/ntfy.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/notifications/os_notify.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/py.typed +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/schema/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/schema/events.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/auth.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/config.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/event_store.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/http_server.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/server/server.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/ui/index.html +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/util/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/src/taskswarm/util/sync_sleep.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/__init__.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/conftest.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_adapters.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_api_client.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_auth.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_cli.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_config.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_event_store.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_events_schema.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_notify.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_ntfy.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_os_notify.py +0 -0
- {taskswarm_cli-0.1.0 → taskswarm_cli-0.1.1}/tests/test_server_lifecycle.py +0 -0
- {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.
|
|
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
|
-
[](https://pypi.org/project/taskswarm/)
|
|
41
|
+
[](https://pypi.org/project/taskswarm-cli/)
|
|
42
42
|
[](https://github.com/RudrenduPaul/taskswarm/blob/main/LICENSE)
|
|
43
|
-
[](https://pypi.org/project/taskswarm/)
|
|
43
|
+
[](https://pypi.org/project/taskswarm-cli/)
|
|
44
44
|
[](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
|
-
[](https://pypi.org/project/taskswarm/)
|
|
6
|
+
[](https://pypi.org/project/taskswarm-cli/)
|
|
7
7
|
[](https://github.com/RudrenduPaul/taskswarm/blob/main/LICENSE)
|
|
8
|
-
[](https://pypi.org/project/taskswarm/)
|
|
8
|
+
[](https://pypi.org/project/taskswarm-cli/)
|
|
9
9
|
[](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.
|
|
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
|
|
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
|