from firecrawl_agent.models.skill import Skill
# TODO update the JSON string below
json = "{}"
# create an instance of Skill from a JSON string
skill_instance = Skill.from_json(json)
# print the JSON string representation of the object
print(Skill.to_json())
# convert the object into a dict
skill_dict = skill_instance.to_dict()
# create an instance of Skill from a dict
skill_from_dict = Skill.from_dict(skill_dict)
1---2name: docs-93description: Skill4---5# Skill678## Properties910Name | Type | Description | Notes11------------ | ------------- | ------------- | -------------12**name** | **str** | | [optional] 13**description** | **str** | | [optional] 14**category** | **str** | | [optional] 15**resources** | **List[str]** | | [optional] 1617## Example1819```python20from firecrawl_agent.models.skill import Skill2122# TODO update the JSON string below23json = "{}"24# create an instance of Skill from a JSON string25skill_instance = Skill.from_json(json)26# print the JSON string representation of the object27print(Skill.to_json())2829# convert the object into a dict30skill_dict = skill_instance.to_dict()31# create an instance of Skill from a dict32skill_from_dict = Skill.from_dict(skill_dict)33```34[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)3536
Run npx skillmds@latest add firecrawl/docs-9 in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Skill It is listed under AI & ML on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
firecrawl (@firecrawl) published this skill. Their other Agent Skills are listed on their SkillMD profile.