agentsclimarketplace

Vibespec update

Skill v0lka/skills/development/sdd/vibespec-update

A set of AI agent skills for research and development tasks.

Install
npx -y skills add v0lka/skills --skill vibespec-update

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 13 stars13 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Update existing specification documents after code changes that alter documented behavior, interfaces, or invariants. Use after implementation when you have changed behavior covered by a spec, added/removed/renamed interfaces in a contract, modified architectural boundaries, or changed configuration. Ensures format preservation, cross-reference integrity, and INDEX.md currency.

SKILL.md

5.9 KB, as published. Nobody here has run it

Spec Update

Update existing specification documents to reflect code changes. Specs are the source of truth about intended behavior — when code changes, affected specs must be updated to stay aligned.


When to Invoke

Update specs after any change that:

  • Alters behavior documented in a domain spec
  • Adds, removes, or renames interfaces that appear in a contract
  • Changes architectural boundaries or invariants
  • Modifies configuration parameters documented in a spec
  • Adds or removes files referenced in a spec's "Key Files" section
  • Changes event payloads, types, or protocols documented in a contract

Do NOT update specs for:

  • Internal refactoring that preserves documented behavior
  • Bug fixes that bring code INTO alignment with the spec (the spec was already correct)
  • Changes to code not covered by any spec

Procedure

Step 1 — Identify affected specs

Determine which specs need updating based on what you changed:

What you changedUpdate
Component behaviorDomain detail file for that component
New component in existing domainDomain README (catalog/table) + new detail file (use vibespec-create)
Interface signaturesContract spec for that boundary
Initialization/wiringContract spec "Initialization" section
Configuration parametersDomain README "Configuration" section
Error handling strategyDomain detail "Error Handling" + contract "Error Propagation"
Architectural rulesArchitecture spec + potentially affected contracts
File paths (rename/move)All specs referencing those paths in "Key Files"

Step 2 — Read the current spec FULLY

Read the entire spec before making any modifications. This is critical because:

  • You need to understand the existing structure to preserve it
  • There may be invariants you're about to violate
  • Cross-references may need updating
  • The document format has a required section order

Step 3 — Make targeted updates

Rules for updating:

  1. Preserve the document format — sections and their order are defined in META.md. Never reorder, remove, or rename sections.
  2. Update, don't append — modify existing content in place. Don't add "Updated:" prefixes or changelog entries within the spec.
  3. Maintain voice — specs use declarative, factual statements. No hedging ("should", "might"), no changelog language ("was changed to").
  4. Keep invariants affirmative — "X always does Y", not "X never does Z".
  5. Update cross-references — if file paths changed, update all references across all affected specs.
  6. Preserve information density — no filler prose. Every sentence carries information.

Step 4 — Handle ADR immutability

If your change contradicts an existing Architecture Decision Record:

  • Do NOT edit the accepted ADR
  • Create a new ADR that supersedes it (use vibespec-create skill)
  • Update only the ## Status line of the old ADR to: Superseded by [NNN](./NNN-slug.md)
  • This is the ONLY permitted edit to an accepted ADR

Step 5 — Update INDEX.md (if applicable)

Update specs/INDEX.md if:

  • You added or removed a spec file
  • You renamed a spec file
  • The "task → spec" mapping table needs a new entry for discoverability

Step 6 — Update cross-references in other specs

If your changes affect content referenced by other specs:

  • Search for references to the updated file across all specs
  • Verify section anchors still resolve (lowercase, hyphen-separated)
  • Update any broken links

Step 7 — Validate (embedded checklist)

Before declaring the update complete, verify:

  • All sections from the template are still present and in correct order
  • No sections were accidentally removed or reordered
  • Cross-references point to existing files and valid section anchors
  • Paths in "Key Files" are accurate (verify the files exist)
  • Invariants are stated affirmatively
  • INDEX.md reflects the current file set (if files were added/removed)
  • ADR immutability was respected (no edits to accepted ADRs except superseding)
  • No filler prose was introduced
  • ASCII diagrams are consistent with updated behavior
  • Tables/catalogs include any new entries

Common Mistakes to Avoid

MistakeWhy it's badWhat to do
Silently skipping spec updateSpecs drift, next agent gets wrong contextAlways check if specs are affected
Rewriting the entire specLoses carefully worded invariantsMake minimal, targeted edits
Adding changelog entriesClutters the spec, wastes context windowUpdate in-place, git history tracks changes
Editing an accepted ADRLoses decision historyCreate new ADR with Superseded by
Updating spec before code is doneRisk of spec-code mismatch if implementation changesUpdate spec AFTER implementation is complete
Skipping cross-reference checkBroken links make specs unreachableSearch for references to modified content
Stating invariants negativelyHarder to verify complianceAlways use affirmative phrasing

Multiple Specs Affected

When a single code change affects multiple specs (e.g., adding a new interface touches both a domain spec and a contract), update them in this order:

  1. Contract specs (boundary definitions)
  2. Domain detail specs (component behavior)
  3. Domain READMEs (catalogs, extension points)
  4. Architecture specs (system-level rules)
  5. INDEX.md (navigation)

This order ensures that references from higher-level docs to lower-level docs are valid at each step.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.