codex-plugin-doctor 0.1.1 → 0.1.2
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.
- package/README.md +11 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -71,9 +71,11 @@ Global install from npm:
|
|
|
71
71
|
|
|
72
72
|
```bash
|
|
73
73
|
npm install -g codex-plugin-doctor
|
|
74
|
-
codex-plugin-doctor check
|
|
74
|
+
codex-plugin-doctor check path/to/plugin-package
|
|
75
75
|
```
|
|
76
76
|
|
|
77
|
+
Run `codex-plugin-doctor check .` from the root of a Codex plugin package that contains `.codex-plugin/plugin.json`. The Codex Plugin Doctor source repository is not itself a plugin package.
|
|
78
|
+
|
|
77
79
|
Run from source:
|
|
78
80
|
|
|
79
81
|
```bash
|
|
@@ -139,6 +141,8 @@ x plugin.security.hard_coded_secret
|
|
|
139
141
|
|
|
140
142
|
## Useful Commands
|
|
141
143
|
|
|
144
|
+
Run these from a Codex plugin package root:
|
|
145
|
+
|
|
142
146
|
```bash
|
|
143
147
|
codex-plugin-doctor check .
|
|
144
148
|
codex-plugin-doctor check . --json
|
|
@@ -150,6 +154,12 @@ codex-plugin-doctor check . --runtime
|
|
|
150
154
|
codex-plugin-doctor check . --json --runtime --verbose-runtime
|
|
151
155
|
```
|
|
152
156
|
|
|
157
|
+
To self-test this repository after cloning it:
|
|
158
|
+
|
|
159
|
+
```bash
|
|
160
|
+
codex-plugin-doctor check examples/codex-doctor-runtime --runtime --no-animations
|
|
161
|
+
```
|
|
162
|
+
|
|
153
163
|
## Repository Layout
|
|
154
164
|
|
|
155
165
|
```text
|
package/package.json
CHANGED