plugin-scanner 1.4.15__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. codex_plugin_scanner/__init__.py +29 -0
  2. codex_plugin_scanner/action_runner.py +470 -0
  3. codex_plugin_scanner/checks/__init__.py +0 -0
  4. codex_plugin_scanner/checks/best_practices.py +238 -0
  5. codex_plugin_scanner/checks/claude.py +285 -0
  6. codex_plugin_scanner/checks/code_quality.py +115 -0
  7. codex_plugin_scanner/checks/ecosystem_common.py +34 -0
  8. codex_plugin_scanner/checks/gemini.py +196 -0
  9. codex_plugin_scanner/checks/manifest.py +501 -0
  10. codex_plugin_scanner/checks/manifest_support.py +61 -0
  11. codex_plugin_scanner/checks/marketplace.py +334 -0
  12. codex_plugin_scanner/checks/opencode.py +223 -0
  13. codex_plugin_scanner/checks/operational_security.py +346 -0
  14. codex_plugin_scanner/checks/security.py +447 -0
  15. codex_plugin_scanner/checks/skill_security.py +241 -0
  16. codex_plugin_scanner/cli.py +467 -0
  17. codex_plugin_scanner/config.py +76 -0
  18. codex_plugin_scanner/ecosystems/__init__.py +15 -0
  19. codex_plugin_scanner/ecosystems/base.py +20 -0
  20. codex_plugin_scanner/ecosystems/claude.py +112 -0
  21. codex_plugin_scanner/ecosystems/codex.py +94 -0
  22. codex_plugin_scanner/ecosystems/detect.py +46 -0
  23. codex_plugin_scanner/ecosystems/gemini.py +80 -0
  24. codex_plugin_scanner/ecosystems/opencode.py +184 -0
  25. codex_plugin_scanner/ecosystems/registry.py +41 -0
  26. codex_plugin_scanner/ecosystems/types.py +45 -0
  27. codex_plugin_scanner/integrations/__init__.py +5 -0
  28. codex_plugin_scanner/integrations/cisco_skill_scanner.py +200 -0
  29. codex_plugin_scanner/lint_fixes.py +105 -0
  30. codex_plugin_scanner/marketplace_support.py +100 -0
  31. codex_plugin_scanner/models.py +177 -0
  32. codex_plugin_scanner/path_support.py +46 -0
  33. codex_plugin_scanner/policy.py +140 -0
  34. codex_plugin_scanner/quality_artifact.py +91 -0
  35. codex_plugin_scanner/repo_detect.py +137 -0
  36. codex_plugin_scanner/reporting.py +376 -0
  37. codex_plugin_scanner/rules/__init__.py +6 -0
  38. codex_plugin_scanner/rules/registry.py +101 -0
  39. codex_plugin_scanner/rules/specs.py +26 -0
  40. codex_plugin_scanner/scanner.py +557 -0
  41. codex_plugin_scanner/submission.py +284 -0
  42. codex_plugin_scanner/suppressions.py +87 -0
  43. codex_plugin_scanner/trust_domain_scoring.py +22 -0
  44. codex_plugin_scanner/trust_helpers.py +207 -0
  45. codex_plugin_scanner/trust_mcp_scoring.py +116 -0
  46. codex_plugin_scanner/trust_models.py +85 -0
  47. codex_plugin_scanner/trust_plugin_scoring.py +180 -0
  48. codex_plugin_scanner/trust_scoring.py +52 -0
  49. codex_plugin_scanner/trust_skill_scoring.py +296 -0
  50. codex_plugin_scanner/trust_specs.py +286 -0
  51. codex_plugin_scanner/verification.py +964 -0
  52. codex_plugin_scanner/version.py +3 -0
  53. plugin_scanner-1.4.15.dist-info/METADATA +596 -0
  54. plugin_scanner-1.4.15.dist-info/RECORD +57 -0
  55. plugin_scanner-1.4.15.dist-info/WHEEL +4 -0
  56. plugin_scanner-1.4.15.dist-info/entry_points.txt +4 -0
  57. plugin_scanner-1.4.15.dist-info/licenses/LICENSE +120 -0
