docs(readme): mention make targets in README build/deploy section - #75
Conversation
README's "Develop & deploy" section showed `make deploy` once inline with no description and never surfaced `make test` / `make verify` or the runbook location. Changes: - List all three root Makefile targets (deploy/verify/test) with descriptions mirrored verbatim from the Makefile's `## ` comments - Point to CLAUDE.md § Migrations & deploy and docs/operations.md for the runbook - Drop the now-redundant inline `make deploy` line from the bash block Fixes #59 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
🔍 Comprehensive PR ReviewPR: #75 SummaryDocs-only change ( Verdict:
✅ What's Good
Next Steps
Reviewed by Archon comprehensive-pr-review workflow |
⚡ Self-Fix Report (Aggressive)Status: COMPLETE Fixes Applied (0 total)
All review dimensions that ran ( Tests Added(none — docs-only diff) Skipped (0)(none — all findings addressed, because there were none) Suggested Follow-up Issues(none) ValidationN/A — no code changed, nothing to type-check/lint/test. Self-fix by Archon · aggressive mode · no changes required, nothing pushed |
Summary
Issue #59 is a docs-only follow-up from PR #57: the root
Makefile(deploy/verify/testtargets) wasn't clearly surfaced inREADME.md. The README's "Develop & deploy" section showedmake deployonce, inline, with no description and no pointer to the full runbook.Changes
README.md: replaced the single unlabeledmake deployline with a short bullet list naming all three canonicalMakefiletargets, descriptions copied verbatim from the Makefile's own##comments:make deploy— deployhal-mcp+ verify it answersmake verify— probe the livehal-mcpfunction (no redeploy)make test— offline checks — deno type-check (both fns) + offline pytest (mirrors CI)CLAUDE.md§ Migrations & deploy anddocs/operations.mdfor the full runbook.Validation
grep -n "make deploy\|make verify\|make test\|Migrations & deploy" README.md→ shows all three targets + runbook pointer (README.md:279-283)make test→ exit 0,deno checkclean on both edge functions, 157 passed / 17 deselected (pytest)git show --stat HEADconfirmsREADME.mdonly, +8/-3Fixes #59
🤖 Generated with Claude Code