design-sync
This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.
DESIGN.md Synchronization Check
Verify that DESIGN.md accurately reflects the current codebase architecture.
Current Directory Structure
!ls -la internal/ | grep '^d'
DESIGN.md Directory Section
!sed -n '/^## Directory Structure/,/^## /p' DESIGN.md | head -50
Critical File References from DESIGN.md
!grep -oE 'internal/[a-z/]+\.go:[0-9]+-[0-9]+' DESIGN.md | sort -u
Recent Changes Since Last DESIGN.md Update
!git log --since="$(git log -1 --format=%ai DESIGN.md 2>/dev/null || echo '1 month ago')" --name-only --oneline -- 'internal/**/*.go' | grep -E '^internal/' | sort -u
Current Package Import Graph
!go list -f '{{.ImportPath}}: {{join .Imports ", "}}' ./internal/... 2>/dev/null | grep 'lazyworktree/internal' | head -30
More from chmouel/lazyworktree
deep-analyse
Thorough code analysis without polluting main context
48sanity-check
Run full quality check with live results
44theme-audit
Validate all themes for completeness and correct usage
44commit-helper
Generate conventional commit from staged changes
43doc-sync
Check documentation consistency across README, man page, and help screen
42worktree-manage
Create, list, switch to, and delete git worktrees using lazyworktree CLI
1