plugins marketplace
← All plugins

testing-suite

v1.0.0

Risk-based test portfolio planning and reproducible acceptance-test lifecycle.

CodexAgent Plugins2 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/testing-suite/ inside the repository.

Layout

plugins/testing-suite/
├── .codex-plugin/plugin.json
├── plugin.json
├── skills/ln-41-test-strategy-planner/SKILL.md
└── skills/ln-42-acceptance-test-builder/SKILL.md

Skills2

ln-41-test-strategy-plannerskills/ln-41-test-strategy-planner/SKILL.md

Designs risk-based test portfolio decisions and prioritized scenarios without changing code. Use when requirements need a test strategy; not for auditing or implementing tests.

ln-42-acceptance-test-builderskills/ln-42-acceptance-test-builder/SKILL.md

Creates, updates, consolidates, retires, and runs scoped acceptance tests using project-native tooling. Use when executable acceptance evidence must change; not for audits or product fixes.

Manifests2

plugins/testing-suite/.codex-plugin/plugin.json
{
  "name": "testing-suite",
  "version": "1.0.0",
  "description": "Risk-based test portfolio planning and reproducible acceptance-test lifecycle.",
  "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": [
    "testing",
    "test-strategy",
    "acceptance-tests",
    "quality"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Testing Suite",
    "shortDescription": "Plan and maintain useful tests",
    "longDescription": "Design risk-based test portfolio decisions and maintain reproducible acceptance evidence through addition, update, consolidation, and retirement.",
    "developerName": "Lev Nikolaevich",
    "websiteURL": "https://github.com/levnikolaevich/claude-code-skills",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Write"
    ],
    "defaultPrompt": [
      "Design a risk-based test strategy for this feature.",
      "Maintain the smallest reproducible acceptance-test portfolio for these requirements."
    ]
  }
}
plugins/testing-suite/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "testing-suite"
}