* fix: align all version manifests to 4.8.0 + guard against drift (#260, #262) The v4.8.0 release shipped with all four plugin manifests still reading 4.7.0, and both package.json files still at the 0.1.0 npm-init default. So Claude/Codex/Gemini reported 4.7.0 as the latest version (#262) and the project advertised three different versions at once (#260). Bump all six version-bearing files to 4.8.0 so they match the release tag: the four plugin manifests, the root package.json, and ponytail-mcp. Add scripts/check-versions.js, wired into CI, so this cannot recur. It asserts every version file shares one pinned X.Y.Z version, and on a release-tag run that the shared version equals the tag. The existing mutual-agreement check in tests/gemini-extension.test.js could not catch this, because all four manifests were stale at 4.7.0 together. Fixes #260 Refs #262 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> * fix: target 4.8.1 for a clean superseding release v4.8.0 was already tagged with the stale 4.7.0 manifests. Rather than rewrite a published tag, ship the consistent versions as v4.8.1. The CI guard enforces tag == version on the release run. (#260, #262) --------- Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
33 lines
1.3 KiB
JSON
33 lines
1.3 KiB
JSON
{
|
|
"name": "ponytail",
|
|
"version": "4.8.1",
|
|
"description": "Lazy senior dev mode. Forces the simplest, shortest solution that actually works: YAGNI, stdlib first, no unrequested abstractions.",
|
|
"author": {
|
|
"name": "Dietrich Gebert",
|
|
"url": "https://github.com/DietrichGebert"
|
|
},
|
|
"homepage": "https://github.com/DietrichGebert/ponytail",
|
|
"repository": "https://github.com/DietrichGebert/ponytail",
|
|
"license": "MIT",
|
|
"keywords": ["yagni", "minimalism", "code-review", "productivity"],
|
|
"skills": "./skills/",
|
|
"hooks": "./hooks/claude-codex-hooks.json",
|
|
"interface": {
|
|
"displayName": "Ponytail",
|
|
"shortDescription": "Lazy senior developer mode",
|
|
"longDescription": "Prefer YAGNI, the standard library, native platform features, and the smallest correct implementation.",
|
|
"developerName": "Dietrich Gebert",
|
|
"category": "Productivity",
|
|
"capabilities": ["Instructions", "Lifecycle hooks"],
|
|
"websiteURL": "https://github.com/DietrichGebert/ponytail",
|
|
"defaultPrompt": [
|
|
"Use Ponytail mode for this task.",
|
|
"Review this diff for over-engineering.",
|
|
"Find the smallest correct implementation."
|
|
],
|
|
"brandColor": "#111111",
|
|
"composerIcon": "./assets/logo.png",
|
|
"logo": "./assets/logo.png"
|
|
}
|
|
}
|