prodpilot 1.0.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.
Files changed (57) hide show
  1. prodpilot/__init__.py +9 -0
  2. prodpilot/__main__.py +10 -0
  3. prodpilot/astchecks.py +1019 -0
  4. prodpilot/audit.py +343 -0
  5. prodpilot/blueprint.py +227 -0
  6. prodpilot/builds.py +348 -0
  7. prodpilot/buildtest.py +529 -0
  8. prodpilot/cicd.py +506 -0
  9. prodpilot/cli.py +302 -0
  10. prodpilot/config.py +348 -0
  11. prodpilot/connect.py +213 -0
  12. prodpilot/constraints.py +390 -0
  13. prodpilot/dataset.py +461 -0
  14. prodpilot/detection.py +269 -0
  15. prodpilot/dispatch.py +408 -0
  16. prodpilot/entropy.py +321 -0
  17. prodpilot/extraction.py +1007 -0
  18. prodpilot/features.py +355 -0
  19. prodpilot/filechecks.py +498 -0
  20. prodpilot/findings.py +59 -0
  21. prodpilot/gate.py +314 -0
  22. prodpilot/gh.py +342 -0
  23. prodpilot/jsparse.py +262 -0
  24. prodpilot/labels.py +803 -0
  25. prodpilot/loop.py +395 -0
  26. prodpilot/model/model.joblib +0 -0
  27. prodpilot/monitor.py +178 -0
  28. prodpilot/negatives.py +359 -0
  29. prodpilot/preflight.py +240 -0
  30. prodpilot/prereqs.py +76 -0
  31. prodpilot/prodpush.py +303 -0
  32. prodpilot/projectstate.py +228 -0
  33. prodpilot/provider.py +132 -0
  34. prodpilot/push.py +300 -0
  35. prodpilot/reaudit.py +149 -0
  36. prodpilot/render.py +376 -0
  37. prodpilot/rules.py +437 -0
  38. prodpilot/scoring.py +209 -0
  39. prodpilot/sealing.py +380 -0
  40. prodpilot/server.py +316 -0
  41. prodpilot/smoke.py +350 -0
  42. prodpilot/templates.py +647 -0
  43. prodpilot/training.py +651 -0
  44. prodpilot/vendor/node_modules/acorn/LICENSE +21 -0
  45. prodpilot/vendor/node_modules/acorn/dist/acorn.mjs +6313 -0
  46. prodpilot/vendor/node_modules/acorn/package.json +50 -0
  47. prodpilot/vendor/node_modules/acorn-jsx/LICENSE +19 -0
  48. prodpilot/vendor/node_modules/acorn-jsx/index.js +488 -0
  49. prodpilot/vendor/node_modules/acorn-jsx/package.json +27 -0
  50. prodpilot/vendor/node_modules/acorn-jsx/xhtml.js +255 -0
  51. prodpilot/vendor/parse.mjs +68 -0
  52. prodpilot/verify.py +212 -0
  53. prodpilot-1.0.0.dist-info/METADATA +310 -0
  54. prodpilot-1.0.0.dist-info/RECORD +57 -0
  55. prodpilot-1.0.0.dist-info/WHEEL +4 -0
  56. prodpilot-1.0.0.dist-info/entry_points.txt +2 -0
  57. prodpilot-1.0.0.dist-info/licenses/LICENSE +21 -0
prodpilot/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """ProdPilot: a layered MCP-based system for automated production readiness.
2
+
3
+ This package is built in the phase order defined by the Phased Implementation
4
+ Plan. The current build covers Phase 1 module 1.1, the MCP server skeleton.
5
+ """
6
+
7
+ __version__ = "1.0.0rc1"
8
+
9
+ __all__ = ["__version__"]
prodpilot/__main__.py ADDED
@@ -0,0 +1,10 @@
1
+ """Allow the server to be started with `python -m prodpilot`.
2
+
3
+ An MCP client that has the project on its path can launch the server this way
4
+ without depending on the console script being installed.
5
+ """
6
+
7
+ from prodpilot.cli import app
8
+
9
+ if __name__ == "__main__":
10
+ app()