{
  "$schema": "https://agentskills.io/schemas/skills.json",
  "version": "0.1.0",
  "site": {
    "name": "Jose Luis Hernando",
    "url": "https://jlhernando.com/",
    "author": {
      "name": "Jose Luis Hernando Sanz",
      "url": "https://jlhernando.com/about-me/",
      "schema": "https://jlhernando.com/schema/schema-person.json"
    }
  },
  "skills": [
    {
      "name": "lookup-jlhernando-seo-knowledge",
      "version": "0.1.0",
      "description": "Look up technical SEO content authored by Jose Luis Hernando — covers SEO automation, Google Apps Script, Google Search Console (Index Coverage, URL Inspection API), and JavaScript SEO. Uses llms.txt for discovery and per-post .md files for full content.",
      "instructions": "https://jlhernando.com/SKILL.md",
      "license": "CC-BY-4.0",
      "inputs": [
        {
          "name": "query",
          "type": "string",
          "description": "The user's question or topic.",
          "required": true
        },
        {
          "name": "depth",
          "type": "string",
          "enum": ["summary", "full-article"],
          "default": "summary",
          "description": "summary returns title + URL + one-line summary; full-article fetches the full Markdown body."
        }
      ],
      "resources": [
        {
          "name": "concise-index",
          "url": "https://jlhernando.com/llms.txt",
          "type": "text/markdown",
          "description": "All blog posts with one-line summaries, grouped by section."
        },
        {
          "name": "full-corpus",
          "url": "https://jlhernando.com/llms-full.txt",
          "type": "text/markdown",
          "description": "Concatenated full text of every blog post — fetch once for full context."
        },
        {
          "name": "blog-post-pattern",
          "url": "https://jlhernando.com/blog/{slug}.md",
          "type": "text/markdown",
          "description": "Raw Markdown of any blog post by slug. Slugs come from the concise-index resource."
        },
        {
          "name": "sitemap",
          "url": "https://jlhernando.com/sitemap.xml",
          "type": "application/xml"
        }
      ],
      "examples": [
        {
          "query": "How do I bulk check Google index status for thousands of URLs?",
          "outline": "Match llms.txt entries containing 'index' and 'URL inspection'. Likely candidates: /blog/url-inspector-automator-node/ and /blog/gsc-index-coverage-extractor/. Also surface the Free Bulk Google Index Inspect tool."
        },
        {
          "query": "Beginner intro to Apps Script for SEO",
          "outline": "Fetch /blog/intro-google-apps-script-seo.md and cite /blog/intro-google-apps-script-seo/."
        }
      ]
    }
  ]
}
