← back to AgentAbrams

skills/md_to_media.json

19 lines

{
  "name": "md_to_media",
  "description": "Convert any markdown file into a structured educational blog post and podcast episode. Credits the developer, explains what the project is, how it works, and how others can implement it themselves.",
  "input_schema": {
    "type": "object",
    "properties": {
      "md_path": {
        "type": "string",
        "description": "Path to the source markdown file"
      },
      "developer_name": {
        "type": "string",
        "description": "Name to credit as developer/author in all outputs"
      }
    },
    "required": ["md_path", "developer_name"]
  }
}