fix(comm): use JSON (stdlib) for shared_context; update docs
Some checks failed
Architecture Lint / Linter Tests (pull_request) Successful in 24s
Smoke Test / smoke (pull_request) Failing after 18s
Validate Config / YAML Lint (pull_request) Failing after 14s
Validate Config / JSON Validate (pull_request) Successful in 18s
Validate Config / Python Syntax & Import Check (pull_request) Failing after 45s
Validate Config / Python Test Suite (pull_request) Has been skipped
Validate Config / Shell Script Lint (pull_request) Failing after 44s
Validate Config / Cron Syntax Check (pull_request) Successful in 10s
Validate Config / Deploy Script Dry Run (pull_request) Successful in 10s
Validate Config / Playbook Schema Validation (pull_request) Successful in 21s
Architecture Lint / Lint Repository (pull_request) Failing after 17s
PR Checklist / pr-checklist (pull_request) Failing after 3m3s

Switch from PyYAML dependency to json module for maximum portability.
File is now wizards/shared_context.json — same schema, JSON encoding.
wizard-summon.py rewritten to use json.loads/dumps (no external dep).
Docs updated accordingly.
This commit is contained in:
step35-burn-bot
2026-04-26 01:37:10 -04:00
parent 3f24b51a54
commit d4e16605d1
3 changed files with 67 additions and 21 deletions

View File

@@ -0,0 +1,46 @@
{
"version": "1.0",
"updated_at": "2026-04-26T00:00:00Z",
"active_summon": {
"summon_id": null,
"priority": null,
"topic": null,
"summoner": null,
"summoned_at": null,
"deadline": null,
"status": null,
"acknowledgements": {
"timmy": null,
"allegro": null,
"bezalel": null,
"ezra": null
}
},
"wizard_status": {
"timmy": {
"status": "idle",
"last_seen": null,
"current_task": null,
"notes": null
},
"allegro": {
"status": "idle",
"last_seen": null,
"current_task": null,
"notes": null
},
"bezalel": {
"status": "idle",
"last_seen": null,
"current_task": null,
"notes": null
},
"ezra": {
"status": "idle",
"last_seen": null,
"current_task": null,
"notes": null
}
},
"message_log": []
}