@@ -0,0 +1,120 @@
1
+ SPDX-License-Identifier: Apache-2.0
2
+
3
+ Apache License
4
+ Version 2.0, January 2004
5
+ http://www.apache.org/licenses/
6
+
7
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
8
+
9
+ 1. Definitions.
10
+
11
+ "License" shall mean the terms and conditions for use, reproduction,
12
+ and distribution as defined by Sections 1 through 9 of this document.
13
+
14
+ "Licensor" shall mean the copyright owner or entity authorized by
15
+ the copyright owner that is granting the License.
16
+
17
+ "Legal Entity" shall mean the union of the acting entity and all
18
+ other entities that control, are controlled by, or are under common
19
+ control with that entity.
20
+
21
+ "You" (or "Your") shall mean an individual or Legal Entity
22
+ exercising permissions granted by this License.
23
+
24
+ "Source" form shall mean the preferred form for making modifications,
25
+ including but not limited to software source code, documentation
26
+ source, and configuration files.
27
+
28
+ "Object" form shall mean any form resulting from mechanical
29
+ transformation or translation of a Source form.
30
+
31
+ "Work" shall mean the work of authorship, whether in Source or
32
+ Object form.
33
+
34
+ "Derivative Works" shall mean any work that is based on the Work
35
+ and for which the editorial revisions, annotations, elaborations,
36
+ or other modifications represent, as a whole, an original work of
37
+ authorship.
38
+
39
+ "Contribution" shall mean any work of authorship, including the
40
+ original version of the Work and any modifications or additions.
41
+
42
+ "Contributor" shall mean Licensor and any individual or Legal Entity
43
+ on behalf of whom a Contribution has been received.
44
+
45
+ 2. Grant of Copyright License. Subject to the terms and conditions of
46
+ this License, each Contributor hereby grants to You a perpetual,
47
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
48
+ copyright license to reproduce, prepare Derivative Works of,
49
+ publicly display, publicly perform, sublicense, and distribute the
50
+ Work and such Derivative Works in Source or Object form.
51
+
52
+ 3. Grant of Patent License. Subject to the terms and conditions of
53
+ this License, each Contributor hereby grants to You a perpetual,
54
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
55
+ (except as stated in this section) patent license to make, have made,
56
+ use, offer to sell, sell, import, and otherwise transfer the Work,
57
+ where such license applies only to those patent claims licensable
58
+ by such Contributor that are necessarily infringed by their
59
+ Contribution(s) alone or by combination of their Contribution(s)
60
+ with the Work to which such Contribution(s) was submitted.
61
+
62
+ 4. Redistribution. You may reproduce and distribute copies of the
63
+ Work or Derivative Works thereof in any medium, with or without
64
+ modifications, and in Source or Object form, provided that You
65
+ meet the following conditions:
66
+
67
+ (a) You must give any other recipients of the Work or
68
+ Derivative Works a copy of this License; and
69
+
70
+ (b) You must cause any modified files to carry prominent notices
71
+ stating that You changed the files; and
72
+
73
+ (c) You must retain, in the Source form of any Derivative Works
74
+ that You distribute, all copyright, patent, trademark, and
75
+ attribution notices from the Source form of the Work; and
76
+
77
+ (d) If the Work includes a "NOTICE" text file as part of its
78
+ distribution, then any Derivative Works that You distribute must
79
+ include a readable copy of the attribution notices contained
80
+ within such NOTICE file.
81
+
82
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
83
+ any Contribution intentionally submitted for inclusion in the Work
84
+ by You to the Licensor shall be under the terms and conditions of
85
+ this License, without any additional terms or conditions.
86
+
87
+ 6. Trademarks. This License does not grant permission to use the trade
88
+ names, trademarks, service marks, or product names of the Licensor,
89
+ except as required for reasonable and customary use in describing the
90
+ origin of the Work and reproducing the content of the NOTICE file.
91
+
92
+ 7. Disclaimer of Warranty. Unless required by applicable law or
93
+ agreed to in writing, Licensor provides the Work (and each
94
+ Contributor provides its Contributions) on an "AS IS" BASIS,
95
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
96
+ implied, including, without limitation, any warranties or conditions
97
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
98
+ PARTICULAR PURPOSE.
99
+
100
+ 8. Limitation of Liability. In no event and under no legal theory,
101
+ whether in tort (including negligence), contract, or otherwise,
102
+ unless required by applicable law, Contributor be liable for any
103
+ damages, including any direct, indirect, special, incidental, or
104
+ consequential damages.
105
+
106
+ 9. Accepting Warranty or Additional Liability. While redistributing
107
+ the Work or Derivative Works thereof, You may choose to offer,
108
+ and charge a fee for, acceptance of support, warranty, indemnity,
109
+ or other liability obligations and/or rights consistent with this
110
+ License.
111
+
112
+ END OF TERMS AND CONDITIONS
113
+
114
+ Copyright 2026 Hashgraph Online
115
+
116
+ Licensed under the Apache License, Version 2.0 (the "License");
117
+ you may not use this file except in compliance with the License.
118
+ You may obtain a copy of the License at
119
+
120
+ http://www.apache.org/licenses/LICENSE-2.0