spec-kit-mirror 0.8.11__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- spec_kit_mirror-0.8.11/.devcontainer/devcontainer.json +75 -0
- spec_kit_mirror-0.8.11/.devcontainer/post-create.sh +114 -0
- spec_kit_mirror-0.8.11/.gitattributes +1 -0
- spec_kit_mirror-0.8.11/.github/CODEOWNERS +8 -0
- spec_kit_mirror-0.8.11/.github/ISSUE_TEMPLATE/agent_request.yml +141 -0
- spec_kit_mirror-0.8.11/.github/ISSUE_TEMPLATE/bug_report.yml +118 -0
- spec_kit_mirror-0.8.11/.github/ISSUE_TEMPLATE/config.yml +17 -0
- spec_kit_mirror-0.8.11/.github/ISSUE_TEMPLATE/extension_submission.yml +280 -0
- spec_kit_mirror-0.8.11/.github/ISSUE_TEMPLATE/feature_request.yml +104 -0
- spec_kit_mirror-0.8.11/.github/ISSUE_TEMPLATE/preset_submission.yml +185 -0
- spec_kit_mirror-0.8.11/.github/PULL_REQUEST_TEMPLATE.md +22 -0
- spec_kit_mirror-0.8.11/.github/dependabot.yml +11 -0
- spec_kit_mirror-0.8.11/.github/skills/add-community-extension/SKILL.md +169 -0
- spec_kit_mirror-0.8.11/.github/workflows/RELEASE-PROCESS.md +191 -0
- spec_kit_mirror-0.8.11/.github/workflows/catalog-assign.yml +59 -0
- spec_kit_mirror-0.8.11/.github/workflows/codeql.yml +32 -0
- spec_kit_mirror-0.8.11/.github/workflows/docs.yml +69 -0
- spec_kit_mirror-0.8.11/.github/workflows/lint.yml +22 -0
- spec_kit_mirror-0.8.11/.github/workflows/release-trigger.yml +178 -0
- spec_kit_mirror-0.8.11/.github/workflows/release.yml +88 -0
- spec_kit_mirror-0.8.11/.github/workflows/stale.yml +43 -0
- spec_kit_mirror-0.8.11/.github/workflows/test.yml +55 -0
- spec_kit_mirror-0.8.11/.gitignore +52 -0
- spec_kit_mirror-0.8.11/.markdownlint-cli2.jsonc +29 -0
- spec_kit_mirror-0.8.11/.zenodo.json +29 -0
- spec_kit_mirror-0.8.11/AGENTS.md +392 -0
- spec_kit_mirror-0.8.11/CHANGELOG.md +1523 -0
- spec_kit_mirror-0.8.11/CITATION.cff +31 -0
- spec_kit_mirror-0.8.11/CODE_OF_CONDUCT.md +74 -0
- spec_kit_mirror-0.8.11/CONTRIBUTING.md +227 -0
- spec_kit_mirror-0.8.11/DEVELOPMENT.md +24 -0
- spec_kit_mirror-0.8.11/LICENSE +22 -0
- spec_kit_mirror-0.8.11/PKG-INFO +18 -0
- spec_kit_mirror-0.8.11/README.md +592 -0
- spec_kit_mirror-0.8.11/SECURITY.md +31 -0
- spec_kit_mirror-0.8.11/SUPPORT.md +18 -0
- spec_kit_mirror-0.8.11/docs/.gitignore +9 -0
- spec_kit_mirror-0.8.11/docs/README.md +35 -0
- spec_kit_mirror-0.8.11/docs/community/extensions.md +126 -0
- spec_kit_mirror-0.8.11/docs/community/friends.md +14 -0
- spec_kit_mirror-0.8.11/docs/community/overview.md +27 -0
- spec_kit_mirror-0.8.11/docs/community/presets.md +31 -0
- spec_kit_mirror-0.8.11/docs/community/walkthroughs.md +20 -0
- spec_kit_mirror-0.8.11/docs/concepts/sdd.md +46 -0
- spec_kit_mirror-0.8.11/docs/docfx.json +81 -0
- spec_kit_mirror-0.8.11/docs/index.md +152 -0
- spec_kit_mirror-0.8.11/docs/install/air-gapped.md +59 -0
- spec_kit_mirror-0.8.11/docs/install/one-time.md +32 -0
- spec_kit_mirror-0.8.11/docs/install/pipx.md +37 -0
- spec_kit_mirror-0.8.11/docs/install/uv.md +60 -0
- spec_kit_mirror-0.8.11/docs/installation.md +110 -0
- spec_kit_mirror-0.8.11/docs/local-development.md +173 -0
- spec_kit_mirror-0.8.11/docs/quickstart.md +206 -0
- spec_kit_mirror-0.8.11/docs/reference/authentication.md +181 -0
- spec_kit_mirror-0.8.11/docs/reference/core.md +95 -0
- spec_kit_mirror-0.8.11/docs/reference/extensions.md +201 -0
- spec_kit_mirror-0.8.11/docs/reference/integrations.md +191 -0
- spec_kit_mirror-0.8.11/docs/reference/overview.md +33 -0
- spec_kit_mirror-0.8.11/docs/reference/presets.md +224 -0
- spec_kit_mirror-0.8.11/docs/reference/workflows.md +289 -0
- spec_kit_mirror-0.8.11/docs/template/public/main.css +264 -0
- spec_kit_mirror-0.8.11/docs/toc.yml +64 -0
- spec_kit_mirror-0.8.11/docs/upgrade.md +470 -0
- spec_kit_mirror-0.8.11/extensions/EXTENSION-API-REFERENCE.md +830 -0
- spec_kit_mirror-0.8.11/extensions/EXTENSION-DEVELOPMENT-GUIDE.md +717 -0
- spec_kit_mirror-0.8.11/extensions/EXTENSION-PUBLISHING-GUIDE.md +365 -0
- spec_kit_mirror-0.8.11/extensions/EXTENSION-USER-GUIDE.md +1025 -0
- spec_kit_mirror-0.8.11/extensions/README.md +123 -0
- spec_kit_mirror-0.8.11/extensions/RFC-EXTENSION-SYSTEM.md +1962 -0
- spec_kit_mirror-0.8.11/extensions/catalog.community.json +3318 -0
- spec_kit_mirror-0.8.11/extensions/catalog.json +22 -0
- spec_kit_mirror-0.8.11/extensions/git/README.md +100 -0
- spec_kit_mirror-0.8.11/extensions/git/commands/speckit.git.commit.md +48 -0
- spec_kit_mirror-0.8.11/extensions/git/commands/speckit.git.feature.md +67 -0
- spec_kit_mirror-0.8.11/extensions/git/commands/speckit.git.initialize.md +49 -0
- spec_kit_mirror-0.8.11/extensions/git/commands/speckit.git.remote.md +45 -0
- spec_kit_mirror-0.8.11/extensions/git/commands/speckit.git.validate.md +49 -0
- spec_kit_mirror-0.8.11/extensions/git/config-template.yml +62 -0
- spec_kit_mirror-0.8.11/extensions/git/extension.yml +140 -0
- spec_kit_mirror-0.8.11/extensions/git/git-config.yml +62 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/bash/auto-commit.sh +140 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/bash/create-new-feature.sh +453 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/bash/git-common.sh +54 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/bash/initialize-repo.sh +54 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/powershell/auto-commit.ps1 +169 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/powershell/create-new-feature.ps1 +403 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/powershell/git-common.ps1 +51 -0
- spec_kit_mirror-0.8.11/extensions/git/scripts/powershell/initialize-repo.ps1 +69 -0
- spec_kit_mirror-0.8.11/extensions/selftest/commands/selftest.md +69 -0
- spec_kit_mirror-0.8.11/extensions/selftest/extension.yml +16 -0
- spec_kit_mirror-0.8.11/extensions/template/.gitignore +39 -0
- spec_kit_mirror-0.8.11/extensions/template/CHANGELOG.md +39 -0
- spec_kit_mirror-0.8.11/extensions/template/EXAMPLE-README.md +158 -0
- spec_kit_mirror-0.8.11/extensions/template/LICENSE +21 -0
- spec_kit_mirror-0.8.11/extensions/template/README.md +79 -0
- spec_kit_mirror-0.8.11/extensions/template/commands/example.md +210 -0
- spec_kit_mirror-0.8.11/extensions/template/config-template.yml +75 -0
- spec_kit_mirror-0.8.11/extensions/template/extension.yml +97 -0
- spec_kit_mirror-0.8.11/integrations/CONTRIBUTING.md +142 -0
- spec_kit_mirror-0.8.11/integrations/README.md +129 -0
- spec_kit_mirror-0.8.11/integrations/catalog.community.json +6 -0
- spec_kit_mirror-0.8.11/integrations/catalog.json +277 -0
- spec_kit_mirror-0.8.11/media/bootstrap-claude-code.gif +0 -0
- spec_kit_mirror-0.8.11/media/logo_large.webp +0 -0
- spec_kit_mirror-0.8.11/media/logo_small.webp +0 -0
- spec_kit_mirror-0.8.11/media/spec-kit-video-header.jpg +0 -0
- spec_kit_mirror-0.8.11/media/specify_cli.gif +0 -0
- spec_kit_mirror-0.8.11/newsletters/2026-April.md +147 -0
- spec_kit_mirror-0.8.11/newsletters/2026-February.md +54 -0
- spec_kit_mirror-0.8.11/newsletters/2026-March.md +80 -0
- spec_kit_mirror-0.8.11/presets/ARCHITECTURE.md +175 -0
- spec_kit_mirror-0.8.11/presets/PUBLISHING.md +306 -0
- spec_kit_mirror-0.8.11/presets/README.md +158 -0
- spec_kit_mirror-0.8.11/presets/catalog.community.json +577 -0
- spec_kit_mirror-0.8.11/presets/catalog.json +30 -0
- spec_kit_mirror-0.8.11/presets/lean/README.md +45 -0
- spec_kit_mirror-0.8.11/presets/lean/commands/speckit.constitution.md +15 -0
- spec_kit_mirror-0.8.11/presets/lean/commands/speckit.implement.md +22 -0
- spec_kit_mirror-0.8.11/presets/lean/commands/speckit.plan.md +19 -0
- spec_kit_mirror-0.8.11/presets/lean/commands/speckit.specify.md +23 -0
- spec_kit_mirror-0.8.11/presets/lean/commands/speckit.tasks.md +19 -0
- spec_kit_mirror-0.8.11/presets/lean/preset.yml +51 -0
- spec_kit_mirror-0.8.11/presets/scaffold/README.md +46 -0
- spec_kit_mirror-0.8.11/presets/scaffold/commands/speckit.myext.myextcmd.md +20 -0
- spec_kit_mirror-0.8.11/presets/scaffold/commands/speckit.specify.md +23 -0
- spec_kit_mirror-0.8.11/presets/scaffold/preset.yml +120 -0
- spec_kit_mirror-0.8.11/presets/scaffold/templates/myext-template.md +24 -0
- spec_kit_mirror-0.8.11/presets/scaffold/templates/spec-template.md +18 -0
- spec_kit_mirror-0.8.11/presets/self-test/commands/speckit.specify.md +15 -0
- spec_kit_mirror-0.8.11/presets/self-test/commands/speckit.wrap-test.md +14 -0
- spec_kit_mirror-0.8.11/presets/self-test/preset.yml +66 -0
- spec_kit_mirror-0.8.11/presets/self-test/templates/agent-file-template.md +9 -0
- spec_kit_mirror-0.8.11/presets/self-test/templates/checklist-template.md +15 -0
- spec_kit_mirror-0.8.11/presets/self-test/templates/constitution-template.md +15 -0
- spec_kit_mirror-0.8.11/presets/self-test/templates/plan-template.md +22 -0
- spec_kit_mirror-0.8.11/presets/self-test/templates/spec-template.md +23 -0
- spec_kit_mirror-0.8.11/presets/self-test/templates/tasks-template.md +17 -0
- spec_kit_mirror-0.8.11/pyproject.toml +73 -0
- spec_kit_mirror-0.8.11/scripts/bash/check-prerequisites.sh +190 -0
- spec_kit_mirror-0.8.11/scripts/bash/common.sh +645 -0
- spec_kit_mirror-0.8.11/scripts/bash/create-new-feature.sh +413 -0
- spec_kit_mirror-0.8.11/scripts/bash/setup-plan.sh +75 -0
- spec_kit_mirror-0.8.11/scripts/bash/setup-tasks.sh +96 -0
- spec_kit_mirror-0.8.11/scripts/powershell/check-prerequisites.ps1 +148 -0
- spec_kit_mirror-0.8.11/scripts/powershell/common.ps1 +643 -0
- spec_kit_mirror-0.8.11/scripts/powershell/create-new-feature.ps1 +385 -0
- spec_kit_mirror-0.8.11/scripts/powershell/setup-plan.ps1 +65 -0
- spec_kit_mirror-0.8.11/scripts/powershell/setup-tasks.ps1 +74 -0
- spec_kit_mirror-0.8.11/spec-driven.md +412 -0
- spec_kit_mirror-0.8.11/spec-kit.code-workspace +8 -0
- spec_kit_mirror-0.8.11/src/specify_cli/__init__.py +5270 -0
- spec_kit_mirror-0.8.11/src/specify_cli/_assets.py +121 -0
- spec_kit_mirror-0.8.11/src/specify_cli/_console.py +245 -0
- spec_kit_mirror-0.8.11/src/specify_cli/_github_http.py +93 -0
- spec_kit_mirror-0.8.11/src/specify_cli/_utils.py +282 -0
- spec_kit_mirror-0.8.11/src/specify_cli/_version.py +173 -0
- spec_kit_mirror-0.8.11/src/specify_cli/agents.py +846 -0
- spec_kit_mirror-0.8.11/src/specify_cli/authentication/__init__.py +50 -0
- spec_kit_mirror-0.8.11/src/specify_cli/authentication/azure_devops.py +117 -0
- spec_kit_mirror-0.8.11/src/specify_cli/authentication/base.py +57 -0
- spec_kit_mirror-0.8.11/src/specify_cli/authentication/config.py +209 -0
- spec_kit_mirror-0.8.11/src/specify_cli/authentication/github.py +24 -0
- spec_kit_mirror-0.8.11/src/specify_cli/authentication/http.py +149 -0
- spec_kit_mirror-0.8.11/src/specify_cli/catalogs.py +180 -0
- spec_kit_mirror-0.8.11/src/specify_cli/extensions.py +2993 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integration_runtime.py +90 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integration_state.py +161 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/__init__.py +114 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/agy/__init__.py +52 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/amp/__init__.py +21 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/auggie/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/base.py +1516 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/bob/__init__.py +21 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/catalog.py +815 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/claude/__init__.py +239 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/codebuddy/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/codex/__init__.py +56 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/copilot/__init__.py +499 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/cursor_agent/__init__.py +40 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/devin/__init__.py +65 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/forge/__init__.py +209 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/gemini/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/generic/__init__.py +138 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/goose/__init__.py +21 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/iflow/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/junie/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/kilocode/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/kimi/__init__.py +125 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/kiro_cli/__init__.py +29 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/lingma/__init__.py +41 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/manifest.py +330 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/opencode/__init__.py +46 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/pi/__init__.py +21 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/qodercli/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/qwen/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/roo/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/shai/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/tabnine/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/trae/__init__.py +41 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/vibe/__init__.py +133 -0
- spec_kit_mirror-0.8.11/src/specify_cli/integrations/windsurf/__init__.py +22 -0
- spec_kit_mirror-0.8.11/src/specify_cli/presets.py +3097 -0
- spec_kit_mirror-0.8.11/src/specify_cli/shared_infra.py +441 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/__init__.py +68 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/base.py +132 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/catalog.py +540 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/engine.py +778 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/expressions.py +300 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/__init__.py +1 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/command/__init__.py +155 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/do_while/__init__.py +61 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/fan_in/__init__.py +61 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/fan_out/__init__.py +58 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/gate/__init__.py +121 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/if_then/__init__.py +55 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/prompt/__init__.py +156 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/shell/__init__.py +75 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/switch/__init__.py +70 -0
- spec_kit_mirror-0.8.11/src/specify_cli/workflows/steps/while_loop/__init__.py +68 -0
- spec_kit_mirror-0.8.11/templates/checklist-template.md +40 -0
- spec_kit_mirror-0.8.11/templates/commands/analyze.md +252 -0
- spec_kit_mirror-0.8.11/templates/commands/checklist.md +364 -0
- spec_kit_mirror-0.8.11/templates/commands/clarify.md +250 -0
- spec_kit_mirror-0.8.11/templates/commands/constitution.md +150 -0
- spec_kit_mirror-0.8.11/templates/commands/implement.md +202 -0
- spec_kit_mirror-0.8.11/templates/commands/plan.md +152 -0
- spec_kit_mirror-0.8.11/templates/commands/specify.md +327 -0
- spec_kit_mirror-0.8.11/templates/commands/tasks.md +203 -0
- spec_kit_mirror-0.8.11/templates/commands/taskstoissues.md +99 -0
- spec_kit_mirror-0.8.11/templates/constitution-template.md +50 -0
- spec_kit_mirror-0.8.11/templates/plan-template.md +113 -0
- spec_kit_mirror-0.8.11/templates/spec-template.md +131 -0
- spec_kit_mirror-0.8.11/templates/tasks-template.md +252 -0
- spec_kit_mirror-0.8.11/templates/vscode-settings.json +14 -0
- spec_kit_mirror-0.8.11/tests/__init__.py +1 -0
- spec_kit_mirror-0.8.11/tests/auth_helpers.py +21 -0
- spec_kit_mirror-0.8.11/tests/conftest.py +83 -0
- spec_kit_mirror-0.8.11/tests/extensions/__init__.py +1 -0
- spec_kit_mirror-0.8.11/tests/extensions/git/__init__.py +1 -0
- spec_kit_mirror-0.8.11/tests/extensions/git/test_git_extension.py +839 -0
- spec_kit_mirror-0.8.11/tests/hooks/.specify/extensions.yml +34 -0
- spec_kit_mirror-0.8.11/tests/hooks/TESTING.md +30 -0
- spec_kit_mirror-0.8.11/tests/hooks/plan.md +3 -0
- spec_kit_mirror-0.8.11/tests/hooks/spec.md +1 -0
- spec_kit_mirror-0.8.11/tests/hooks/tasks.md +1 -0
- spec_kit_mirror-0.8.11/tests/integrations/__init__.py +0 -0
- spec_kit_mirror-0.8.11/tests/integrations/conftest.py +23 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_base.py +297 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_cli.py +1655 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_agy.py +45 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_amp.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_auggie.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_base_markdown.py +348 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_base_skills.py +470 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_base_toml.py +622 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_base_yaml.py +501 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_bob.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_catalog.py +1531 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_claude.py +558 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_codebuddy.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_codex.py +27 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_copilot.py +727 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_cursor_agent.py +108 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_devin.py +75 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_forge.py +481 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_gemini.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_generic.py +345 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_goose.py +39 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_iflow.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_junie.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_kilocode.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_kimi.py +149 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_kiro_cli.py +149 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_lingma.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_opencode.py +200 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_pi.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_qodercli.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_qwen.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_roo.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_shai.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_state.py +86 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_subcommand.py +1406 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_tabnine.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_trae.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_vibe.py +38 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_integration_windsurf.py +11 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_manifest.py +247 -0
- spec_kit_mirror-0.8.11/tests/integrations/test_registry.py +290 -0
- spec_kit_mirror-0.8.11/tests/test_agent_config_consistency.py +285 -0
- spec_kit_mirror-0.8.11/tests/test_authentication.py +860 -0
- spec_kit_mirror-0.8.11/tests/test_branch_numbering.py +74 -0
- spec_kit_mirror-0.8.11/tests/test_check_tool.py +106 -0
- spec_kit_mirror-0.8.11/tests/test_cli_version.py +79 -0
- spec_kit_mirror-0.8.11/tests/test_console_imports.py +46 -0
- spec_kit_mirror-0.8.11/tests/test_extension_registration.py +497 -0
- spec_kit_mirror-0.8.11/tests/test_extension_skills.py +737 -0
- spec_kit_mirror-0.8.11/tests/test_extension_update_hardening.py +109 -0
- spec_kit_mirror-0.8.11/tests/test_extensions.py +4323 -0
- spec_kit_mirror-0.8.11/tests/test_github_http.py +79 -0
- spec_kit_mirror-0.8.11/tests/test_merge.py +190 -0
- spec_kit_mirror-0.8.11/tests/test_presets.py +4759 -0
- spec_kit_mirror-0.8.11/tests/test_registrar_path_traversal.py +204 -0
- spec_kit_mirror-0.8.11/tests/test_setup_plan_feature_json.py +202 -0
- spec_kit_mirror-0.8.11/tests/test_setup_tasks.py +584 -0
- spec_kit_mirror-0.8.11/tests/test_timestamp_branches.py +1376 -0
- spec_kit_mirror-0.8.11/tests/test_upgrade.py +411 -0
- spec_kit_mirror-0.8.11/tests/test_utils_assets_imports.py +21 -0
- spec_kit_mirror-0.8.11/tests/test_version_imports.py +41 -0
- spec_kit_mirror-0.8.11/tests/test_workflows.py +1845 -0
- spec_kit_mirror-0.8.11/workflows/ARCHITECTURE.md +211 -0
- spec_kit_mirror-0.8.11/workflows/PUBLISHING.md +285 -0
- spec_kit_mirror-0.8.11/workflows/README.md +339 -0
- spec_kit_mirror-0.8.11/workflows/catalog.community.json +6 -0
- spec_kit_mirror-0.8.11/workflows/catalog.json +16 -0
- spec_kit_mirror-0.8.11/workflows/speckit/workflow.yml +63 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
2
|
+
// README at: https://github.com/devcontainers/templates/tree/main/src/python
|
|
3
|
+
{
|
|
4
|
+
"name": "SpecKitDevContainer",
|
|
5
|
+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
|
|
6
|
+
"image": "mcr.microsoft.com/devcontainers/python:3.13-trixie", // based on Debian "Trixie" (13)
|
|
7
|
+
"features": {
|
|
8
|
+
"ghcr.io/devcontainers/features/common-utils:2": {
|
|
9
|
+
"installZsh": true,
|
|
10
|
+
"installOhMyZsh": true,
|
|
11
|
+
"installOhMyZshConfig": true,
|
|
12
|
+
"upgradePackages": true,
|
|
13
|
+
"username": "devcontainer",
|
|
14
|
+
"userUid": "automatic",
|
|
15
|
+
"userGid": "automatic"
|
|
16
|
+
},
|
|
17
|
+
"ghcr.io/devcontainers/features/dotnet:2": {
|
|
18
|
+
"version": "lts"
|
|
19
|
+
},
|
|
20
|
+
"ghcr.io/devcontainers/features/git:1": {
|
|
21
|
+
"ppa": true,
|
|
22
|
+
"version": "latest"
|
|
23
|
+
},
|
|
24
|
+
"ghcr.io/devcontainers/features/node": {
|
|
25
|
+
"version": "lts"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
30
|
+
"forwardPorts": [
|
|
31
|
+
8080 // for Spec-Kit documentation site
|
|
32
|
+
],
|
|
33
|
+
"containerUser": "devcontainer",
|
|
34
|
+
"updateRemoteUserUID": true,
|
|
35
|
+
"postCreateCommand": "chmod +x ./.devcontainer/post-create.sh && ./.devcontainer/post-create.sh",
|
|
36
|
+
"postStartCommand": "git config --global --add safe.directory ${containerWorkspaceFolder}",
|
|
37
|
+
"customizations": {
|
|
38
|
+
"vscode": {
|
|
39
|
+
"extensions": [
|
|
40
|
+
"mhutchie.git-graph",
|
|
41
|
+
"eamodio.gitlens",
|
|
42
|
+
"anweber.reveal-button",
|
|
43
|
+
"chrisdias.promptboost",
|
|
44
|
+
// Github Copilot
|
|
45
|
+
"GitHub.copilot",
|
|
46
|
+
"GitHub.copilot-chat",
|
|
47
|
+
// Codex
|
|
48
|
+
"openai.chatgpt",
|
|
49
|
+
// Kilo Code
|
|
50
|
+
"kilocode.Kilo-Code",
|
|
51
|
+
// Roo Code
|
|
52
|
+
"RooVeterinaryInc.roo-cline",
|
|
53
|
+
// Claude Code
|
|
54
|
+
"anthropic.claude-code"
|
|
55
|
+
],
|
|
56
|
+
"settings": {
|
|
57
|
+
"debug.javascript.autoAttachFilter": "disabled", // fix running commands in integrated terminal
|
|
58
|
+
|
|
59
|
+
// Specify settings for Github Copilot
|
|
60
|
+
"git.autofetch": true,
|
|
61
|
+
"chat.promptFilesRecommendations": {
|
|
62
|
+
"speckit.constitution": true,
|
|
63
|
+
"speckit.specify": true,
|
|
64
|
+
"speckit.plan": true,
|
|
65
|
+
"speckit.tasks": true,
|
|
66
|
+
"speckit.implement": true
|
|
67
|
+
},
|
|
68
|
+
"chat.tools.terminal.autoApprove": {
|
|
69
|
+
".specify/scripts/bash/": true,
|
|
70
|
+
".specify/scripts/powershell/": true
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
|
|
3
|
+
# Exit immediately on error, treat unset variables as an error, and fail if any command in a pipeline fails.
|
|
4
|
+
set -euo pipefail
|
|
5
|
+
|
|
6
|
+
# Function to run a command and show logs only on error
|
|
7
|
+
run_command() {
|
|
8
|
+
local command_to_run="$*"
|
|
9
|
+
local output
|
|
10
|
+
local exit_code
|
|
11
|
+
|
|
12
|
+
# Capture all output (stdout and stderr)
|
|
13
|
+
output=$(eval "$command_to_run" 2>&1) || exit_code=$?
|
|
14
|
+
exit_code=${exit_code:-0}
|
|
15
|
+
|
|
16
|
+
if [ $exit_code -ne 0 ]; then
|
|
17
|
+
echo -e "\033[0;31m[ERROR] Command failed (Exit Code $exit_code): $command_to_run\033[0m" >&2
|
|
18
|
+
echo -e "\033[0;31m$output\033[0m" >&2
|
|
19
|
+
|
|
20
|
+
exit $exit_code
|
|
21
|
+
fi
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
# Installing CLI-based AI Agents
|
|
25
|
+
|
|
26
|
+
echo -e "\n🤖 Installing Copilot CLI..."
|
|
27
|
+
run_command "npm install -g @github/copilot@latest"
|
|
28
|
+
echo "✅ Done"
|
|
29
|
+
|
|
30
|
+
echo -e "\n🤖 Installing Claude CLI..."
|
|
31
|
+
run_command "npm install -g @anthropic-ai/claude-code@latest"
|
|
32
|
+
echo "✅ Done"
|
|
33
|
+
|
|
34
|
+
echo -e "\n🤖 Installing Codex CLI..."
|
|
35
|
+
run_command "npm install -g @openai/codex@latest"
|
|
36
|
+
echo "✅ Done"
|
|
37
|
+
|
|
38
|
+
echo -e "\n🤖 Installing Gemini CLI..."
|
|
39
|
+
run_command "npm install -g @google/gemini-cli@latest"
|
|
40
|
+
echo "✅ Done"
|
|
41
|
+
|
|
42
|
+
echo -e "\n🤖 Installing Augie CLI..."
|
|
43
|
+
run_command "npm install -g @augmentcode/auggie@latest"
|
|
44
|
+
echo "✅ Done"
|
|
45
|
+
|
|
46
|
+
echo -e "\n🤖 Installing Qwen Code CLI..."
|
|
47
|
+
run_command "npm install -g @qwen-code/qwen-code@latest"
|
|
48
|
+
echo "✅ Done"
|
|
49
|
+
|
|
50
|
+
echo -e "\n🤖 Installing OpenCode CLI..."
|
|
51
|
+
run_command "npm install -g opencode-ai@latest"
|
|
52
|
+
echo "✅ Done"
|
|
53
|
+
|
|
54
|
+
echo -e "\n🤖 Installing Junie CLI..."
|
|
55
|
+
run_command "npm install -g @jetbrains/junie-cli@latest"
|
|
56
|
+
echo "✅ Done"
|
|
57
|
+
|
|
58
|
+
echo -e "\n🤖 Installing Pi Coding Agent..."
|
|
59
|
+
run_command "npm install -g @mariozechner/pi-coding-agent@latest"
|
|
60
|
+
echo "✅ Done"
|
|
61
|
+
|
|
62
|
+
echo -e "\n🤖 Installing Kiro CLI..."
|
|
63
|
+
# https://kiro.dev/docs/cli/
|
|
64
|
+
KIRO_INSTALLER_URL="https://kiro.dev/install.sh"
|
|
65
|
+
KIRO_INSTALLER_SHA256="7487a65cf310b7fb59b357c4b5e6e3f3259d383f4394ecedb39acf70f307cffb"
|
|
66
|
+
KIRO_INSTALLER_PATH="$(mktemp)"
|
|
67
|
+
|
|
68
|
+
cleanup_kiro_installer() {
|
|
69
|
+
rm -f "$KIRO_INSTALLER_PATH"
|
|
70
|
+
}
|
|
71
|
+
trap cleanup_kiro_installer EXIT
|
|
72
|
+
|
|
73
|
+
run_command "curl -fsSL \"$KIRO_INSTALLER_URL\" -o \"$KIRO_INSTALLER_PATH\""
|
|
74
|
+
run_command "echo \"$KIRO_INSTALLER_SHA256 $KIRO_INSTALLER_PATH\" | sha256sum -c -"
|
|
75
|
+
|
|
76
|
+
run_command "bash \"$KIRO_INSTALLER_PATH\""
|
|
77
|
+
|
|
78
|
+
kiro_binary=""
|
|
79
|
+
if command -v kiro-cli >/dev/null 2>&1; then
|
|
80
|
+
kiro_binary="kiro-cli"
|
|
81
|
+
elif command -v kiro >/dev/null 2>&1; then
|
|
82
|
+
kiro_binary="kiro"
|
|
83
|
+
else
|
|
84
|
+
echo -e "\033[0;31m[ERROR] Kiro CLI installation did not create 'kiro-cli' or 'kiro' in PATH.\033[0m" >&2
|
|
85
|
+
exit 1
|
|
86
|
+
fi
|
|
87
|
+
|
|
88
|
+
run_command "$kiro_binary --help > /dev/null"
|
|
89
|
+
echo "✅ Done"
|
|
90
|
+
|
|
91
|
+
echo -e "\n🤖 Installing Kimi CLI..."
|
|
92
|
+
# https://code.kimi.com
|
|
93
|
+
run_command "pipx install kimi-cli"
|
|
94
|
+
echo "✅ Done"
|
|
95
|
+
|
|
96
|
+
echo -e "\n🤖 Installing CodeBuddy CLI..."
|
|
97
|
+
run_command "npm install -g @tencent-ai/codebuddy-code@latest"
|
|
98
|
+
echo "✅ Done"
|
|
99
|
+
|
|
100
|
+
# Installing UV (Python package manager)
|
|
101
|
+
echo -e "\n🐍 Installing UV - Python Package Manager..."
|
|
102
|
+
run_command "pipx install uv"
|
|
103
|
+
echo "✅ Done"
|
|
104
|
+
|
|
105
|
+
# Installing DocFx (for documentation site)
|
|
106
|
+
echo -e "\n📚 Installing DocFx..."
|
|
107
|
+
run_command "dotnet tool update -g docfx"
|
|
108
|
+
echo "✅ Done"
|
|
109
|
+
|
|
110
|
+
echo -e "\n🧹 Cleaning cache..."
|
|
111
|
+
run_command "sudo apt-get autoclean"
|
|
112
|
+
run_command "sudo apt-get clean"
|
|
113
|
+
|
|
114
|
+
echo "✅ Setup completed. Happy coding! 🚀"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
* text=auto eol=lf
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
name: Agent Request
|
|
2
|
+
description: Request support for a new AI agent/assistant in Spec Kit
|
|
3
|
+
title: "[Agent]: Add support for "
|
|
4
|
+
labels: ["agent-request", "enhancement", "needs-triage"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for requesting a new agent! Before submitting, please check if the agent is already supported.
|
|
10
|
+
|
|
11
|
+
**Currently supported agents**: Claude Code, Gemini CLI, GitHub Copilot, Cursor, Qwen Code, opencode, Codex CLI, Windsurf, Kilo Code, Auggie CLI, Roo Code, CodeBuddy, Qoder CLI, Kiro CLI, Amp, SHAI, Tabnine CLI, Antigravity, IBM Bob, Mistral Vibe, Kimi Code, Trae, Pi Coding Agent, iFlow CLI, Devin for Terminal
|
|
12
|
+
|
|
13
|
+
- type: input
|
|
14
|
+
id: agent-name
|
|
15
|
+
attributes:
|
|
16
|
+
label: Agent Name
|
|
17
|
+
description: What is the name of the AI agent/assistant?
|
|
18
|
+
placeholder: "e.g., SuperCoder AI"
|
|
19
|
+
validations:
|
|
20
|
+
required: true
|
|
21
|
+
|
|
22
|
+
- type: input
|
|
23
|
+
id: website
|
|
24
|
+
attributes:
|
|
25
|
+
label: Official Website
|
|
26
|
+
description: Link to the agent's official website or documentation
|
|
27
|
+
placeholder: "https://..."
|
|
28
|
+
validations:
|
|
29
|
+
required: true
|
|
30
|
+
|
|
31
|
+
- type: dropdown
|
|
32
|
+
id: agent-type
|
|
33
|
+
attributes:
|
|
34
|
+
label: Agent Type
|
|
35
|
+
description: How is the agent accessed?
|
|
36
|
+
options:
|
|
37
|
+
- CLI tool (command-line interface)
|
|
38
|
+
- IDE extension/plugin
|
|
39
|
+
- Both CLI and IDE
|
|
40
|
+
- Other
|
|
41
|
+
validations:
|
|
42
|
+
required: true
|
|
43
|
+
|
|
44
|
+
- type: input
|
|
45
|
+
id: cli-command
|
|
46
|
+
attributes:
|
|
47
|
+
label: CLI Command (if applicable)
|
|
48
|
+
description: What command is used to invoke the agent from terminal?
|
|
49
|
+
placeholder: "e.g., supercode, ai-assistant"
|
|
50
|
+
|
|
51
|
+
- type: input
|
|
52
|
+
id: install-method
|
|
53
|
+
attributes:
|
|
54
|
+
label: Installation Method
|
|
55
|
+
description: How is the agent installed?
|
|
56
|
+
placeholder: "e.g., npm install -g supercode, pip install supercode, IDE marketplace"
|
|
57
|
+
validations:
|
|
58
|
+
required: true
|
|
59
|
+
|
|
60
|
+
- type: textarea
|
|
61
|
+
id: command-structure
|
|
62
|
+
attributes:
|
|
63
|
+
label: Command/Workflow Structure
|
|
64
|
+
description: How does the agent define custom commands or workflows?
|
|
65
|
+
placeholder: |
|
|
66
|
+
- Command file format (Markdown, YAML, TOML, etc.)
|
|
67
|
+
- Directory location (e.g., .supercode/commands/)
|
|
68
|
+
- Example command file structure
|
|
69
|
+
validations:
|
|
70
|
+
required: true
|
|
71
|
+
|
|
72
|
+
- type: textarea
|
|
73
|
+
id: argument-pattern
|
|
74
|
+
attributes:
|
|
75
|
+
label: Argument Passing Pattern
|
|
76
|
+
description: How does the agent handle arguments in commands?
|
|
77
|
+
placeholder: |
|
|
78
|
+
e.g., Uses {{args}}, $ARGUMENTS, %ARGS%, or other placeholder format
|
|
79
|
+
Example: "Run test suite with {{args}}"
|
|
80
|
+
|
|
81
|
+
- type: dropdown
|
|
82
|
+
id: popularity
|
|
83
|
+
attributes:
|
|
84
|
+
label: Popularity/Usage
|
|
85
|
+
description: How widely is this agent used?
|
|
86
|
+
options:
|
|
87
|
+
- Widely used (thousands+ of users)
|
|
88
|
+
- Growing adoption (hundreds of users)
|
|
89
|
+
- New/emerging (less than 100 users)
|
|
90
|
+
- Unknown
|
|
91
|
+
validations:
|
|
92
|
+
required: true
|
|
93
|
+
|
|
94
|
+
- type: textarea
|
|
95
|
+
id: documentation
|
|
96
|
+
attributes:
|
|
97
|
+
label: Documentation Links
|
|
98
|
+
description: Links to relevant documentation for custom commands/workflows
|
|
99
|
+
placeholder: |
|
|
100
|
+
- Command documentation: https://...
|
|
101
|
+
- API/CLI reference: https://...
|
|
102
|
+
- Examples: https://...
|
|
103
|
+
|
|
104
|
+
- type: textarea
|
|
105
|
+
id: use-case
|
|
106
|
+
attributes:
|
|
107
|
+
label: Use Case
|
|
108
|
+
description: Why do you want this agent supported in Spec Kit?
|
|
109
|
+
placeholder: Explain your workflow and how this agent fits into your development process
|
|
110
|
+
validations:
|
|
111
|
+
required: true
|
|
112
|
+
|
|
113
|
+
- type: textarea
|
|
114
|
+
id: example-command
|
|
115
|
+
attributes:
|
|
116
|
+
label: Example Command File
|
|
117
|
+
description: If possible, provide an example of a command file for this agent
|
|
118
|
+
render: markdown
|
|
119
|
+
placeholder: |
|
|
120
|
+
```toml
|
|
121
|
+
description = "Example command"
|
|
122
|
+
prompt = "Do something with {{args}}"
|
|
123
|
+
```
|
|
124
|
+
|
|
125
|
+
- type: checkboxes
|
|
126
|
+
id: contribution
|
|
127
|
+
attributes:
|
|
128
|
+
label: Contribution
|
|
129
|
+
description: Are you willing to help implement support for this agent?
|
|
130
|
+
options:
|
|
131
|
+
- label: I can help test the integration
|
|
132
|
+
- label: I can provide example command files
|
|
133
|
+
- label: I can help with documentation
|
|
134
|
+
- label: I can submit a pull request for the integration
|
|
135
|
+
|
|
136
|
+
- type: textarea
|
|
137
|
+
id: context
|
|
138
|
+
attributes:
|
|
139
|
+
label: Additional Context
|
|
140
|
+
description: Any other relevant information about this agent
|
|
141
|
+
placeholder: Screenshots, community links, comparison to existing agents, etc.
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
name: Bug Report
|
|
2
|
+
description: Report a bug or unexpected behavior in Specify CLI or Spec Kit
|
|
3
|
+
title: "[Bug]: "
|
|
4
|
+
labels: ["bug", "needs-triage"]
|
|
5
|
+
body:
|
|
6
|
+
- type: markdown
|
|
7
|
+
attributes:
|
|
8
|
+
value: |
|
|
9
|
+
Thanks for taking the time to report a bug! Please fill out the sections below to help us diagnose and fix the issue.
|
|
10
|
+
|
|
11
|
+
- type: textarea
|
|
12
|
+
id: description
|
|
13
|
+
attributes:
|
|
14
|
+
label: Bug Description
|
|
15
|
+
description: A clear and concise description of what the bug is.
|
|
16
|
+
placeholder: What went wrong?
|
|
17
|
+
validations:
|
|
18
|
+
required: true
|
|
19
|
+
|
|
20
|
+
- type: textarea
|
|
21
|
+
id: reproduce
|
|
22
|
+
attributes:
|
|
23
|
+
label: Steps to Reproduce
|
|
24
|
+
description: Steps to reproduce the behavior
|
|
25
|
+
placeholder: |
|
|
26
|
+
1. Run command '...'
|
|
27
|
+
2. Execute script '...'
|
|
28
|
+
3. See error
|
|
29
|
+
validations:
|
|
30
|
+
required: true
|
|
31
|
+
|
|
32
|
+
- type: textarea
|
|
33
|
+
id: expected
|
|
34
|
+
attributes:
|
|
35
|
+
label: Expected Behavior
|
|
36
|
+
description: What did you expect to happen?
|
|
37
|
+
placeholder: Describe the expected outcome
|
|
38
|
+
validations:
|
|
39
|
+
required: true
|
|
40
|
+
|
|
41
|
+
- type: textarea
|
|
42
|
+
id: actual
|
|
43
|
+
attributes:
|
|
44
|
+
label: Actual Behavior
|
|
45
|
+
description: What actually happened?
|
|
46
|
+
placeholder: Describe what happened instead
|
|
47
|
+
validations:
|
|
48
|
+
required: true
|
|
49
|
+
|
|
50
|
+
- type: input
|
|
51
|
+
id: version
|
|
52
|
+
attributes:
|
|
53
|
+
label: Specify CLI Version
|
|
54
|
+
description: "Run `specify version` or `pip show spec-kit`"
|
|
55
|
+
placeholder: "e.g., 1.3.0"
|
|
56
|
+
validations:
|
|
57
|
+
required: true
|
|
58
|
+
|
|
59
|
+
- type: dropdown
|
|
60
|
+
id: ai-agent
|
|
61
|
+
attributes:
|
|
62
|
+
label: AI Agent
|
|
63
|
+
description: Which AI agent are you using?
|
|
64
|
+
options:
|
|
65
|
+
- Claude Code
|
|
66
|
+
- Gemini CLI
|
|
67
|
+
- GitHub Copilot
|
|
68
|
+
- Cursor
|
|
69
|
+
- Qwen Code
|
|
70
|
+
- opencode
|
|
71
|
+
- Codex CLI
|
|
72
|
+
- Windsurf
|
|
73
|
+
- Kilo Code
|
|
74
|
+
- Auggie CLI
|
|
75
|
+
- Roo Code
|
|
76
|
+
- CodeBuddy
|
|
77
|
+
- Qoder CLI
|
|
78
|
+
- Kiro CLI
|
|
79
|
+
- Amp
|
|
80
|
+
- SHAI
|
|
81
|
+
- IBM Bob
|
|
82
|
+
- Antigravity
|
|
83
|
+
- Not applicable
|
|
84
|
+
validations:
|
|
85
|
+
required: true
|
|
86
|
+
|
|
87
|
+
- type: input
|
|
88
|
+
id: os
|
|
89
|
+
attributes:
|
|
90
|
+
label: Operating System
|
|
91
|
+
description: Your operating system and version
|
|
92
|
+
placeholder: "e.g., macOS 14.2, Ubuntu 22.04, Windows 11"
|
|
93
|
+
validations:
|
|
94
|
+
required: true
|
|
95
|
+
|
|
96
|
+
- type: input
|
|
97
|
+
id: python
|
|
98
|
+
attributes:
|
|
99
|
+
label: Python Version
|
|
100
|
+
description: "Run `python --version` or `python3 --version`"
|
|
101
|
+
placeholder: "e.g., Python 3.11.5"
|
|
102
|
+
validations:
|
|
103
|
+
required: true
|
|
104
|
+
|
|
105
|
+
- type: textarea
|
|
106
|
+
id: logs
|
|
107
|
+
attributes:
|
|
108
|
+
label: Error Logs
|
|
109
|
+
description: Please paste any relevant error messages or logs
|
|
110
|
+
render: shell
|
|
111
|
+
placeholder: Paste error output here
|
|
112
|
+
|
|
113
|
+
- type: textarea
|
|
114
|
+
id: context
|
|
115
|
+
attributes:
|
|
116
|
+
label: Additional Context
|
|
117
|
+
description: Add any other context about the problem
|
|
118
|
+
placeholder: Screenshots, related issues, workarounds attempted, etc.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
blank_issues_enabled: false
|
|
2
|
+
contact_links:
|
|
3
|
+
- name: 💬 General Discussion
|
|
4
|
+
url: https://github.com/github/spec-kit/discussions
|
|
5
|
+
about: Ask questions, share ideas, or discuss Spec-Driven Development
|
|
6
|
+
- name: 📖 Documentation
|
|
7
|
+
url: https://github.com/github/spec-kit/blob/main/README.md
|
|
8
|
+
about: Read the Spec Kit documentation and guides
|
|
9
|
+
- name: 🛠️ Extension Development Guide
|
|
10
|
+
url: https://github.com/github/spec-kit/blob/main/extensions/EXTENSION-DEVELOPMENT-GUIDE.md
|
|
11
|
+
about: Learn how to develop and publish Spec Kit extensions
|
|
12
|
+
- name: 🤝 Contributing Guide
|
|
13
|
+
url: https://github.com/github/spec-kit/blob/main/CONTRIBUTING.md
|
|
14
|
+
about: Learn how to contribute to Spec Kit
|
|
15
|
+
- name: 🔒 Security Issues
|
|
16
|
+
url: https://github.com/github/spec-kit/blob/main/SECURITY.md
|
|
17
|
+
about: Report security vulnerabilities privately
|