mirror of
https://github.com/github/spec-kit.git
synced 2026-03-17 10:53:08 +00:00
* test(commands): create extension-commands LLM playground sandbox * update(tests): format LLM evaluation as an automated test runner * test(commands): map extension-commands python script with timestamps * test(commands): map extension-commands python script with timestamps * test(commands): update TESTING.md to evaluate discovery, lint, and deploy explicitly * test(commands): simplify execution expectations and add timestamp calculation * fix(tests): address copilot review comments on prompt formatting and relative paths * fix(tests): resolve copilot PR feedback regarding extension schema structure and argparse mutually exclusive groups * feat(extensions): add core selftest utility and migrate away from manual tests sandbox * fix(selftest): update command name array to match spec-kit validation schema * fix(selftest): wrap arguments in quotes to support multi-word extension names * update the command to be more meaningful * fix: if the extension is discovery only, it should not be installable * Address review comments for selftest documentation * address review comments * address review comments * Update extensions/selftest/commands/selftest.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Manfred Riem <15701806+mnriem@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
17 lines
533 B
YAML
17 lines
533 B
YAML
schema_version: "1.0"
|
|
extension:
|
|
id: selftest
|
|
name: Spec Kit Self-Test Utility
|
|
version: 1.0.0
|
|
description: Verifies catalog extensions by programmatically walking through the discovery, installation, and registration lifecycle.
|
|
author: spec-kit-core
|
|
repository: https://github.com/github/spec-kit
|
|
license: MIT
|
|
requires:
|
|
speckit_version: ">=0.2.0"
|
|
provides:
|
|
commands:
|
|
- name: speckit.selftest.extension
|
|
file: commands/selftest.md
|
|
description: Validate the lifecycle of an extension from the catalog.
|