用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dapperdivers/roundtable-arsenal --skill household-ops命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Synthesize domain knight summaries into a comprehensive Daily Briefing for Derek's Obsidian vault. Your output IS the briefing file — write the full document, not a summary of it.
Procedure for the morning-briefing verify_claims step: re-run the check behind every mechanically-verifiable claim in the domain summaries, build the authoritative knight-liveness map from vault file mtimes, update the open-items ledgers, and emit one JSON verification report that the synthesizer treats as the only source of numbers.
Protocol for the per-domain open-items ledger at /vault/Briefings/Ledger/<domain>.json. Replaces prose memory as the carry-forward mechanism for tracked items: Day-N counters are computed from first_seen, items are re-verified before being carried, and resolutions are recorded machine-readably so they can never be silently lost.
基于 SOC 职业分类
正在显示 SKILL.md
| name | household-ops |
| description | Household management — Home Assistant control, family calendar, checklists, and home automation |
Home automation, family coordination, and household management via Home Assistant REST API.
http://home-assistant.home.svc.cluster.local:8123Authorization: Bearer $HOMEASSISTANT_TOKENHA="http://home-assistant.home.svc.cluster.local:8123/api"
AUTH="Authorization: Bearer $HOMEASSISTANT_TOKEN"
# Get state of an entity
curl -s -H "$AUTH" "$HA/states/light.living_room" | jq '{state, brightness: .attributes.brightness}'
# List all entities (filter with jq)
curl -s -H "$AUTH" "$HA/states" | jq '[.[] | {entity_id, state}]'
# Search entities by keyword
curl -s -H "$AUTH" "$HA/states" | jq '[.[] | select(.entity_id | contains("living")) | {entity_id, state}]'
# Turn on
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/light/turn_on" \
-d '{"entity_id": "light.living_room"}'
# Turn on with brightness (0-255)
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/light/turn_on" \
-d '{"entity_id": "light.living_room", "brightness": 150}'
# Turn on with color temp (mireds: 153=cool, 500=warm)
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/light/turn_on" \
-d '{"entity_id": "light.living_room", "color_temp": 300}'
# Turn off
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/light/turn_off" \
-d '{"entity_id": "light.living_room"}'
# Toggle
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/light/toggle" \
-d '{"entity_id": "light.living_room"}'
# Get thermostat state
curl -s -H "$AUTH" "$HA/states/climate.thermostat" | jq '{state: .state, current_temp: .attributes.current_temperature, target_temp: .attributes.temperature}'
# Set temperature
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/climate/set_temperature" \
-d '{"entity_id": "climate.thermostat", "temperature": 72}'
# Set HVAC mode (heat, cool, auto, off)
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/climate/set_hvac_mode" \
-d '{"entity_id": "climate.thermostat", "hvac_mode": "auto"}'
# Activate a scene
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/scene/turn_on" \
-d '{"entity_id": "scene.movie_time"}'
# List all scenes
curl -s -H "$AUTH" "$HA/states" | jq '[.[] | select(.entity_id | startswith("scene.")) | .entity_id]'
# Toggle switch
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/switch/toggle" \
-d '{"entity_id": "switch.porch_light"}'
# Open/close cover (garage, blinds)
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/cover/open_cover" \
-d '{"entity_id": "cover.garage_door"}'
# Get sensor value
curl -s -H "$AUTH" "$HA/states/sensor.outdoor_temperature" | jq '{state, unit: .attributes.unit_of_measurement}'
# Get history (last 24h)
curl -s -H "$AUTH" "$HA/history/period?filter_entity_id=sensor.outdoor_temperature" | jq '.[0] | length'
# Trigger an automation
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/automation/trigger" \
-d '{"entity_id": "automation.goodnight"}'
# Enable/disable automation
curl -s -X POST -H "$AUTH" -H "Content-Type: application/json" \
"$HA/services/automation/turn_off" \
-d '{"entity_id": "automation.motion_lights"}'
## Groceries — Week of [DATE]
### Produce
- [ ]
### Protein
- [ ]
### Dairy
- [ ]
### Pantry
- [ ]
### Household
- [ ]
### Notes
-
## Wedding Planning — [MONTHS] Out
### Venue & Vendors
- [ ] Venue booked and deposit paid
- [ ] Caterer selected and menu finalized
- [ ] Photographer/videographer booked
- [ ] DJ/band booked
- [ ] Officiant confirmed
- [ ] Florist selected
### Logistics
- [ ] Guest list finalized
- [ ] Invitations sent (8 weeks before)
- [ ] RSVPs tracked
- [ ] Seating chart drafted
- [ ] Transportation arranged
- [ ] Hotel block reserved
### Personal
- [ ] Attire purchased and fitted
- [ ] Rings purchased
- [ ] Vows written
- [ ] Marriage license obtained
- [ ] Name change documents prepared (if applicable)
### Week-Of
- [ ] Final vendor confirmations
- [ ] Timeline distributed to wedding party
- [ ] Emergency kit packed
- [ ] Rehearsal dinner planned
## Baby Prep — [WEEKS] Before Due Date
### Essentials
- [ ] Car seat (installed and inspected)
- [ ] Crib/bassinet with firm mattress
- [ ] Diapers and wipes (newborn + size 1)
- [ ] Onesies and sleepers (0-3 months)
- [ ] Swaddles and blankets
- [ ] Bottles and formula (even if breastfeeding — backup)
### Medical
- [ ] Pediatrician selected
- [ ] Hospital bag packed
- [ ] Insurance updated / baby added post-birth plan
- [ ] Birth plan discussed with provider
### Home
- [ ] Nursery set up
- [ ] Baby monitor installed
- [ ] Outlet covers and cabinet locks
- [ ] Freezer meals prepped (2 weeks worth)
- [ ] Pet introduction plan (if applicable)
### Admin
- [ ] FMLA/parental leave filed
- [ ] Birth certificate process understood
- [ ] SSN application ready
- [ ] Will/guardianship updated
- [ ] 529 account opened
jq to filter large entity lists