[Bug]: Preset-overridden skill hashes are not synchronized in integration manifest during integration upgrade
Dieses Issue hat noch niemand übernommen.
Bewertung
- Schwierigkeit
- 3/5
- Geschätzter Aufwand
- 1-2 Tage
- Anfängerfreundlichkeit
- 65/100
Rechercherichtung
The bug is in src/specify_cli/integrations/command_upgrade.py. Start by reading the _register_presets_for_agent function and how it interacts with new_manifest. Look at PresetManager.register_enabled_presets_for_agent to see how it writes skill files. After preset registration, you need to update new_manifest with the new file hashes for preset-overridden skills. Check how manifest.record_existing works. A test can be run by reproducing the steps in the bug description and verifying specify integration status reports OK after the fix.
Vom Indexierungsmodell aus dem Issue-Text verfasst.
Beschreibung
Bug Description
When an enabled preset overrides a core command that is rendered as an agent skill (such as for codex in .agents/skills/<name>/SKILL.md), running specify integration upgrade <agent> --force succeeds, but the integration manifest .specify/integrations/<agent>.manifest.json retains the hash of the base/default template.
Because command_upgrade.py invokes new_manifest.save() before calling _register_presets_for_agent(), the preset's re-registration overwrites the skill file on disk with the preset content without updating the manifest.
As a result:
specify integration statusimmediately reports the skill file asmodifiedwith findingmanifest-file-modified.- Any subsequent
specify integration upgrade <agent>(without--force) is blocked bycheck_modified().
Steps to Reproduce
-
Initialize a new project with an agent integration that uses skills (e.g.,
codex):specify init --here --integration codex specify integration status # Status: OK (0 modified, 0 missing) -
Add a local preset that wraps or overrides a core command (e.g.
speckit.tasksorspeckit.specify):
Createtest-preset/preset.yml:schema_version: "1.0" preset: id: "test-task-preset" name: "Test Task Preset" version: "1.0.0" description: "Test preset overriding speckit.tasks" requires: speckit_version: ">=0.1.0" provides: templates: - type: "command" name: "speckit.tasks" file: "commands/speckit.tasks.md" strategy: "wrap"Install the preset:
specify preset add --dev ./test-preset -
Upgrade the integration with
--force:specify integration upgrade codex --forceOutput reports:
✓ Integration 'Codex' upgraded successfully. -
Check integration status:
specify integration status
Expected Behavior
specify integration upgrade codex --force should re-baseline or synchronize the hashes of skills written by active presets into .specify/integrations/codex.manifest.json.
After upgrade completes, specify integration status should report OK with 0 modified managed files.
Actual Behavior
specify integration status reports Modified managed files: 1 and status WARNING:
- Finding:
manifest-file-modified (codex): .agents/skills/speckit-tasks/SKILL.md was modified after installation.
Subsequent specify integration upgrade codex without --force fails with:
1 file(s) have been modified since installation... Use --force to overwrite modified files.
Specify CLI Version
1.0.10
AI Agent
Codex CLI
Operating System
macOS (Darwin arm64)
Python Version
Python 3.12
Error Logs
$ specify integration status
Integration status: WARNING
Default integration: codex
Installed integrations: codex
Multi-install safe: yes
Shared templates target alignment: none
Modified managed files: 1
Missing managed files: 0
Invalid manifest paths: 0
Unchecked manifests: 0
Findings:
- warning manifest-file-modified (codex): .agents/skills/speckit-tasks/SKILL.md was modified after installation.
Suggestion: Run `specify integration upgrade codex` or reinstall the integration.
Additional Context
Root Cause Analysis
In src/specify_cli/integrations/command_upgrade.py:
# Phase 1: Setup writes default skills and records their hashes
integration.setup(
project_root,
new_manifest,
...
)
...
# Manifest is saved to disk with base skill hashes
new_manifest.save()
_write_integration_json(project_root, installed_key, installed_keys, settings)
...
# Phase 2: Presets are re-registered AFTER manifest was saved!
if key == installed_key:
_register_extensions_for_agent(...)
_register_presets_for_agent(
project_root,
key,
continuing="The integration was upgraded, but installed presets may need re-registration.",
)
_register_presets_for_agent() calls PresetManager.register_enabled_presets_for_agent(agent_key).
This regenerates and writes the preset-overridden content to .agents/skills/<name>/SKILL.md (with frontmatter source: "preset:<preset_id>").
However, new_manifest is never updated with these newly written preset file hashes.
Suggested Fix Shape
After _register_presets_for_agent() completes, if any preset was registered, inspect skills tracked in both the preset registry and new_manifest. When a skill file on disk has matching provenance (e.g. source == f"preset:{preset_id}"), update new_manifest.record_existing(relative) and save new_manifest.
This ensures that legitimate preset overrides are recognized as the clean baseline, while preserving tamper detection for manual edits.
AI Disclosure
AI assistance (Antigravity) supervised by human maintainer was used to trace the execution path in command_upgrade.py and draft this bug report. All code paths and CLI behaviors were verified against a clean reproduction environment.
- Vorherrschende Sprache
- Python
- Sterne
- 138k
- Forks
- 12.4k
- Ø Merge
- 2 T. 14 Std.
- Gemergte PRs (30 T.)
- 164
Beitragsleitfaden
Erste Schritte
- Lesen Sie das ganze Issue und danach den Beitragsleitfaden des Projekts.
- Schreiben Sie ins Issue, dass Sie es übernehmen — das erspart doppelte Arbeit.
- Forken Sie das Repository und arbeiten Sie in einem Branch.
- Öffnen Sie einen Pull Request, der die Issue-Nummer nennt.
Mehr aus github/spec-kit
-
triage-nice-to-have
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 88/100
-
[Feature]: 给 slug 添加默认值 Offenenhancement needs-triage triage-can-wait
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 65/100
-
extension-submission triage-can-wait
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 75/100
-
needs-triage triage-nice-to-have
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 72/100
-
bug-assess severity-medium
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 72/100
Alle Issues in github/spec-kit
Ähnliche Issues
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 78/100
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 86/100
browser-use/browser-use#5905 ·
-
type: enhancement
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 68/100
ynput/ayon-python-api#363 ·
-
bug needs triage
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 88/100
modelscope/FunASR#3728 ·
-
Schwierigkeit 2/5 1-3 Stunden Anfängerfreundlichkeit 88/100
open-compass/opencompass#2655 ·