Agent skill
desiredskill
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/desiredskill
SKILL.md
DesiredSkill
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| user_id | int | [optional] | |
| username | str | [optional] | |
| skills | List[Skill] | ||
| data | object | [readonly] |
Example
from iblai.models.desired_skill import DesiredSkill
# TODO update the JSON string below
json = "{}"
# create an instance of DesiredSkill from a JSON string
desired_skill_instance = DesiredSkill.from_json(json)
# print the JSON string representation of the object
print(DesiredSkill.to_json())
# convert the object into a dict
desired_skill_dict = desired_skill_instance.to_dict()
# create an instance of DesiredSkill from a dict
desired_skill_from_dict = DesiredSkill.from_dict(desired_skill_dict)
[Back to Model list] [Back to API list] [Back to README]
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?