v1.1.0 — Shellcheck cleanup, synthetic examples, resume/debug commands
Continued the self-applied audit cycle. Beginner-friendly examples, two new diagnostic slash commands, and full shellcheck-warning cleanup.
Added
Slash commands (now 6 total):
/nightshift-resume— diagnose why a run stopped (iteration limit / rate limit / auth / crash / dev-server) and restart cleanly/nightshift-debug— when a task exhausts retries, classify the failure pattern (stale context / scope creep / weak validation / etc) and propose rewrite vs context-fix vs manual implementation
Synthetic examples (fill the beginner gap):
examples/todo-simple-example.md— 5-task dark-mode toggle. Pure template fill, no project-specific context.examples/bulletproof-steps-example.md— 10-step production hardening sweep (CSP, HSTS, rate limiting, Sentry, cookie consent). Shows what BULLETPROOF-STEPS.md input looks like.
The existing real (sanitized) artifacts stay — synthetic examples are the new on-ramp.
Fixed
8 inherited shellcheck warnings across the three runner scripts:
- 6× SC2188 (
> \"\$f\"truncation idiom →: > \"\$f\") - 1× SC2155 (local declare+assign masking — split)
- 1× SC2034 (unused
all_commentsvar — removed)
CI severity restored from error to warning so real lint pressure is preserved.
Install
```bash
curl -fsSL https://raw.githubusercontent.com/noluyorAbi/autonomous-agent-nightshift/main/bin/install.sh | bash
```
Existing installs pull the update via the same command.