Install
openclaw skills install nova-accountabilityManage accountability items on a Monday.com board. Use when creating new accountability items, checking on existing ones, running work sessions, or when a cron job fires. Also use when the owner says "you're accountable for X" or asks about accountability status.
openclaw skills install nova-accountabilityThis skill is config-driven. All board IDs, column IDs, and names come from plugin config (see frontmatter above). For this installation:
{{config.board_id}}{{config.owner_name}}{{config.agent_name}}| Column | Config Key | Default ID | Type | Purpose |
|---|---|---|---|---|
| Status | columns.status | color_mm0yr4nm | status | Active / Done / Blocked |
| Check Frequency | columns.check_frequency | text_mm0y6b8r | text | How often to check: 1h, 2h, 4h, 8h, daily |
| Last Checked | columns.last_checked | date_mm0y8p9j | date | When agent last reviewed this item |
| Details | columns.details | long_text_mm0yce5e | long_text | Full definition of done, context, blockers |
| Assigned By | columns.assigned_by | color_mm10z99x | status | Who created/assigned this task |
{{config.assigned_by_labels.owner}}): Only {{config.owner_name}} can mark them Done. Agent may suggest completion but must NOT change status to Done.{{config.assigned_by_labels.agent}}): Agent can mark them Done independently.{{config.api_token_env}} in ~/.openclaw/.envhttps://api.monday.com/v2 (GraphQL)Authorization: <token>This is the core loop. Every hour, a cron job fires and the agent runs a real work session — not just a status check.
If stuck, blocked, or unsure what to do next:
{{config.owner_name}} or others. Don't limit yourself. If someone else has the context or ability to unblock you, reach out to them directly.{{config.owner_name}} can do that{{config.board_id}} with create_item mutation{{config.assigned_by_labels.owner}} or {{config.assigned_by_labels.agent}} depending on who initiated itEvery day at 9:00 AM, review all active items and write a consolidated update to {{config.owner_name}}.
Sub-items are used as subtasks under each accountability item. They represent specific work units.
mutation { create_subitem(parent_item_id: PARENT_ID, item_name: "SUBTASK_NAME") { id } }
{ items(ids: [PARENT_ID]) { subitems { id name column_values { id text value } } } }
Replace BOARD_ID with {{config.board_id}} and column IDs with values from config.
{ boards(ids: BOARD_ID) { items_page(limit: 50) { items { id name column_values { id text value } updates(limit: 3) { body created_at } subitems { id name column_values { id text value } } } } } }
mutation { create_item(board_id: BOARD_ID, item_name: "TITLE", column_values: "{\"DETAILS_COL\":{\"text\":\"DETAILS\"},\"FREQ_COL\":\"FREQ\",\"ASSIGNED_COL\":{\"label\":\"OWNER_LABEL\"}}") { id } }
mutation { create_update(item_id: ITEM_ID, body: "<p>UPDATE_HTML</p>") { id } }
mutation { change_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: "LAST_CHECKED_COL", value: "{\"date\":\"YYYY-MM-DD\"}") { id } }
Status labels: Working on it (1/orange), Done (2/green), Stuck (0/red)
mutation { change_column_value(board_id: BOARD_ID, item_id: ITEM_ID, column_id: "STATUS_COL", value: "{\"label\":\"Working on it\"}") { id } }
Run scripts/monday-api.sh for common operations:
export MONDAY_API_TOKEN="your_token"
export MONDAY_BOARD_ID="your_board_id"
# List items
bash scripts/monday-api.sh list
# Add update to item
bash scripts/monday-api.sh update <item_id> "<html body>"
# Set last checked
bash scripts/monday-api.sh checked <item_id>
{{config.messaging_hours.start}} – {{config.messaging_hours.end}} ({{config.messaging_hours.timezone}}) unless it's genuinely urgent{{config.owner_name}} can be messaged anytime if something is truly urgentBefore doing ANY work on an accountability item, you MUST read the full Document/Details column on that item first. This contains important context, constraints, and explicit instructions about what to do and what NOT to do. Skipping this step has caused the agent to undo previous decisions. No exceptions.
When spawning any sub-agent for work on an accountability item, you MUST include the full text from the item's Details/Doc column in the sub-agent's task prompt. This includes constraints, warnings, history, and explicit "DO NOT" instructions. The sub-agent has no memory of previous sessions — if it doesn't get the context in its prompt, it will make decisions that contradict prior decisions.