diff --git a/.changeset/quiet-roads-codex.md b/.changeset/quiet-roads-codex.md deleted file mode 100644 index 25b326f2d..000000000 --- a/.changeset/quiet-roads-codex.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@windyroad/c4": minor -"@windyroad/connect": minor -"@windyroad/jtbd": minor -"@windyroad/retrospective": minor -"@windyroad/style-guide": minor -"@windyroad/tdd": minor -"@windyroad/voice-tone": minor ---- - -Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. diff --git a/packages/c4/.claude-plugin/plugin.json b/packages/c4/.claude-plugin/plugin.json index 6482eda41..304633f40 100644 --- a/packages/c4/.claude-plugin/plugin.json +++ b/packages/c4/.claude-plugin/plugin.json @@ -31,5 +31,5 @@ } }, "name": "wr-c4", - "version": "0.1.7" + "version": "0.2.0" } diff --git a/packages/c4/.codex-plugin/plugin.json b/packages/c4/.codex-plugin/plugin.json index e57124fe8..4ab4d5b80 100644 --- a/packages/c4/.codex-plugin/plugin.json +++ b/packages/c4/.codex-plugin/plugin.json @@ -1,12 +1,21 @@ { "name": "wr-c4", - "version": "0.1.7", + "version": "0.2.0", "description": "C4 architecture diagram generation and validation", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/c4", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["c4", "architecture", "diagrams", "codex", "claude-code"], + "keywords": [ + "c4", + "architecture", + "diagrams", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road C4", @@ -14,11 +23,18 @@ "longDescription": "Generate C4 architecture diagrams from a codebase and validate existing diagrams against C4 structure and notation.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Generate a C4 diagram for this codebase", "Check these C4 diagrams"], + "defaultPrompt": [ + "Generate a C4 diagram for this codebase", + "Check these C4 diagrams" + ], "brandColor": "#475569", "screenshots": [] } diff --git a/packages/c4/CHANGELOG.md b/packages/c4/CHANGELOG.md index f144094a9..deb0da200 100644 --- a/packages/c4/CHANGELOG.md +++ b/packages/c4/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/c4 +## 0.2.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.1.7 ### Patch Changes diff --git a/packages/c4/package.json b/packages/c4/package.json index 55fdd40a8..aaa604105 100644 --- a/packages/c4/package.json +++ b/packages/c4/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/c4", - "version": "0.1.7", + "version": "0.2.0", "description": "C4 architecture diagram generation and validation", "bin": { "windyroad-c4": "./bin/install.mjs" diff --git a/packages/connect/.claude-plugin/plugin.json b/packages/connect/.claude-plugin/plugin.json index 06141ec6a..48586ad67 100644 --- a/packages/connect/.claude-plugin/plugin.json +++ b/packages/connect/.claude-plugin/plugin.json @@ -44,5 +44,5 @@ } }, "name": "wr-connect", - "version": "0.3.10" + "version": "0.4.0" } diff --git a/packages/connect/.codex-plugin/plugin.json b/packages/connect/.codex-plugin/plugin.json index 7bcc6b2df..2cbc4b3d4 100644 --- a/packages/connect/.codex-plugin/plugin.json +++ b/packages/connect/.codex-plugin/plugin.json @@ -1,12 +1,21 @@ { "name": "wr-connect", - "version": "0.3.10", + "version": "0.4.0", "description": "Connect coding-agent sessions across repositories via Discord", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/connect", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["collaboration", "discord", "cross-repo", "codex", "claude-code"], + "keywords": [ + "collaboration", + "discord", + "cross-repo", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road Connect", @@ -14,11 +23,18 @@ "longDescription": "Set up and use an experimental Discord bridge for coordinating coding-agent sessions across repositories.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Set up Windy Road Connect", "Send a message to another repository session"], + "defaultPrompt": [ + "Set up Windy Road Connect", + "Send a message to another repository session" + ], "brandColor": "#5865F2", "screenshots": [] } diff --git a/packages/connect/CHANGELOG.md b/packages/connect/CHANGELOG.md index 1017a2a1e..da10723ce 100644 --- a/packages/connect/CHANGELOG.md +++ b/packages/connect/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/connect +## 0.4.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.3.10 ### Patch Changes diff --git a/packages/connect/package.json b/packages/connect/package.json index 4a44b078f..ce615f518 100644 --- a/packages/connect/package.json +++ b/packages/connect/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/connect", - "version": "0.3.10", + "version": "0.4.0", "description": "Connect Claude Code sessions across repos via Discord (experimental)", "bin": { "windyroad-connect": "./bin/install.mjs" diff --git a/packages/jtbd/.claude-plugin/plugin.json b/packages/jtbd/.claude-plugin/plugin.json index 6855cc59a..db96359d0 100644 --- a/packages/jtbd/.claude-plugin/plugin.json +++ b/packages/jtbd/.claude-plugin/plugin.json @@ -90,5 +90,5 @@ } }, "name": "wr-jtbd", - "version": "0.13.3" + "version": "0.14.0" } diff --git a/packages/jtbd/.codex-plugin/plugin.json b/packages/jtbd/.codex-plugin/plugin.json index e331afa4e..9f48ce515 100644 --- a/packages/jtbd/.codex-plugin/plugin.json +++ b/packages/jtbd/.codex-plugin/plugin.json @@ -1,12 +1,22 @@ { "name": "wr-jtbd", - "version": "0.13.3", + "version": "0.14.0", "description": "Jobs-to-be-done governance for product changes", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/jtbd", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["jtbd", "product", "personas", "governance", "codex", "claude-code"], + "keywords": [ + "jtbd", + "product", + "personas", + "governance", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road JTBD", @@ -14,11 +24,18 @@ "longDescription": "Review product changes against documented jobs and personas, update the JTBD guide, and confirm human oversight.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Review these changes against our jobs and personas", "Update the JTBD guide"], + "defaultPrompt": [ + "Review these changes against our jobs and personas", + "Update the JTBD guide" + ], "brandColor": "#7C3AED", "screenshots": [] } diff --git a/packages/jtbd/CHANGELOG.md b/packages/jtbd/CHANGELOG.md index 3ecece28b..e03f68d69 100644 --- a/packages/jtbd/CHANGELOG.md +++ b/packages/jtbd/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/jtbd +## 0.14.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.13.3 ### Patch Changes diff --git a/packages/jtbd/package.json b/packages/jtbd/package.json index 88a022064..5263cf841 100644 --- a/packages/jtbd/package.json +++ b/packages/jtbd/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/jtbd", - "version": "0.13.3", + "version": "0.14.0", "description": "Jobs-to-be-done enforcement for UI changes", "bin": { "windyroad-jtbd": "./bin/install.mjs" diff --git a/packages/retrospective/.claude-plugin/plugin.json b/packages/retrospective/.claude-plugin/plugin.json index cc2c782e9..a7c62602d 100644 --- a/packages/retrospective/.claude-plugin/plugin.json +++ b/packages/retrospective/.claude-plugin/plugin.json @@ -78,5 +78,5 @@ } }, "name": "wr-retrospective", - "version": "0.27.5" + "version": "0.28.0" } diff --git a/packages/retrospective/.codex-plugin/plugin.json b/packages/retrospective/.codex-plugin/plugin.json index e16d3363d..a42ca697d 100644 --- a/packages/retrospective/.codex-plugin/plugin.json +++ b/packages/retrospective/.codex-plugin/plugin.json @@ -1,12 +1,21 @@ { "name": "wr-retrospective", - "version": "0.27.5", + "version": "0.28.0", "description": "Session retrospectives, context analysis, and briefing maintenance", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/retrospective", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["retrospective", "briefing", "context", "codex", "claude-code"], + "keywords": [ + "retrospective", + "briefing", + "context", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road Retrospective", @@ -14,11 +23,18 @@ "longDescription": "Analyse session context, run evidence-based retrospectives, maintain project briefings, and capture improvement work.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Run a retrospective for this session", "Analyse current context usage"], + "defaultPrompt": [ + "Run a retrospective for this session", + "Analyse current context usage" + ], "brandColor": "#0F766E", "screenshots": [] } diff --git a/packages/retrospective/CHANGELOG.md b/packages/retrospective/CHANGELOG.md index 1a648fe6a..6e4e98018 100644 --- a/packages/retrospective/CHANGELOG.md +++ b/packages/retrospective/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/retrospective +## 0.28.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.27.5 ### Patch Changes diff --git a/packages/retrospective/package.json b/packages/retrospective/package.json index afd880210..e437dc7c1 100644 --- a/packages/retrospective/package.json +++ b/packages/retrospective/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/retrospective", - "version": "0.27.5", + "version": "0.28.0", "description": "Session retrospectives that update briefings and create problem tickets", "bin": { "windyroad-retrospective": "./bin/install.mjs" diff --git a/packages/style-guide/.claude-plugin/plugin.json b/packages/style-guide/.claude-plugin/plugin.json index 4d6bafe32..b14c507f5 100644 --- a/packages/style-guide/.claude-plugin/plugin.json +++ b/packages/style-guide/.claude-plugin/plugin.json @@ -79,5 +79,5 @@ } }, "name": "wr-style-guide", - "version": "0.5.3" + "version": "0.6.0" } diff --git a/packages/style-guide/.codex-plugin/plugin.json b/packages/style-guide/.codex-plugin/plugin.json index 83a0b057c..f503b93e6 100644 --- a/packages/style-guide/.codex-plugin/plugin.json +++ b/packages/style-guide/.codex-plugin/plugin.json @@ -1,12 +1,21 @@ { "name": "wr-style-guide", - "version": "0.5.3", + "version": "0.6.0", "description": "Style-guide governance for CSS and UI components", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/style-guide", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["style-guide", "css", "design-system", "codex", "claude-code"], + "keywords": [ + "style-guide", + "css", + "design-system", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road Style Guide", @@ -14,11 +23,18 @@ "longDescription": "Review visual changes against a project style guide and keep the guide aligned with established design patterns.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Review this styling change against the style guide", "Update the project style guide"], + "defaultPrompt": [ + "Review this styling change against the style guide", + "Update the project style guide" + ], "brandColor": "#DB2777", "screenshots": [] } diff --git a/packages/style-guide/CHANGELOG.md b/packages/style-guide/CHANGELOG.md index 5f02157c6..08e5ee660 100644 --- a/packages/style-guide/CHANGELOG.md +++ b/packages/style-guide/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/style-guide +## 0.6.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.5.3 ### Patch Changes diff --git a/packages/style-guide/package.json b/packages/style-guide/package.json index 86eeb9a1a..24d0274f9 100644 --- a/packages/style-guide/package.json +++ b/packages/style-guide/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/style-guide", - "version": "0.5.3", + "version": "0.6.0", "description": "Style guide enforcement for CSS and UI components", "bin": { "windyroad-style-guide": "./bin/install.mjs" diff --git a/packages/tdd/.claude-plugin/plugin.json b/packages/tdd/.claude-plugin/plugin.json index 1016028b9..dc6b92789 100644 --- a/packages/tdd/.claude-plugin/plugin.json +++ b/packages/tdd/.claude-plugin/plugin.json @@ -101,5 +101,5 @@ } }, "name": "wr-tdd", - "version": "0.5.3" + "version": "0.6.0" } diff --git a/packages/tdd/.codex-plugin/plugin.json b/packages/tdd/.codex-plugin/plugin.json index bf9c90047..a2335a203 100644 --- a/packages/tdd/.codex-plugin/plugin.json +++ b/packages/tdd/.codex-plugin/plugin.json @@ -1,12 +1,21 @@ { "name": "wr-tdd", - "version": "0.5.3", + "version": "0.6.0", "description": "Test-driven development state-machine governance", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/tdd", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["tdd", "testing", "red-green-refactor", "codex", "claude-code"], + "keywords": [ + "tdd", + "testing", + "red-green-refactor", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road TDD", @@ -14,11 +23,18 @@ "longDescription": "Set up test commands, enforce red-green-refactor sequencing, and classify tests as behavioural or structural.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Set up TDD for this repository", "Review whether this test is behavioural"], + "defaultPrompt": [ + "Set up TDD for this repository", + "Review whether this test is behavioural" + ], "brandColor": "#DC2626", "screenshots": [] } diff --git a/packages/tdd/CHANGELOG.md b/packages/tdd/CHANGELOG.md index f5c158613..914201877 100644 --- a/packages/tdd/CHANGELOG.md +++ b/packages/tdd/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/tdd +## 0.6.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.5.3 ### Patch Changes diff --git a/packages/tdd/package.json b/packages/tdd/package.json index 454a6c131..cf1cca5f6 100644 --- a/packages/tdd/package.json +++ b/packages/tdd/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/tdd", - "version": "0.5.3", + "version": "0.6.0", "description": "TDD state machine enforcement (Red-Green-Refactor cycle)", "bin": { "windyroad-tdd": "./bin/install.mjs" diff --git a/packages/voice-tone/.claude-plugin/plugin.json b/packages/voice-tone/.claude-plugin/plugin.json index 5cb47f0ef..04321605f 100644 --- a/packages/voice-tone/.claude-plugin/plugin.json +++ b/packages/voice-tone/.claude-plugin/plugin.json @@ -123,5 +123,5 @@ } }, "name": "wr-voice-tone", - "version": "0.7.3" + "version": "0.8.0" } diff --git a/packages/voice-tone/.codex-plugin/plugin.json b/packages/voice-tone/.codex-plugin/plugin.json index e7342b34b..814dd2b95 100644 --- a/packages/voice-tone/.codex-plugin/plugin.json +++ b/packages/voice-tone/.codex-plugin/plugin.json @@ -1,12 +1,22 @@ { "name": "wr-voice-tone", - "version": "0.7.3", + "version": "0.8.0", "description": "Voice, tone, and external-communications governance", - "author": { "name": "Windy Road Technology", "url": "https://windyroad.com.au" }, + "author": { + "name": "Windy Road Technology", + "url": "https://windyroad.com.au" + }, "homepage": "https://github.com/windyroad/agent-plugins/tree/main/packages/voice-tone", "repository": "https://github.com/windyroad/agent-plugins", "license": "MIT", - "keywords": ["voice", "tone", "copy", "communications", "codex", "claude-code"], + "keywords": [ + "voice", + "tone", + "copy", + "communications", + "codex", + "claude-code" + ], "skills": "./skills/", "interface": { "displayName": "Windy Road Voice and Tone", @@ -14,11 +24,18 @@ "longDescription": "Review user-facing copy against a project voice-and-tone guide and assess outbound communications before sending.", "developerName": "Windy Road Technology", "category": "Developer Tools", - "capabilities": ["Interactive", "Read", "Write"], + "capabilities": [ + "Interactive", + "Read", + "Write" + ], "websiteURL": "https://windyroad.com.au", "privacyPolicyURL": "https://windyroad.com.au/privacy", "termsOfServiceURL": "https://windyroad.com.au/terms", - "defaultPrompt": ["Review this copy against our voice and tone", "Assess this outbound communication"], + "defaultPrompt": [ + "Review this copy against our voice and tone", + "Assess this outbound communication" + ], "brandColor": "#B45309", "screenshots": [] } diff --git a/packages/voice-tone/CHANGELOG.md b/packages/voice-tone/CHANGELOG.md index 4847c063d..b37109e20 100644 --- a/packages/voice-tone/CHANGELOG.md +++ b/packages/voice-tone/CHANGELOG.md @@ -1,5 +1,11 @@ # @windyroad/voice-tone +## 0.8.0 + +### Minor Changes + +- da73dc5: Add complete Codex plugin surfaces, exact-version installers, runtime projections, hook compatibility, and native custom-agent installation while preserving Claude Code as the default runtime. + ## 0.7.3 ### Patch Changes diff --git a/packages/voice-tone/package.json b/packages/voice-tone/package.json index c4d4528a1..b5dd454e4 100644 --- a/packages/voice-tone/package.json +++ b/packages/voice-tone/package.json @@ -1,6 +1,6 @@ { "name": "@windyroad/voice-tone", - "version": "0.7.3", + "version": "0.8.0", "description": "Voice and tone enforcement for user-facing copy", "bin": { "windyroad-voice-tone": "./bin/install.mjs"