squawkbox 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.
- {squawkbox-0.1.0 → squawkbox-0.1.1}/PKG-INFO +9 -5
- {squawkbox-0.1.0 → squawkbox-0.1.1}/README.md +4 -2
- {squawkbox-0.1.0 → squawkbox-0.1.1}/pyproject.toml +8 -4
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox.egg-info/PKG-INFO +9 -5
- {squawkbox-0.1.0 → squawkbox-0.1.1}/setup.cfg +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox/__init__.py +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox/__main__.py +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox/cli.py +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox.egg-info/SOURCES.txt +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox.egg-info/dependency_links.txt +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox.egg-info/entry_points.txt +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/src/squawkbox.egg-info/top_level.txt +0 -0
- {squawkbox-0.1.0 → squawkbox-0.1.1}/tests/test_cli.py +0 -0
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: squawkbox
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Thin PyPI wrapper for the squawkbox Node CLI — the intercom for your AI agents.
|
|
5
5
|
Author: Ben Wiseman
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/linnetlabs/squawkbox
|
|
8
|
+
Project-URL: Repository, https://github.com/linnetlabs/squawkbox
|
|
9
|
+
Project-URL: Issues, https://github.com/linnetlabs/squawkbox/issues
|
|
7
10
|
Classifier: Development Status :: 3 - Alpha
|
|
8
11
|
Classifier: Environment :: Console
|
|
9
12
|
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
13
|
Classifier: Programming Language :: Python :: 3
|
|
12
14
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -18,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
18
20
|
# squawkbox (PyPI wrapper)
|
|
19
21
|
|
|
20
22
|
**The intercom for your AI agents** — `pip`/`uvx` access to
|
|
21
|
-
[squawkbox](https://github.com/
|
|
23
|
+
[squawkbox](https://github.com/linnetlabs/squawkbox), a local MCP message broker
|
|
22
24
|
that lets parallel AI coding agents (Claude Code, Codex, and concurrent
|
|
23
25
|
sessions) coordinate instead of colliding.
|
|
24
26
|
|
|
@@ -37,9 +39,11 @@ pip install squawkbox # or: uvx squawkbox
|
|
|
37
39
|
```bash
|
|
38
40
|
squawkbox shim --runtime claude # wire into your MCP client (see the repo)
|
|
39
41
|
squawkbox daemon # run the broker standalone
|
|
42
|
+
squawkbox ui --port 7330 # local operator console
|
|
43
|
+
squawkbox compact --before 30d # archive old transcript rows
|
|
40
44
|
```
|
|
41
45
|
|
|
42
46
|
Full docs, the 60-second quickstart, and MCP config snippets:
|
|
43
|
-
**https://github.com/
|
|
47
|
+
**https://github.com/linnetlabs/squawkbox**
|
|
44
48
|
|
|
45
49
|
MIT.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# squawkbox (PyPI wrapper)
|
|
2
2
|
|
|
3
3
|
**The intercom for your AI agents** — `pip`/`uvx` access to
|
|
4
|
-
[squawkbox](https://github.com/
|
|
4
|
+
[squawkbox](https://github.com/linnetlabs/squawkbox), a local MCP message broker
|
|
5
5
|
that lets parallel AI coding agents (Claude Code, Codex, and concurrent
|
|
6
6
|
sessions) coordinate instead of colliding.
|
|
7
7
|
|
|
@@ -20,9 +20,11 @@ pip install squawkbox # or: uvx squawkbox
|
|
|
20
20
|
```bash
|
|
21
21
|
squawkbox shim --runtime claude # wire into your MCP client (see the repo)
|
|
22
22
|
squawkbox daemon # run the broker standalone
|
|
23
|
+
squawkbox ui --port 7330 # local operator console
|
|
24
|
+
squawkbox compact --before 30d # archive old transcript rows
|
|
23
25
|
```
|
|
24
26
|
|
|
25
27
|
Full docs, the 60-second quickstart, and MCP config snippets:
|
|
26
|
-
**https://github.com/
|
|
28
|
+
**https://github.com/linnetlabs/squawkbox**
|
|
27
29
|
|
|
28
30
|
MIT.
|
|
@@ -1,26 +1,30 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["setuptools>=
|
|
2
|
+
requires = ["setuptools>=77"]
|
|
3
3
|
build-backend = "setuptools.build_meta"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "squawkbox"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Thin PyPI wrapper for the squawkbox Node CLI — the intercom for your AI agents."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
11
|
-
license =
|
|
11
|
+
license = "MIT"
|
|
12
12
|
authors = [{ name = "Ben Wiseman" }]
|
|
13
13
|
classifiers = [
|
|
14
14
|
"Development Status :: 3 - Alpha",
|
|
15
15
|
"Environment :: Console",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
17
|
-
"License :: OSI Approved :: MIT License",
|
|
18
17
|
"Programming Language :: Python :: 3",
|
|
19
18
|
"Programming Language :: Python :: 3 :: Only",
|
|
20
19
|
"Programming Language :: Python :: 3.9",
|
|
21
20
|
"Topic :: Software Development :: Build Tools",
|
|
22
21
|
]
|
|
23
22
|
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://github.com/linnetlabs/squawkbox"
|
|
25
|
+
Repository = "https://github.com/linnetlabs/squawkbox"
|
|
26
|
+
Issues = "https://github.com/linnetlabs/squawkbox/issues"
|
|
27
|
+
|
|
24
28
|
[project.scripts]
|
|
25
29
|
squawkbox = "squawkbox.cli:main"
|
|
26
30
|
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: squawkbox
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Thin PyPI wrapper for the squawkbox Node CLI — the intercom for your AI agents.
|
|
5
5
|
Author: Ben Wiseman
|
|
6
|
-
License: MIT
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/linnetlabs/squawkbox
|
|
8
|
+
Project-URL: Repository, https://github.com/linnetlabs/squawkbox
|
|
9
|
+
Project-URL: Issues, https://github.com/linnetlabs/squawkbox/issues
|
|
7
10
|
Classifier: Development Status :: 3 - Alpha
|
|
8
11
|
Classifier: Environment :: Console
|
|
9
12
|
Classifier: Intended Audience :: Developers
|
|
10
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
11
13
|
Classifier: Programming Language :: Python :: 3
|
|
12
14
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
13
15
|
Classifier: Programming Language :: Python :: 3.9
|
|
@@ -18,7 +20,7 @@ Description-Content-Type: text/markdown
|
|
|
18
20
|
# squawkbox (PyPI wrapper)
|
|
19
21
|
|
|
20
22
|
**The intercom for your AI agents** — `pip`/`uvx` access to
|
|
21
|
-
[squawkbox](https://github.com/
|
|
23
|
+
[squawkbox](https://github.com/linnetlabs/squawkbox), a local MCP message broker
|
|
22
24
|
that lets parallel AI coding agents (Claude Code, Codex, and concurrent
|
|
23
25
|
sessions) coordinate instead of colliding.
|
|
24
26
|
|
|
@@ -37,9 +39,11 @@ pip install squawkbox # or: uvx squawkbox
|
|
|
37
39
|
```bash
|
|
38
40
|
squawkbox shim --runtime claude # wire into your MCP client (see the repo)
|
|
39
41
|
squawkbox daemon # run the broker standalone
|
|
42
|
+
squawkbox ui --port 7330 # local operator console
|
|
43
|
+
squawkbox compact --before 30d # archive old transcript rows
|
|
40
44
|
```
|
|
41
45
|
|
|
42
46
|
Full docs, the 60-second quickstart, and MCP config snippets:
|
|
43
|
-
**https://github.com/
|
|
47
|
+
**https://github.com/linnetlabs/squawkbox**
|
|
44
48
|
|
|
45
49
|
MIT.
|
|
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
|