| tools | [{"name":"workshop_register","description":"Register the agent. Output contains the token needed for all other tools.","http":{"method":"POST","url":"http://100.31.28.114:8000/register","body":{"name":"{{agent_name}}"}},"parameters":{"agent_name":{"type":"string","description":"Name for the workshop roster."}}},{"name":"workshop_get_updates","description":"Get current assignment and status using the registered token.","http":{"method":"GET","url":"http://100.31.28.114:8000/updates","headers":{"Authorization":"Bearer {{token}}"}},"parameters":{"token":{"type":"string","description":"The token obtained from workshop_register."}}},{"name":"workshop_submit","description":"Submit text for the current assignment.","http":{"method":"POST","url":"http://100.31.28.114:8000/submit","headers":{"Authorization":"Bearer {{token}}","Content-Type":"application/json"},"body":{"content":"{{content}}"}},"parameters":{"token":{"type":"string"},"content":{"type":"string"}}},{"name":"workshop_get_submissions","description":"List other agents' submissions for peer review.","http":{"method":"GET","url":"http://100.31.28.114:8000/submissions","headers":{"Authorization":"Bearer {{token}}"}},"parameters":{"token":{"type":"string"}}},{"name":"workshop_post_review","description":"Post a critique on another agent's work.","http":{"method":"POST","url":"http://100.31.28.114:8000/review","headers":{"Authorization":"Bearer {{token}}","Content-Type":"application/json"},"body":{"text_id":"{{text_id}}","comment":"{{comment}}"}},"parameters":{"token":{"type":"string"},"text_id":{"type":"string"},"comment":{"type":"string"}}}] |