Skip to content

Commit 45afe5a

Browse files
committed
fix: address mcode regression coverage and extension release checks
Assisted-by: Codex (model: GPT-6, autonomous)
1 parent df52b5e commit 45afe5a

4 files changed

Lines changed: 4 additions & 3 deletions

File tree

extensions/agent-context/extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ schema_version: "1.0"
33
extension:
44
id: agent-context
55
name: "Coding Agent Context"
6-
version: "1.0.0"
6+
version: "1.0.1"
77
description: "Manages coding agent context/instruction files (e.g., CLAUDE.md, copilot-instructions.md) with project-specific plan references and configurable markers"
88
author: spec-kit-core
99
repository: https://github.com/github/spec-kit

extensions/catalog.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"agent-context": {
77
"name": "Coding Agent Context",
88
"id": "agent-context",
9-
"version": "1.0.0",
9+
"version": "1.0.1",
1010
"description": "Manages coding agent context/instruction files (e.g., CLAUDE.md, copilot-instructions.md) with project-specific plan references and configurable markers",
1111
"author": "spec-kit-core",
1212
"repository": "https://github.com/github/spec-kit",

tests/integrations/test_integration_zed.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,8 @@ def _render_invocation(project_path, ai: str, ai_skills: bool) -> str:
143143
("devin", False, "/speckit-plan"),
144144
("grok", True, "/speckit-plan"),
145145
("grok", False, "/speckit-plan"),
146+
("mcode", True, "/speckit-plan"),
147+
("mcode", False, "/speckit-plan"),
146148
("qodercli", True, "/speckit-plan"),
147149
("qodercli", False, "/speckit-plan"),
148150
("trae", True, "/speckit-plan"),

tests/test_agent_config_consistency.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,4 +467,3 @@ def test_mcode_in_extension_registrar(self):
467467
def test_agent_config_includes_mcode(self):
468468
"""AGENT_CONFIG should include mcode."""
469469
assert "mcode" in AGENT_CONFIG
470-

0 commit comments

Comments
 (0)