skillctl-secure 0.28.0__tar.gz

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 (122) hide show
  1. skillctl_secure-0.28.0/.gitignore +11 -0
  2. skillctl_secure-0.28.0/LICENSE +202 -0
  3. skillctl_secure-0.28.0/PKG-INFO +292 -0
  4. skillctl_secure-0.28.0/README.md +268 -0
  5. skillctl_secure-0.28.0/pyproject.toml +50 -0
  6. skillctl_secure-0.28.0/skillctl/__init__.py +1 -0
  7. skillctl_secure-0.28.0/skillctl/__main__.py +5 -0
  8. skillctl_secure-0.28.0/skillctl/authcontrols.py +165 -0
  9. skillctl_secure-0.28.0/skillctl/benchmark.py +150 -0
  10. skillctl_secure-0.28.0/skillctl/browsercontrols.py +200 -0
  11. skillctl_secure-0.28.0/skillctl/bulk_cli.py +66 -0
  12. skillctl_secure-0.28.0/skillctl/bulk_plan.py +96 -0
  13. skillctl_secure-0.28.0/skillctl/bulk_update.py +173 -0
  14. skillctl_secure-0.28.0/skillctl/bulk_update_tui.py +196 -0
  15. skillctl_secure-0.28.0/skillctl/cacheutil.py +21 -0
  16. skillctl_secure-0.28.0/skillctl/candidates.py +244 -0
  17. skillctl_secure-0.28.0/skillctl/catalog.py +48 -0
  18. skillctl_secure-0.28.0/skillctl/catalog_discovery.py +67 -0
  19. skillctl_secure-0.28.0/skillctl/catalog_index.py +195 -0
  20. skillctl_secure-0.28.0/skillctl/catalog_schema.py +58 -0
  21. skillctl_secure-0.28.0/skillctl/catalog_search_cli.py +100 -0
  22. skillctl_secure-0.28.0/skillctl/catalog_search_tui.py +188 -0
  23. skillctl_secure-0.28.0/skillctl/cicdflow.py +89 -0
  24. skillctl_secure-0.28.0/skillctl/cli.py +958 -0
  25. skillctl_secure-0.28.0/skillctl/cli_contract.py +71 -0
  26. skillctl_secure-0.28.0/skillctl/compatibility.py +283 -0
  27. skillctl_secure-0.28.0/skillctl/context_cost.py +90 -0
  28. skillctl_secure-0.28.0/skillctl/context_tui.py +84 -0
  29. skillctl_secure-0.28.0/skillctl/copilot_export.py +188 -0
  30. skillctl_secure-0.28.0/skillctl/coverage.py +11 -0
  31. skillctl_secure-0.28.0/skillctl/dedupe.py +14 -0
  32. skillctl_secure-0.28.0/skillctl/doctor.py +113 -0
  33. skillctl_secure-0.28.0/skillctl/entrypoint.py +207 -0
  34. skillctl_secure-0.28.0/skillctl/environments.py +193 -0
  35. skillctl_secure-0.28.0/skillctl/estimate.py +136 -0
  36. skillctl_secure-0.28.0/skillctl/evidence.py +133 -0
  37. skillctl_secure-0.28.0/skillctl/findings.py +37 -0
  38. skillctl_secure-0.28.0/skillctl/flow.py +126 -0
  39. skillctl_secure-0.28.0/skillctl/governor.py +50 -0
  40. skillctl_secure-0.28.0/skillctl/hardening.py +195 -0
  41. skillctl_secure-0.28.0/skillctl/history_tui.py +149 -0
  42. skillctl_secure-0.28.0/skillctl/iac.py +95 -0
  43. skillctl_secure-0.28.0/skillctl/install_intent.py +148 -0
  44. skillctl_secure-0.28.0/skillctl/install_review.py +58 -0
  45. skillctl_secure-0.28.0/skillctl/intent_diff.py +97 -0
  46. skillctl_secure-0.28.0/skillctl/journal.py +157 -0
  47. skillctl_secure-0.28.0/skillctl/journal_hooks.py +37 -0
  48. skillctl_secure-0.28.0/skillctl/journal_operations.py +148 -0
  49. skillctl_secure-0.28.0/skillctl/lockfile.py +59 -0
  50. skillctl_secure-0.28.0/skillctl/manager.py +1533 -0
  51. skillctl_secure-0.28.0/skillctl/models.py +56 -0
  52. skillctl_secure-0.28.0/skillctl/navigation_tui.py +92 -0
  53. skillctl_secure-0.28.0/skillctl/operation_lock.py +111 -0
  54. skillctl_secure-0.28.0/skillctl/packet.py +46 -0
  55. skillctl_secure-0.28.0/skillctl/paths.py +35 -0
  56. skillctl_secure-0.28.0/skillctl/permissions.py +20 -0
  57. skillctl_secure-0.28.0/skillctl/policy.py +96 -0
  58. skillctl_secure-0.28.0/skillctl/policy_editor.py +146 -0
  59. skillctl_secure-0.28.0/skillctl/precision.py +197 -0
  60. skillctl_secure-0.28.0/skillctl/profiles.py +89 -0
  61. skillctl_secure-0.28.0/skillctl/publishers.py +25 -0
  62. skillctl_secure-0.28.0/skillctl/ranking.py +87 -0
  63. skillctl_secure-0.28.0/skillctl/recommendation.py +153 -0
  64. skillctl_secure-0.28.0/skillctl/recommendation_tui.py +351 -0
  65. skillctl_secure-0.28.0/skillctl/reconcile_cli.py +181 -0
  66. skillctl_secure-0.28.0/skillctl/reconcile_recovery.py +267 -0
  67. skillctl_secure-0.28.0/skillctl/reconcile_transaction.py +274 -0
  68. skillctl_secure-0.28.0/skillctl/reconcile_tui.py +335 -0
  69. skillctl_secure-0.28.0/skillctl/reconciliation.py +253 -0
  70. skillctl_secure-0.28.0/skillctl/remote.py +163 -0
  71. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/answer-key.yaml +122 -0
  72. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/.env +2 -0
  73. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/.github/workflows/build.yml +19 -0
  74. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/README.md +6 -0
  75. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/app.py +35 -0
  76. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/openapi.yaml +6 -0
  77. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/requirements.txt +2 -0
  78. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/scripts/build.sh +4 -0
  79. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/templates/payment.html +4 -0
  80. skillctl_secure-0.28.0/skillctl/resources/benchmarks/vulnlab/target/trivy-results.json +16 -0
  81. skillctl_secure-0.28.0/skillctl/resources/custom/.gitkeep +0 -0
  82. skillctl_secure-0.28.0/skillctl/resources/custom/api-security-review/SKILL.md +149 -0
  83. skillctl_secure-0.28.0/skillctl/resources/custom/api-security-review/references/inventory-template.md +8 -0
  84. skillctl_secure-0.28.0/skillctl/resources/custom/api-security-review/references/output-template.md +33 -0
  85. skillctl_secure-0.28.0/skillctl/resources/custom/biso-security-review/SKILL.md +135 -0
  86. skillctl_secure-0.28.0/skillctl/resources/custom/biso-security-review/references/disposition.md +15 -0
  87. skillctl_secure-0.28.0/skillctl/resources/custom/biso-security-review/references/orchestration.md +46 -0
  88. skillctl_secure-0.28.0/skillctl/resources/custom/biso-security-review/references/output-template.md +55 -0
  89. skillctl_secure-0.28.0/skillctl/resources/custom/biso-security-review/references/review-checklist.md +36 -0
  90. skillctl_secure-0.28.0/skillctl/resources/custom/biso-security-review/references/risk-rating.md +16 -0
  91. skillctl_secure-0.28.0/skillctl/resources/custom/cicd-security-review/SKILL.md +133 -0
  92. skillctl_secure-0.28.0/skillctl/resources/custom/cicd-security-review/references/output-template.md +27 -0
  93. skillctl_secure-0.28.0/skillctl/resources/custom/pci-architect/SKILL.md +109 -0
  94. skillctl_secure-0.28.0/skillctl/resources/custom/pci-architect/references/control-matrix.md +12 -0
  95. skillctl_secure-0.28.0/skillctl/resources/custom/pci-architect/references/output-template.md +44 -0
  96. skillctl_secure-0.28.0/skillctl/resources/custom/threat-model/SKILL.md +69 -0
  97. skillctl_secure-0.28.0/skillctl/resources/custom/threat-model/references/output-template.md +44 -0
  98. skillctl_secure-0.28.0/skillctl/resources/custom/threat-model/references/risk-rating.md +25 -0
  99. skillctl_secure-0.28.0/skillctl/resources/custom/vulnerability-manager/SKILL.md +132 -0
  100. skillctl_secure-0.28.0/skillctl/resources/custom/vulnerability-manager/references/escalation.md +18 -0
  101. skillctl_secure-0.28.0/skillctl/resources/custom/vulnerability-manager/references/output-template.md +21 -0
  102. skillctl_secure-0.28.0/skillctl/resources/custom/vulnerability-manager/references/prioritization.md +36 -0
  103. skillctl_secure-0.28.0/skillctl/resources/finding-schema.json +131 -0
  104. skillctl_secure-0.28.0/skillctl/resources/skills.yaml +1907 -0
  105. skillctl_secure-0.28.0/skillctl/review.py +495 -0
  106. skillctl_secure-0.28.0/skillctl/review_candidates.py +43 -0
  107. skillctl_secure-0.28.0/skillctl/risk_acknowledgment.py +33 -0
  108. skillctl_secure-0.28.0/skillctl/runtime_binding.py +141 -0
  109. skillctl_secure-0.28.0/skillctl/safety_plan.py +156 -0
  110. skillctl_secure-0.28.0/skillctl/section_navigation.py +37 -0
  111. skillctl_secure-0.28.0/skillctl/stagecache.py +92 -0
  112. skillctl_secure-0.28.0/skillctl/stateio.py +55 -0
  113. skillctl_secure-0.28.0/skillctl/transactions.py +131 -0
  114. skillctl_secure-0.28.0/skillctl/trust.py +72 -0
  115. skillctl_secure-0.28.0/skillctl/tui.py +304 -0
  116. skillctl_secure-0.28.0/skillctl/tui_interaction.py +125 -0
  117. skillctl_secure-0.28.0/skillctl/tui_original.py +1646 -0
  118. skillctl_secure-0.28.0/skillctl/tui_progressive.py +102 -0
  119. skillctl_secure-0.28.0/skillctl/tui_refresh.py +286 -0
  120. skillctl_secure-0.28.0/skillctl/update_intent_review.py +74 -0
  121. skillctl_secure-0.28.0/skillctl/update_intent_tui.py +57 -0
  122. skillctl_secure-0.28.0/skillctl/vulnnormalize.py +114 -0
