Fission-AI/OpenSpec · error
Delta parsing found no operations for ${update.id}. Provide
Error message
Delta parsing found no operations for ${update.id}. Provide ADDED/MODIFIED/REMOVED/RENAMED sections in change spec. What it means
Error "Delta parsing found no operations for ${update.id}. Provide ADDED/MODIFIED/REMOVED/RENAMED sections in change spec." thrown in Fission-AI/OpenSpec.
Source
Thrown at src/core/specs-apply.ts:295
`${specName} validation failed - when a rename exists, MODIFIED must reference the NEW header "### Requirement: ${to}"`
);
}
// Detect ADDED colliding with a RENAMED TO
if (addedNames.has(toNorm)) {
throw new Error(
`${specName} validation failed - RENAMED TO header collides with ADDED for "### Requirement: ${to}"`
);
}
}
if (conflicts.length > 0) {
const c = conflicts[0];
throw new Error(
`${specName} validation failed - requirement present in multiple sections (${c.a} and ${c.b}) for header "### Requirement: ${c.name}"`
);
}
const hasAnyDelta = plan.added.length + plan.modified.length + plan.removed.length + plan.renamed.length > 0;
if (!hasAnyDelta) {
throw new Error(
`Delta parsing found no operations for ${update.id}. ` +
`Provide ADDED/MODIFIED/REMOVED/RENAMED sections in change spec.`
);
}
// Load or create base target content
const deltaPurpose = extractPurposeSection(changeContent);
let targetContent: string;
let isNewSpec = false;
assertTrustedSpecPath(update.targetRoot, update.target);
try {
targetContent = await fs.readFile(update.target, 'utf-8');
// A delta Purpose only seeds a spec that does not exist yet. Say so rather
// than dropping it silently - the specs instruction tells authors to write
// one for new capabilities, and the delta file looks identical either way.
// Only when the spec really does have a different Purpose: claiming it
// "already has one" would be false when it has none, and saying anything at
// all is noise when the two bodies match.View on GitHub (pinned to 6926ccb18a)
When it happens
Trigger: Thrown at src/core/specs-apply.ts:295 when the library encounters an invalid state.
Common situations: See trigger scenarios.
AI-assisted analysis of Fission-AI/OpenSpec@6926ccb18a (2026-08-25).
Data as JSON: /api/errors/4b14203801a61256.
Report an issue: GitHub.