codex-plugin-doctor 1.0.0-rc.2 → 1.0.0
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 +14 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,23 +11,23 @@ It catches packaging, metadata, security, and runtime protocol problems before a
|
|
|
11
11
|
|
|
12
12
|
## Status
|
|
13
13
|
|
|
14
|
-
Codex Plugin Doctor is a public CLI
|
|
14
|
+
Codex Plugin Doctor is a public stable CLI for local and CI validation.
|
|
15
15
|
|
|
16
16
|
- Primary surface: GitHub repository and npm package
|
|
17
17
|
- Distribution today: `npm install -g`, local source install, `npm link`, `npm pack`, GitHub Releases
|
|
18
18
|
- Public npm package: `codex-plugin-doctor`
|
|
19
19
|
- License: [MIT](./LICENSE)
|
|
20
20
|
|
|
21
|
-
## 1.0
|
|
22
|
-
|
|
23
|
-
The 0
|
|
24
|
-
|
|
25
|
-
- Public JSON schema surfaces and existing rule IDs/default severities are treated as stable through 1.0.
|
|
26
|
-
- Runtime probing remains opt-in because it executes package-local MCP servers.
|
|
27
|
-
- The project remains Codex-first; broader MCP Doctor positioning stays a post-1.0 expansion path.
|
|
28
|
-
- 1.0
|
|
29
|
-
|
|
30
|
-
See [v1.0 Readiness Checklist](./docs/engineering/v1.0-readiness-checklist.md) for the
|
|
21
|
+
## 1.0 Stability
|
|
22
|
+
|
|
23
|
+
The 1.0 line is the stable compatibility baseline for plugin authors and CI consumers.
|
|
24
|
+
|
|
25
|
+
- Public JSON schema surfaces and existing rule IDs/default severities are treated as stable through 1.0.
|
|
26
|
+
- Runtime probing remains opt-in because it executes package-local MCP servers.
|
|
27
|
+
- The project remains Codex-first; broader MCP Doctor positioning stays a post-1.0 expansion path.
|
|
28
|
+
- Post-1.0 feature work should stay additive unless a documented major-version decision is made.
|
|
29
|
+
|
|
30
|
+
See [v1.0 Readiness Checklist](./docs/engineering/v1.0-readiness-checklist.md) for the stable release evidence and smoke plan.
|
|
31
31
|
|
|
32
32
|
## Why This Exists
|
|
33
33
|
|
|
@@ -341,10 +341,10 @@ jobs:
|
|
|
341
341
|
doctor:
|
|
342
342
|
runs-on: ubuntu-latest
|
|
343
343
|
steps:
|
|
344
|
-
- uses: actions/checkout@
|
|
345
|
-
- uses: Esquetta/CodexPluginDoctor@v1.0.0
|
|
344
|
+
- uses: actions/checkout@v5
|
|
345
|
+
- uses: Esquetta/CodexPluginDoctor@v1.0.0
|
|
346
346
|
with:
|
|
347
|
-
version: "1.0.0
|
|
347
|
+
version: "1.0.0"
|
|
348
348
|
path: .
|
|
349
349
|
runtime: "true"
|
|
350
350
|
policy: codex-publish
|
package/package.json
CHANGED