deploy
This commit is contained in:
43
skills/assignments/SKILL.md
Normal file
43
skills/assignments/SKILL.md
Normal file
@@ -0,0 +1,43 @@
|
||||
---
|
||||
name: assignments-routes
|
||||
description: Handle 3 OpenAPI operation(s) under /assignments/{assignment_id} for the assignments route group.
|
||||
---
|
||||
|
||||
# assignments API Routes
|
||||
|
||||
Handle 3 OpenAPI operation(s) under /assignments/{assignment_id} for the assignments route group.
|
||||
|
||||
Use the generated operation tools to make real API calls. Do not invent API responses.
|
||||
If a tool reports missing setup, return the exact setup field name to the caller.
|
||||
For write, update, or delete operations, state the intended action before calling the tool.
|
||||
|
||||
## Operations
|
||||
|
||||
### classroom_get_an_assignment
|
||||
|
||||
- Operation ID: `classroom_get_an_assignment`
|
||||
- Route: `GET /assignments/{assignment_id}`
|
||||
- Mode: READ
|
||||
- Summary: Get an assignment
|
||||
- Parameters:
|
||||
- `assignment_id` in `path` required
|
||||
|
||||
### classroom_list_accepted_assignments_for_an_assignment
|
||||
|
||||
- Operation ID: `classroom_list_accepted_assignments_for_an_assignment`
|
||||
- Route: `GET /assignments/{assignment_id}/accepted_assignments`
|
||||
- Mode: READ
|
||||
- Summary: List accepted assignments for an assignment
|
||||
- Parameters:
|
||||
- `assignment_id` in `path` required
|
||||
- `page` in `query`
|
||||
- `per_page` in `query`
|
||||
|
||||
### classroom_get_assignment_grades
|
||||
|
||||
- Operation ID: `classroom_get_assignment_grades`
|
||||
- Route: `GET /assignments/{assignment_id}/grades`
|
||||
- Mode: READ
|
||||
- Summary: Get assignment grades
|
||||
- Parameters:
|
||||
- `assignment_id` in `path` required
|
||||
Reference in New Issue
Block a user