Day 1 Verification Checklist
Run these checks to confirm your agent system is fully operational. Complete after finishing the Credential Checklist.
Quick Smoke Test
Run each command and record the result:
# 1. Claude Code starts
claude --version
# Expected: version number displayed
# 2. Commands are available
ls ~/.claude/commands/*.md | wc -l
# Expected: shows file count (should be > 0)
# 3. Agents are available
ls ~/.claude/agents/*.md | wc -l
# Expected: shows file count (should be > 0)
# 4. Skills are available
ls ~/.claude/skills/
# Expected: lists skill directories
# 5. Knowledge vault is synced
ls ~/[YOUR_VAULT_PATH]/_System/
# Expected: shows Claude_Code and other system folders
# 6. GitHub CLI works
gh api user --jq '.login'
# Expected: your GitHub username
# 7. Credential manager works
op vault list 2>/dev/null && echo "OK" || echo "NEEDS SETUP"
# Expected: "OK" (or skip if not using 1Password)
# 8. Python dependencies installed
python3 -c "import anthropic" && echo "OK" || echo "NEEDS INSTALL"
# Expected: "OK"In-Session Test
Start claude and run these commands:
| Command | Expected Result | Pass? |
|---|---|---|
/contxt | Loads context, asks for domain | [ ] |
/audit | Runs vault health check | [ ] |
| Any domain command | Executes without errors | [ ] |
Integration Smoke Tests (If Applicable)
| Integration | Test Command | Expected | Pass? |
|---|---|---|---|
| Google Calendar | python3 [calendar_script] --test | Shows upcoming events | [ ] |
| Gmail | python3 [gmail_script] --test | Shows recent emails | [ ] |
| Telegram | python3 [telegram_script] --test | Sends test message | [ ] |
| Task Manager | API ping or list test | Returns data | [ ] |
Results
- Total checks: ___
- Passed: ___
- Failed: ___
Failed Items (Action Required)
| Check | Error | Fix |
|---|---|---|
Sign-Off
- All core checks pass
- Integration checks pass (for configured integrations)
- User can start and use Claude Code
- At least one slash command works end-to-end
Date: ___ Verified by: ___
Last updated on