Skip to content

Instantly share code, notes, and snippets.

View otterley's full-sized avatar

Michael S. Fischer otterley

  • Amazon Web Services
  • Seattle, WA
View GitHub Profile
@dollspace-gay
dollspace-gay / VSDD.md
Last active March 11, 2026 16:00
Verified Spec-Driven Development

Verified Spec-Driven Development (VSDD)

The Fusion: VDD × TDD × SDD for AI-Native Engineering

Overview

Verified Spec-Driven Development (VSDD) is a unified software engineering methodology that fuses three proven paradigms into a single AI-orchestrated pipeline:

  • Spec-Driven Development (SDD): Define the contract before writing a single line of implementation. Specs are the source of truth.
  • Test-Driven Development (TDD): Tests are written before code. Red → Green → Refactor. No code exists without a failing test that demanded it.
@eamonnfaherty
eamonnfaherty / pre-push
Last active December 11, 2018 21:22
delete your internet password for AWS CodeCommit repos
#!/bin/sh
# guide on how to add global git hooks:
# https://coderwall.com/p/jp7d5q/create-a-global-git-commit-hook
# add this as a pre-push git hook
# .git/hooks/pre-push
remote="$1"
url="$2"
REGION=$(git remote -v | grep codeco | awk -F\/ '{print $3}' | awk -F. '{print $2}' | uniq)