stellars-claude-code-plugins 0.8.44__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.
- stellars_claude_code_plugins/__init__.py +3 -0
- stellars_claude_code_plugins/engine/__init__.py +35 -0
- stellars_claude_code_plugins/engine/fsm.py +258 -0
- stellars_claude_code_plugins/engine/model.py +376 -0
- stellars_claude_code_plugins/engine/orchestrator.py +2444 -0
- stellars_claude_code_plugins-0.8.44.dist-info/METADATA +126 -0
- stellars_claude_code_plugins-0.8.44.dist-info/RECORD +11 -0
- stellars_claude_code_plugins-0.8.44.dist-info/WHEEL +5 -0
- stellars_claude_code_plugins-0.8.44.dist-info/entry_points.txt +2 -0
- stellars_claude_code_plugins-0.8.44.dist-info/licenses/LICENSE +21 -0
- stellars_claude_code_plugins-0.8.44.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: stellars_claude_code_plugins
|
|
3
|
+
Version: 0.8.44
|
|
4
|
+
Summary: Claude Code plugins for autonomous development workflows
|
|
5
|
+
Author-email: Stellars Henson <konrad.jelen@gmail.com>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Requires-Python: ~=3.12.0
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Requires-Dist: pyyaml
|
|
12
|
+
Provides-Extra: dev
|
|
13
|
+
Requires-Dist: build; extra == "dev"
|
|
14
|
+
Requires-Dist: ipython; extra == "dev"
|
|
15
|
+
Requires-Dist: pip; extra == "dev"
|
|
16
|
+
Requires-Dist: pytest; extra == "dev"
|
|
17
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
18
|
+
Requires-Dist: ruff; extra == "dev"
|
|
19
|
+
Requires-Dist: twine; extra == "dev"
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
|
|
22
|
+
# stellars-claude-code-plugins
|
|
23
|
+
|
|
24
|
+
[](https://github.com/stellarshenson/claude-code-plugins/actions/workflows/build.yml)
|
|
25
|
+
[](https://pypi.org/project/stellars-claude-code-plugins/)
|
|
26
|
+
[](https://pepy.tech/project/stellars-claude-code-plugins)
|
|
27
|
+
[](https://www.python.org/downloads/)
|
|
28
|
+
[](https://kolomolo.com)
|
|
29
|
+
|
|
30
|
+
> [!TIP]
|
|
31
|
+
> Each plugin provides only YAML configuration files. The shared orchestration engine in `stellars_claude_code_plugins` handles all execution logic - FSM transitions, gate validation, multi-agent coordination, and state management.
|
|
32
|
+
|
|
33
|
+
Claude Code plugins for autonomous development workflows. A shared YAML-driven orchestration engine with individual plugins that define their own phases, agents, and gates through declarative configuration.
|
|
34
|
+
|
|
35
|
+
## Plugins
|
|
36
|
+
|
|
37
|
+
| Plugin | Description |
|
|
38
|
+
|--------|-------------|
|
|
39
|
+
| [auto-build-claw](auto-build-claw/) | Autonomous build iteration orchestrator with multi-agent review |
|
|
40
|
+
|
|
41
|
+
## Features
|
|
42
|
+
|
|
43
|
+
- **YAML-driven orchestration** - All phases, agents, gates, and display text defined in 4 YAML files per plugin
|
|
44
|
+
- **Finite state machine** - Declarative phase lifecycle with readback, gatekeeper, reject, and skip transitions
|
|
45
|
+
- **Multi-agent coordination** - Spawn parallel agent panels per phase with role-specific prompts
|
|
46
|
+
- **Independent gates** - Readback validation at phase start, gatekeeper evaluation at phase end via `claude -p`
|
|
47
|
+
- **Hypothesis tracking** - Persistent hypothesis catalogue across iterations with garbage collection
|
|
48
|
+
- **Failure logging** - Structured failure modes feed into next iteration's research context
|
|
49
|
+
- **Iteration planning** - Optional iteration 0 planning phase with dependency workflow chaining
|
|
50
|
+
- **Auditable state** - Every transition, readback, and gatekeeper verdict logged to YAML
|
|
51
|
+
|
|
52
|
+
## Architecture
|
|
53
|
+
|
|
54
|
+
```
|
|
55
|
+
stellars_claude_code_plugins/ # Shared engine (pip installable)
|
|
56
|
+
engine/
|
|
57
|
+
fsm.py # Phase lifecycle state machine
|
|
58
|
+
model.py # Typed YAML model loader + validator
|
|
59
|
+
orchestrator.py # Complete orchestration engine
|
|
60
|
+
|
|
61
|
+
auto-build-claw/ # Plugin (YAML content + thin entrypoint)
|
|
62
|
+
skills/auto-build-claw/
|
|
63
|
+
orchestrate.py # 18-line entrypoint
|
|
64
|
+
resources/
|
|
65
|
+
workflow.yaml # Iteration types and phase sequences
|
|
66
|
+
phases.yaml # Phase instruction templates
|
|
67
|
+
agents.yaml # Agent definitions and gate prompts
|
|
68
|
+
app.yaml # Display text and CLI configuration
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Install
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
pip install stellars-claude-code-plugins
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
This installs the shared orchestration engine and the `orchestrate` CLI command.
|
|
78
|
+
|
|
79
|
+
## Usage
|
|
80
|
+
|
|
81
|
+
### As a Claude Code plugin
|
|
82
|
+
|
|
83
|
+
```bash
|
|
84
|
+
/plugin marketplace add stellarshenson/claude-code-plugins
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
The auto-build-claw skill triggers automatically when you ask Claude to iterate on code, improve quality, fix bugs, or run structured development cycles.
|
|
88
|
+
|
|
89
|
+
### As a standalone CLI
|
|
90
|
+
|
|
91
|
+
```bash
|
|
92
|
+
orchestrate --resources-dir /path/to/plugin/resources new --type full --objective "..." --iterations 3
|
|
93
|
+
orchestrate start --understanding "brief summary"
|
|
94
|
+
orchestrate end --evidence "..." --agents "researcher,planner" --output-file output.md
|
|
95
|
+
orchestrate status
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Building a new plugin
|
|
99
|
+
|
|
100
|
+
Create a directory with 4 YAML resource files and a thin entrypoint:
|
|
101
|
+
|
|
102
|
+
```python
|
|
103
|
+
#!/usr/bin/env python3
|
|
104
|
+
from pathlib import Path
|
|
105
|
+
from stellars_claude_code_plugins.engine.orchestrator import main
|
|
106
|
+
|
|
107
|
+
if __name__ == "__main__":
|
|
108
|
+
main(resources_dir=Path(__file__).parent / "resources")
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Define your workflow phases, agent prompts, gate templates, and display text in the YAML files. The engine handles everything else - state management, FSM transitions, CLI parsing, gate execution, and audit logging.
|
|
112
|
+
|
|
113
|
+
## Development
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
make install # create venv, install deps, editable install
|
|
117
|
+
make test # run 115 tests
|
|
118
|
+
make lint # ruff format + check
|
|
119
|
+
make format # auto-fix formatting
|
|
120
|
+
make build # clean, test, bump version, build wheel
|
|
121
|
+
make publish # build + twine upload to PyPI
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## License
|
|
125
|
+
|
|
126
|
+
MIT License
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
stellars_claude_code_plugins/__init__.py,sha256=9e45K1ZZQdkzqIiigYTfc32O9fALnY0hUpXqLKJWWvg,90
|
|
2
|
+
stellars_claude_code_plugins/engine/__init__.py,sha256=W7zsJEsrhQsXoSQcI0thmn5IHu3NVOYTiVU_0bA2IHA,717
|
|
3
|
+
stellars_claude_code_plugins/engine/fsm.py,sha256=KjPT5R51OmglYh60yup9CNoLgwoCUCZ-orFlYmYfX5Q,9394
|
|
4
|
+
stellars_claude_code_plugins/engine/model.py,sha256=rXRJEabPvn0pvNLq0XSylmoFvRY6j2mtsH1NEr3wTuo,16840
|
|
5
|
+
stellars_claude_code_plugins/engine/orchestrator.py,sha256=uib16tk1C-0q8BO098lzFQt8hlBG7R76ekZLhvkUja8,89388
|
|
6
|
+
stellars_claude_code_plugins-0.8.44.dist-info/licenses/LICENSE,sha256=2SVNhEG8lzSrf5Fn4cYH0K1xDIKqM-4e5Gw8p046MrE,1072
|
|
7
|
+
stellars_claude_code_plugins-0.8.44.dist-info/METADATA,sha256=1xnEnwMhim-S4JOjtBB-9iv5xqHBSRZkQMsud07EGao,5296
|
|
8
|
+
stellars_claude_code_plugins-0.8.44.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
9
|
+
stellars_claude_code_plugins-0.8.44.dist-info/entry_points.txt,sha256=RykK8wbPMSubqs2srQhlr-vKFDcQaRrjsTfnbuUB5KU,86
|
|
10
|
+
stellars_claude_code_plugins-0.8.44.dist-info/top_level.txt,sha256=jQk3akQV3PVcHTwF8Z80wh1OPoPtHeQgVByLzWyfuGI,29
|
|
11
|
+
stellars_claude_code_plugins-0.8.44.dist-info/RECORD,,
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Stellars Henson
|
|
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 @@
|
|
|
1
|
+
stellars_claude_code_plugins
|