import type { Skill } from '@firecrawl/agent-sdk'
// TODO: Update the object below with actual values
const example = {
"name": null,
"description": null,
"category": null,
"resources": null,
} satisfies Skill
console.log(example)
// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)
// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as Skill
console.log(exampleParsed)
1---2name: docs-103description: Skill4---56# Skill789## Properties1011Name | Type12------------ | -------------13`name` | string14`description` | string15`category` | string16`resources` | Array<string>1718## Example1920```typescript21import type { Skill } from '@firecrawl/agent-sdk'2223// TODO: Update the object below with actual values24const example = {25 "name": null,26 "description": null,27 "category": null,28 "resources": null,29} satisfies Skill3031console.log(example)3233// Convert the instance to a JSON string34const exampleJSON: string = JSON.stringify(example)35console.log(exampleJSON)3637// Parse the JSON string back to an object38const exampleParsed = JSON.parse(exampleJSON) as Skill39console.log(exampleParsed)40```4142[[Back to top]](#) [[Back to API list]](../README.md#api-endpoints) [[Back to Model list]](../README.md#models) [[Back to README]](../README.md)4344
Run npx skillmds@latest add firecrawl/docs-10 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.