cli-collective 0.1.0__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.
- cli_collective-0.1.0/.gitignore +5 -0
- cli_collective-0.1.0/LICENSE +21 -0
- cli_collective-0.1.0/PKG-INFO +61 -0
- cli_collective-0.1.0/README.md +26 -0
- cli_collective-0.1.0/pyproject.toml +27 -0
- cli_collective-0.1.0/src/cli_collective/__init__.py +1 -0
- cli_collective-0.1.0/src/cli_collective/cli.py +33 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Alexander Sorrell
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cli-collective
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: The Collective — one install for the whole stack: cli-wikia (knowledge) + cli-enforcement (control) + cli-fleet (parallel agent teams).
|
|
5
|
+
Project-URL: Homepage, https://github.com/Alexander-Sorrell-IT/CLI-Collective
|
|
6
|
+
Author-email: Alexander Sorrell <codehunterextreme@gmail.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
Copyright (c) 2026 Alexander Sorrell
|
|
10
|
+
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
17
|
+
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE.
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Keywords: agent-teams,ai,claude,cli,enforcement,fleet,meta,wiki
|
|
30
|
+
Requires-Python: >=3.8
|
|
31
|
+
Requires-Dist: cli-enforcement>=0.1.0
|
|
32
|
+
Requires-Dist: cli-fleet>=0.1.0
|
|
33
|
+
Requires-Dist: cli-wikia>=0.11.0
|
|
34
|
+
Description-Content-Type: text/markdown
|
|
35
|
+
|
|
36
|
+
# CLI Collective
|
|
37
|
+
|
|
38
|
+
**One install for the whole stack.** The Collective bundles three tools that
|
|
39
|
+
build on each other:
|
|
40
|
+
|
|
41
|
+
```
|
|
42
|
+
cli-wikia knowledge — what each AI CLI can do (hooks, MCP, config)
|
|
43
|
+
▲
|
|
44
|
+
cli-enforcement control — hook-level points / tiers / KB-gates, on any model
|
|
45
|
+
▲
|
|
46
|
+
cli-fleet power — launch many enforced Claude agent teams in parallel
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Install
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
pip install cli-collective # pulls in cli-wikia + cli-enforcement + cli-fleet
|
|
53
|
+
cli-collective # show the stack + versions
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Each tool is also installable on its own — use just `cli-wikia` for an offline
|
|
57
|
+
AI-CLI reference, add `cli-enforcement` for governance, add `cli-fleet` for
|
|
58
|
+
parallel agent teams.
|
|
59
|
+
|
|
60
|
+
## License
|
|
61
|
+
MIT — see [LICENSE](LICENSE).
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# CLI Collective
|
|
2
|
+
|
|
3
|
+
**One install for the whole stack.** The Collective bundles three tools that
|
|
4
|
+
build on each other:
|
|
5
|
+
|
|
6
|
+
```
|
|
7
|
+
cli-wikia knowledge — what each AI CLI can do (hooks, MCP, config)
|
|
8
|
+
▲
|
|
9
|
+
cli-enforcement control — hook-level points / tiers / KB-gates, on any model
|
|
10
|
+
▲
|
|
11
|
+
cli-fleet power — launch many enforced Claude agent teams in parallel
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install cli-collective # pulls in cli-wikia + cli-enforcement + cli-fleet
|
|
18
|
+
cli-collective # show the stack + versions
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
Each tool is also installable on its own — use just `cli-wikia` for an offline
|
|
22
|
+
AI-CLI reference, add `cli-enforcement` for governance, add `cli-fleet` for
|
|
23
|
+
parallel agent teams.
|
|
24
|
+
|
|
25
|
+
## License
|
|
26
|
+
MIT — see [LICENSE](LICENSE).
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cli-collective"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "The Collective — one install for the whole stack: cli-wikia (knowledge) + cli-enforcement (control) + cli-fleet (parallel agent teams)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { file = "LICENSE" }
|
|
12
|
+
authors = [{ name = "Alexander Sorrell", email = "codehunterextreme@gmail.com" }]
|
|
13
|
+
keywords = ["claude", "ai", "cli", "agent-teams", "enforcement", "fleet", "wiki", "meta"]
|
|
14
|
+
dependencies = [
|
|
15
|
+
"cli-wikia>=0.11.0",
|
|
16
|
+
"cli-enforcement>=0.1.0",
|
|
17
|
+
"cli-fleet>=0.1.0",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[project.urls]
|
|
21
|
+
Homepage = "https://github.com/Alexander-Sorrell-IT/CLI-Collective"
|
|
22
|
+
|
|
23
|
+
[project.scripts]
|
|
24
|
+
cli-collective = "cli_collective.cli:main"
|
|
25
|
+
|
|
26
|
+
[tool.hatch.build.targets.wheel]
|
|
27
|
+
packages = ["src/cli_collective"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.0"
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"""cli-collective — umbrella for the stack. Installing it pulls in all three
|
|
2
|
+
tools; the `cli-collective` command just shows what's present and what each does."""
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
__version__ = "0.1.0"
|
|
6
|
+
|
|
7
|
+
LAYERS = [
|
|
8
|
+
("cli_wikia", "wikia", "knowledge — what each AI CLI can do (hooks, MCP, config), derived from offline wikis"),
|
|
9
|
+
("cli_enforcement", "cli-enforcement", "control — hook-level points/tiers/KB-gates, deployed onto any model via wikia"),
|
|
10
|
+
("cli_fleet", "cli-fleet", "power — launch multiple enforced Claude agent teams in parallel, hardware-aware"),
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def _version(mod):
|
|
15
|
+
try:
|
|
16
|
+
m = __import__(mod)
|
|
17
|
+
return getattr(m, "__version__", "?")
|
|
18
|
+
except ImportError:
|
|
19
|
+
return None
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
def main(argv=None):
|
|
23
|
+
print("The Collective — AI coding-agent stack\n")
|
|
24
|
+
for mod, cmd, desc in LAYERS:
|
|
25
|
+
v = _version(mod)
|
|
26
|
+
mark = f"v{v}" if v else "NOT INSTALLED"
|
|
27
|
+
print(f" {cmd:16} {mark:14} {desc}")
|
|
28
|
+
print("\nLayering: cli-wikia -> cli-enforcement -> cli-fleet")
|
|
29
|
+
print("Try: wikia models | cli-enforcement deploy claude | cli-fleet launch <config>")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
if __name__ == "__main__":
|
|
33
|
+
main()
|