@@ -0,0 +1,11 @@
1
+ .venv
2
+ __pycache__/
3
+ *.py[cod]
4
+ .pytest_cache/
5
+ dist/
6
+ build/
7
+ *.egg-info/
8
+ .DS_Store
9
+ .tmp/
10
+ .skillctl-reviews/
11
+ .maintenance/
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
@@ -0,0 +1,292 @@
1
+ Metadata-Version: 2.5
2
+ Name: skillctl-secure
3
+ Version: 0.28.0
4
+ Summary: Package manager, trust layer, and portability layer for Agent Skills
5
+ Project-URL: Homepage, https://github.com/brian-scardina/skillctl
6
+ Project-URL: Repository, https://github.com/brian-scardina/skillctl
7
+ Project-URL: Documentation, https://github.com/brian-scardina/skillctl/tree/main/docs
8
+ Project-URL: Issues, https://github.com/brian-scardina/skillctl/issues
9
+ License-Expression: Apache-2.0
10
+ License-File: LICENSE
11
+ Requires-Python: >=3.10
12
+ Requires-Dist: packaging>=24.0
13
+ Requires-Dist: pyyaml<7,>=6
14
+ Requires-Dist: rich>=13
15
+ Requires-Dist: textual>=1.0
16
+ Requires-Dist: typer>=0.12
17
+ Provides-Extra: dev
18
+ Requires-Dist: pyinstaller<7,>=6; extra == 'dev'
19
+ Requires-Dist: pytest-asyncio<2,>=0.23; extra == 'dev'
20
+ Requires-Dist: pytest-timeout<3,>=2.4; extra == 'dev'
21
+ Requires-Dist: pytest<10,>=8; extra == 'dev'
22
+ Requires-Dist: tomli>=2; (python_version < '3.11') and extra == 'dev'
23
+ Description-Content-Type: text/markdown
24
+
25
+ # skillctl
26
+
27
+ **Package manager, trust layer, and portability layer for AI Agent Skills.**
28
+
29
+ skillctl discovers, audits, installs, updates, pins, inventories, and exposes Agent
30
+ Skills to compatible AI hosts while preserving publisher provenance and local policy.
31
+
32
+ ```bash
33
+ skillctl
34
+ ```
35
+
36
+ > Python distribution: `skillctl-secure`. Product name, import package, and console
37
+ > command remain `skillctl`.
38
+
39
+ ## Quick start
40
+
41
+ ### Recommended: install with uv
42
+
43
+ Install [uv](https://docs.astral.sh/uv/getting-started/installation/) once, then:
44
+
45
+ ```bash
46
+ uv tool install --python 3.12 skillctl-secure
47
+ skillctl
48
+ ```
49
+
50
+ Works on macOS, Linux, and Windows. uv automatically downloads Python when needed
51
+ and installs skillctl in an isolated environment. No Apple developer membership,
52
+ Windows signing subscription, administrator access, or source checkout is required.
53
+
54
+ If you have the convenience installer from this repository or a release, it handles
55
+ uv setup and installs the same Python package:
56
+
57
+ ```bash
58
+ sh ./install.sh # macOS / Linux
59
+ ```
60
+
61
+ ```powershell
62
+ powershell -NoProfile -ExecutionPolicy Bypass -File .\install.ps1
63
+ ```
64
+
65
+ The PowerShell policy override applies only to this installer process. Managed
66
+ organization policies may still restrict installation.
67
+
68
+ Update or remove the application:
69
+
70
+ ```bash
71
+ uv tool upgrade skillctl-secure
72
+ uv tool uninstall skillctl-secure
73
+ ```
74
+
75
+ Uninstalling the application leaves your skills and state intact. `pipx install
76
+ skillctl-secure` is also supported if you already use pipx.
77
+
78
+ ### Optional standalone executables
79
+
80
+ Self-contained native executables remain an optional release channel, enabled by
81
+ maintainers only after native signing is provisioned. Python releases do not depend
82
+ on Apple or Windows credentials. GitHub release files include SHA-256 checksums and
83
+ keyless Sigstore signatures; see [release verification](docs/VERIFY-RELEASE.md).
84
+
85
+ For contributors:
86
+
87
+ ```bash
88
+ uv sync --extra dev
89
+ uv run skillctl
90
+ ```
91
+
92
+ See [`docs/FIRST-RUN.md`](docs/FIRST-RUN.md) for the safe first-use walkthrough and
93
+ [`docs/PORTABLE-INSTALL.md`](docs/PORTABLE-INSTALL.md) for the distribution/release model.
94
+ Release authors should use [`docs/RELEASE-NOTES-TEMPLATE.md`](docs/RELEASE-NOTES-TEMPLATE.md).
95
+
96
+ ## Supported hosts
97
+
98
+ | Host | Agent Skills format | skillctl |
99
+ |---|---|---|
100
+ | GitHub Copilot | Native | Native personal path via `~/.agents/skills` |
101
+ | OpenAI Codex | Native/compatible | Native |
102
+ | Claude Code | Agent Skills-compatible | Portable/partial depending on skill tools |
103
+ | Microsoft 365 Copilot | Different agent model | Export adapter available; review required before import |
104
+
105
+ ```bash
106
+ skillctl hosts
107
+ skillctl compatibility <skill>
108
+ ```
109
+
110
+ Format compatibility and skill runtime compatibility are intentionally separate.
111
+
112
+ ## Architecture and host compatibility
113
+
114
+ skillctl deliberately separates skill lifecycle/trust from the AI host that executes
115
+ the skill. The default runtime target is `~/.agents/skills`, a vendor-neutral Agent
116
+ Skills location that is also supported by GitHub Copilot.
117
+
118
+ - [Architecture](docs/ARCHITECTURE.md)
119
+ - [Portable installation](docs/PORTABLE-INSTALL.md)
120
+ - [First run](docs/FIRST-RUN.md)
121
+ - [Host compatibility](docs/HOST-COMPATIBILITY.md)
122
+ - [Release notes template](docs/RELEASE-NOTES-TEMPLATE.md)
123
+
124
+ ## Trust states
125
+
126
+ - **VERIFIED** — explicitly trusted source/publisher.
127
+ - **AUDITED** — skillctl audit completed.
128
+ - **REVIEWED** — user explicitly reviewed and overrode HIGH findings.
129
+ - **UNVERIFIED** — no trust/audit evidence yet.
130
+ - **MODIFIED** — installed contents no longer match the install-time digest.
131
+
132
+ ## Skill Inspector
133
+
134
+ ```bash
135
+ skillctl inspect archify
136
+ ```
137
+
138
+ The TUI inspector shows provenance, versions, license, trust, integrity, dependencies,
139
+ dependents, audit results, and observed capabilities.
140
+
141
+ ## Dependency management
142
+
143
+ ```bash
144
+ skillctl dependency-plan biso-security-review
145
+ skillctl install biso-security-review
146
+ ```
147
+
148
+ Installation automatically installs missing dependencies. Uninstalling a dependency
149
+ required by another installed skill is blocked unless `--force` is explicitly used.
150
+
151
+ ## Profiles
152
+
153
+ ```bash
154
+ skillctl profile-save Security --description "Security review toolbox"
155
+ skillctl profile-apply Security
156
+ skillctl profile-apply Security --prune
157
+ ```
158
+
159
+ Default profile application is additive. `--prune` makes it a true switch.
160
+
161
+ ## Reproducible toolbox export
162
+
163
+ ```bash
164
+ skillctl toolbox-export ~/skillctl-toolbox.yaml
165
+ skillctl toolbox-restore ~/skillctl-toolbox.yaml
166
+ ```
167
+
168
+ Git-backed skills restore at the recorded installed commit when possible.
169
+
170
+ ## Collections
171
+
172
+ ```bash
173
+ skillctl collections
174
+ skillctl collection-install starter
175
+ skillctl collection-install architecture
176
+ skillctl collection-install security-workbench
177
+ ```
178
+
179
+ ## Workbenches
180
+
181
+ ```bash
182
+ skillctl workbenches
183
+ ```
184
+
185
+ Security Review remains an optional workbench built on top of the skill package manager.
186
+
187
+ ## Policy
188
+
189
+ Policy is enforced during installation and lives at `~/.skillctl/policy.yaml`.
190
+
191
+ ```bash
192
+ skillctl policy
193
+ skillctl policy archify
194
+ ```
195
+
196
+ Use the **Policy** tab/button in the TUI (`P`) to inspect rules and a selected
197
+ skill's ALLOW / REVIEW / DENY decision. Existing corrupt policy files fail closed;
198
+ an explicit policy DENY cannot be overridden by `--force`.
199
+
200
+ ## Doctor
201
+
202
+ ```bash
203
+ skillctl doctor
204
+ ```
205
+
206
+ Doctor checks runtime tools, manifest health, installed-skill integrity,
207
+ dependency graphs, audit freshness/errors, profiles, and collections. It is
208
+ also available directly from the **Doctor** tab/button (`D`) in the TUI.
209
+
210
+ ## Safe updates and lockfile
211
+
212
+ Use `skillctl update-review <skill>` or the TUI update flow to compare the exact
213
+ proposed commit. `skillctl lock`, `lock-status`, and `lock-restore` manage
214
+ `skillctl.lock`; use the Toolbox TUI view (`L`) for the same health information.
215
+
216
+ For reviewed environment changes, generate a reconciliation artifact before applying it:
217
+
218
+ ```bash
219
+ skillctl reconcile-plan default --desired <skill-name> --output reviewed-plan.json
220
+ skillctl reconcile-apply reviewed-plan.json --ack-review
221
+ ```
222
+
223
+ Tampered, stale, preview-only, or source-drifted review artifacts are refused.
224
+
225
+ ## Declared permissions
226
+
227
+ Skills may declare `permissions:` in SKILL.md frontmatter. skillctl compares the
228
+ declaration with observed capabilities and reports MATCH / DRIFT / UNDECLARED.
229
+ Use the Permissions TUI view (`M`) or `skillctl permissions <skill>`.
230
+
231
+ ## Catalog & publishers
232
+
233
+ ```bash
234
+ skillctl catalog
235
+ skillctl catalog security
236
+ skillctl publishers
237
+ skillctl publisher-trust tt-a1i
238
+ ```
239
+
240
+ The TUI Available view shows publisher/category metadata and search includes
241
+ publisher and tags. The **Publishers** view (`T`) shows local trust state.
242
+
243
+ Publisher trust is intentionally a local governance signal, not a claim of
244
+ cryptographic publisher identity. Signed provenance is a later milestone.
245
+
246
+ ## Isolated environments
247
+
248
+ The `default` environment preserves the existing configured install path. New
249
+ environments receive separate install/state/lock roots:
250
+
251
+ ```text
252
+ ~/.skillctl/environments/Security/
253
+ skills/
254
+ state.json
255
+ skillctl.lock
256
+ ```
257
+
258
+ Use the **Environments** TUI view (`E`) and **New Env** (`N`), or:
259
+
260
+ ```bash
261
+ skillctl environments
262
+ skillctl environment-create Security --description "Security review toolbox"
263
+ skillctl environment-use Security
264
+ skillctl environment-apply Security
265
+ ```
266
+
267
+ Activation changes skillctl's active management context. Runtime binding is an explicit,
268
+ reversible operation; skillctl does not replace an external runtime directory implicitly.
269
+
270
+ ## Environment lifecycle
271
+
272
+ The TUI Environments view supports:
273
+
274
+ - **Activate** — switch skillctl's management context.
275
+ - **Clone Current** — copy installed skills, state/provenance, and lockfile.
276
+ - **Rename** — rename an isolated environment.
277
+ - **Delete** — delete an inactive environment definition.
278
+ - **Bind Runtime** — explicitly expose an isolated environment to the external agent runtime.
279
+ - **Unbind Runtime** — restore the pre-binding runtime path.
280
+
281
+ CLI equivalents and additional operational details are documented in the environment and reconciliation guides.
282
+
283
+ ## Recovery and upgrades
284
+
285
+ Reconciliation uses durable transaction metadata so process interruption can be recovered
286
+ or refused safely before another mutation. Do not delete authoritative state to bypass a
287
+ recovery or schema error.
288
+
289
+ - [Recovery and troubleshooting](docs/RECOVERY.md)
290
+ - [Environment reconciliation](docs/RECONCILIATION.md)
291
+ - [Upgrade and persisted-format guidance](docs/UPGRADES.md)
292
+ - [CLI/API contract](docs/CLI-CONTRACT.md)