cli-collective 0.1.0__py3-none-any.whl

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.
@@ -0,0 +1 @@
1
+ __version__ = "0.1.0"
cli_collective/cli.py ADDED
@@ -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()
@@ -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,7 @@
1
+ cli_collective/__init__.py,sha256=kUR5RAFc7HCeiqdlX36dZOHkUI5wI6V_43RpEcD8b-0,22
2
+ cli_collective/cli.py,sha256=99sWSE_UZGhg3ZrlDoaIKps66AyvoMvFtduDOPujglU,1189
3
+ cli_collective-0.1.0.dist-info/METADATA,sha256=S03rmeJrVzCKAEQHe__PvhCfXAbl2ZZuEVuLz3n0vRA,2607
4
+ cli_collective-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
5
+ cli_collective-0.1.0.dist-info/entry_points.txt,sha256=TgHs9usNWOZRO4wjYU61pgQaM7KuJ4NGoJOdLxZC5SA,59
6
+ cli_collective-0.1.0.dist-info/licenses/LICENSE,sha256=4xsxREKP6auIYX2ierS0uMlLmXZbJg6XPyxB8MCvWOM,1074
7
+ cli_collective-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cli-collective = cli_collective.cli:main
@@ -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.