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.
Files changed (2) hide show
  1. package/README.md +14 -14
  2. 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 on the 1.0 readiness track.
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 Readiness
22
-
23
- The 0.21.x line is reserved for release-candidate readiness work rather than new feature expansion.
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 release candidates should add no new feature work unless a blocker is discovered.
29
-
30
- See [v1.0 Readiness Checklist](./docs/engineering/v1.0-readiness-checklist.md) for the exact RC smoke plan.
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@v4
345
- - uses: Esquetta/CodexPluginDoctor@v1.0.0-rc.2
344
+ - uses: actions/checkout@v5
345
+ - uses: Esquetta/CodexPluginDoctor@v1.0.0
346
346
  with:
347
- version: "1.0.0-rc.2"
347
+ version: "1.0.0"
348
348
  path: .
349
349
  runtime: "true"
350
350
  policy: codex-publish
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codex-plugin-doctor",
3
- "version": "1.0.0-rc.2",
3
+ "version": "1.0.0",
4
4
  "description": "CLI-first validator for Codex plugins, skills, and MCP package surfaces with runtime MCP protocol validation.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",