plugins marketplace
← All plugins

maintainer-suite

v1.0.0

Optional maintainer toolkit for skill review, repository publication, releases, and project announcements.

CodexAgent Plugins4 skills

by Lev NikolaevichMIT534updated 2 days ago

Source

git clone https://github.com/levnikolaevich/claude-code-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/maintainer-suite/ inside the repository.

Layout

plugins/maintainer-suite/
├── .codex-plugin/plugin.json
├── plugin.json
├── skills/ln-61-skill-reviewer/SKILL.md
├── skills/ln-62-repository-publisher/SKILL.md
├── skills/ln-63-release-publisher/SKILL.md
└── skills/ln-64-community-announcer/SKILL.md

Skills4

ln-61-skill-reviewerskills/ln-61-skill-reviewer/SKILL.md

Reviews standalone skills and their configured distribution surfaces before publication. Use for skill release readiness; not for product code or implementation-plan review.

ln-62-repository-publisherskills/ln-62-repository-publisher/SKILL.md

Validates, commits, pushes, and remotely verifies approved repository changes. Use when publication is requested; not for releases, package publishing, or announcements.

ln-63-release-publisherskills/ln-63-release-publisher/SKILL.md

Prepares and publishes a tagged GitHub release from repository evidence. Use for an explicit release request; not for ordinary commits, packages, or community news.

ln-64-community-announcerskills/ln-64-community-announcer/SKILL.md

Drafts and publishes fact-checked GitHub Discussions announcements. Use for releases, updates, or project news; not for release creation or issue responses.

Manifests2

plugins/maintainer-suite/.codex-plugin/plugin.json
{
  "name": "maintainer-suite",
  "version": "1.0.0",
  "description": "Optional maintainer toolkit for skill review, repository publication, releases, and project announcements.",
  "author": {
    "name": "Lev Nikolaevich",
    "email": "levnikolaevich.com@gmail.com",
    "url": "https://github.com/levnikolaevich"
  },
  "homepage": "https://github.com/levnikolaevich/claude-code-skills",
  "repository": "https://github.com/levnikolaevich/claude-code-skills",
  "license": "MIT",
  "keywords": [
    "skills",
    "release",
    "publishing",
    "github",
    "announcements"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Maintainer Suite",
    "shortDescription": "Maintain and publish plugins",
    "longDescription": "Optional maintainer workflows for reviewing standalone skills, publishing repository changes and tagged releases, and announcing verified project news.",
    "developerName": "Lev Nikolaevich",
    "websiteURL": "https://github.com/levnikolaevich/claude-code-skills",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "defaultPrompt": [
      "Review these skills for publication readiness.",
      "Publish the approved repository changes and verify the remote result.",
      "Prepare a release or project announcement for approval."
    ]
  }
}
plugins/maintainer-suite/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "maintainer-suite"
}