1 comments

  • smallnest 6 hours ago
    While Claude Skills offer powerful capabilities, their utility is primarily confined within the Claude environment itself. To leverage these skills within *your own applications*, we need a dedicated integration solution.

    That's where *[goskills](https://github.com/smallnest/goskills)* comes in. It's a robust parser and execution tool designed for Claude Skills, enabling you to integrate their functionality into popular Large Language Models (LLMs).

    With `goskills`, once you've installed the tool, a single command-line execution is all it takes:

    ```bash ./goskills run --auto-approve --model deepseek-v3 --api-base https://qianfan.baidubce.com/v2 "Use the markitdown tool to parse the webpage https://baike.baidu.com/item/%E5%AD%94%E5%AD%90/1584" ```

    This command calls the `markitdown` Skill to convert the Baidu Baike page about Confucius into Markdown format:

    Therefore, you only need to call `goskills run --auto-approve your_prompt` within your program. You will find code examples for various programming languages later in this article.