| 1 | # skills.py DOX |
| 2 | |
| 3 | ## Purpose |
| 4 | |
| 5 | - Own the `skills.py` API endpoint. |
| 6 | - This module lists and manages available skills for settings and agent-facing skill flows. |
| 7 | - Keep this file-level DOX profile synchronized with `skills.py` because this directory is intentionally flat. |
| 8 | |
| 9 | ## Ownership |
| 10 | |
| 11 | - `skills.py` owns the runtime implementation. |
| 12 | - `skills.py.dox.md` owns durable notes about responsibilities, contracts, side effects, and verification for that implementation. |
| 13 | - Classes: |
| 14 | - `Skills` (`ApiHandler`) |
| 15 | - `async process(self, input: Input, request: Request) -> Output` |
| 16 | - `list_skills(self, input: Input)` |
| 17 | - `delete_skill(self, input: Input)` |
| 18 | |
| 19 | ## Runtime Contracts |
| 20 | |
| 21 | - HTTP handlers must derive from `helpers.api.ApiHandler`; WebSocket handlers must derive from `helpers.ws.WsHandler`. |
| 22 | - Update this file whenever request payloads, authentication or CSRF requirements, response shapes, route side effects, or WebSocket event contracts change. |
| 23 | - `Skills` is an `ApiHandler`. |
| 24 | - `Skills` defines `process(...)`. |
| 25 | - Observed side-effect areas: filesystem reads, filesystem deletion. |
| 26 | - Imported dependency areas include: `helpers`, `helpers.api`. |
| 27 | |
| 28 | ## Key Concepts |
| 29 | |
| 30 | - Important called helpers/classes observed in the source: `skills.list_skills`, `result.sort`, `str.strip`, `skills.delete_skill`, `projects.get_project_folder`, `runtime.is_development`, `Exception`, `self.list_skills`, `strip`, `files.normalize_a0_path`, `files.get_abs_path`, `self.delete_skill`, `files.is_in_dir`, `projects.get_project_meta`. |
| 31 | - Keep request/response, tool, or helper semantics documented here at the same time as source changes. |
| 32 | |
| 33 | ## Work Guidance |
| 34 | |
| 35 | - Preserve authentication, CSRF, loopback, and API-key checks unless the endpoint contract explicitly changes. |
| 36 | - Update frontend callers, plugin callers, and tests together when payload shape changes. |
| 37 | - Use `helpers.api.Response` for non-JSON responses, files, redirects, or status-specific replies. |
| 38 | |
| 39 | ## Verification |
| 40 | |
| 41 | - Run endpoint-specific or API/WebSocket tests for changed behavior; smoke-test browser callers when no focused test exists. |
| 42 | - Related tests observed by source search: |
| 43 | - `tests/test_a0_connector_prompt_gating.py` |
| 44 | - `tests/test_browser_agent_regressions.py` |
| 45 | - `tests/test_document_query_plugin.py` |
| 46 | - `tests/test_fasta2a_client.py` |
| 47 | - `tests/test_office_canvas_setup.py` |
| 48 | - `tests/test_office_document_store.py` |
| 49 | - `tests/test_skills_runtime.py` |
| 50 | - `tests/test_time_travel.py` |
| 51 | |
| 52 | ## Child DOX Index |
| 53 | |
| 54 | No child DOX files. |