`toloka.async_client.client.AsyncTolokaClient.update_skill` | [Source code](https://github.com/Toloka/toloka-kit/blob/v1.2.1/src/async_client/client.py#L0) ```python async update_skill( self, skill_id: str, skill: Skill ) ``` Updates all skill parameters in Toloka.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add Toloka/docs --skill reference --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Reference?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/toloka-reference-0a8f6024)More formats (shields.io, HTML) on the badges page.
# update_skill
`toloka.async_client.client.AsyncTolokaClient.update_skill` | [Source code](https://github.com/Toloka/toloka-kit/blob/v1.2.1/src/async_client/client.py#L0)
```python
async update_skill(
self,
skill_id: str,
skill: Skill
)
```
Updates all skill parameters in Toloka.
## Parameters Description
| Parameters | Type | Description |
| :----------| :----| :-----------|
`skill_id`|**str**|<p>The ID of the skill to be updated.</p>
`skill`|**[Skill](toloka.client.skill.Skill.md)**|<p>The skill with new parameters.</p>
* **Returns:**
The skill with updated parameters.
* **Return type:**
[Skill](toloka.client.skill.Skill.md)
**Examples:**
```python
updated_skill = toloka_client.get_skill(skill_id='14486')
updated_skill.hidden = False
toloka_client.update_skill(skill_id=updated_skill.id, skill=updated_skill)
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!