Plugin:
minionv0.3.0 Author: Sebastiano Merlino License: MIT Source: github.com/etr/minion (distributed via thegroundwork-marketplace) What it does: Lets Claude Code delegate any task to any AI model that the Pi coding agent supports — without leaving your Claude Code session.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Enforcer script for validating project constraints via AST-based analysis. | |
| Enforces: | |
| 1. requirements-auto-generated: requirements.txt under app/ must have auto-generated header | |
| 2. lambda-module-isolation: Lambda modules can only import from app.shared.*, not each other | |
| 3. shared-init-py: All app/shared/ submodules must have __init__.py | |
| 4. shared-pyproject-toml: All app/shared/ submodules must have pyproject.toml with correct format | |
| 5. import-style: Local imports use bare names; shared imports use app.shared.* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| This file is part of libhttpserver | |
| Copyright (C) 2011, 2012, 2013, 2014, 2015 Sebastiano Merlino | |
| This library is free software; you can redistribute it and/or | |
| modify it under the terms of the GNU Lesser General Public | |
| License as published by the Free Software Foundation; either | |
| version 2.1 of the License, or (at your option) any later version. | |
| This library is distributed in the hope that it will be useful, |