skills published and maintained by baidu cloud engine
Python
30
25 commits
updated Sep 18, 2026
Note: This repository contains Baidu AI Cloud's official collection of skills for Claude. For information about the Agent Skills standard, see agentskills.io.
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's integrating with Baidu AI Cloud services, processing data using BCE-specific workflows, or automating cloud-native tasks.
For more information, check out:
This repository is the official skills collection maintained by Baidu AI Cloud (BCE). It contains skills that demonstrate what's possible with Claude's skills system, with a focus on Baidu AI Cloud ecosystem integration and Chinese language support.
Each skill is self-contained in its own folder with a SKILL.md file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches.
famou-artifact-generatorDescription: Create the core materials for a FaMou task from an initial idea or problem statement.
Purpose:
problem.mdinit.py, evaluator.py, and prompt.mdfamou-data-analysisDescription: Analyze and understand datasets used in FaMou tasks or standalone data analysis work.
Purpose:
famou-experiment-managerDescription: Manage the lifecycle of FaMou experiments through configuration, submission, and result retrieval.
Purpose:
famou-ctl availability and API configurationconfig.yaml and submit experimentsfamou-result-visualizationDescription: Convert a final Python-form FaMou solution into an interactive visualization page.
Purpose:
baidu-searchDescription: Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
Purpose:
BAIDU_API_KEY configured via Baidu AI Cloud consolemedical-bill-organizerDescription: Medical bill organizer that automatically classifies, performs OCR recognition, and extracts key information from medical documents.
Purpose:
qianfanocr-document-intelligenceDescription: Analyze image files, image URLs, PDF files, and PDF URLs for visual content understanding, including document parsing, layout analysis, OCR, key information extraction, chart understanding, and document VQA.
Purpose:
QIANFAN_TOKEN configured via Baidu Qianfan platformYou can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:
/plugin marketplace add baidubce/skills
Then, to install a specific set of skills:
Browse and install pluginsbce-agent-skillsInstall nowClone the repository and copy the skills to your Claude skills directory:
rm -rf ~/.claude/skills/famou-* # remove old version
git clone https://github.com/baidubce/skills.git # download from github
cp -r skills/skills/* ~/.claude/skills/ # install to claude-code config directory
npx skills list -g # view all installed skill
Skills are simple to create - just a folder with a SKILL.md file containing YAML frontmatter and instructions. You can use the template in this repository as a starting point:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2
The frontmatter requires only two fields:
name - A unique identifier for your skill (lowercase, hyphens for spaces)description - A complete description of what the skill does and when to use itThe markdown content below contains the instructions, examples, and guidelines that Claude will follow.
| Branch | Purpose |
|---|---|
develop | Default branch for all submissions. All new skills and changes should be submitted here via Pull Request. |
main | Stable branch. Only updated through reviewed merges from develop, and corresponds to official release versions. |
developdevelop branch of baidubce/skillsdevelopdevelop is merged into main to cut a new stable releaseNote: Do not submit PRs directly to
main. All contributions must go throughdevelopfor review.
We welcome contributions from the community! To add a new skill:
developskills/ with your skill nameSKILL.md file following the Agent Skills specificationLICENSE.txt file if applicabledevelop branchSkills in this repository are licensed under the Apache 2.0 License unless otherwise noted. See individual skill directories for specific license information.
Python
85.3%
JavaScript
8.7%
Shell
6.0%
skills published and maintained by baidu cloud engine
Python
30
25 commits
updated Sep 18, 2026
Note: This repository contains Baidu AI Cloud's official collection of skills for Claude. For information about the Agent Skills standard, see agentskills.io.
Skills are folders of instructions, scripts, and resources that Claude loads dynamically to improve performance on specialized tasks. Skills teach Claude how to complete specific tasks in a repeatable way, whether that's integrating with Baidu AI Cloud services, processing data using BCE-specific workflows, or automating cloud-native tasks.
For more information, check out:
This repository is the official skills collection maintained by Baidu AI Cloud (BCE). It contains skills that demonstrate what's possible with Claude's skills system, with a focus on Baidu AI Cloud ecosystem integration and Chinese language support.
Each skill is self-contained in its own folder with a SKILL.md file containing the instructions and metadata that Claude uses. Browse through these skills to get inspiration for your own skills or to understand different patterns and approaches.
famou-artifact-generatorDescription: Create the core materials for a FaMou task from an initial idea or problem statement.
Purpose:
problem.mdinit.py, evaluator.py, and prompt.mdfamou-data-analysisDescription: Analyze and understand datasets used in FaMou tasks or standalone data analysis work.
Purpose:
famou-experiment-managerDescription: Manage the lifecycle of FaMou experiments through configuration, submission, and result retrieval.
Purpose:
famou-ctl availability and API configurationconfig.yaml and submit experimentsfamou-result-visualizationDescription: Convert a final Python-form FaMou solution into an interactive visualization page.
Purpose:
baidu-searchDescription: Search the web using Baidu AI Search Engine (BDSE). Use for live information, documentation, or research topics.
Purpose:
BAIDU_API_KEY configured via Baidu AI Cloud consolemedical-bill-organizerDescription: Medical bill organizer that automatically classifies, performs OCR recognition, and extracts key information from medical documents.
Purpose:
qianfanocr-document-intelligenceDescription: Analyze image files, image URLs, PDF files, and PDF URLs for visual content understanding, including document parsing, layout analysis, OCR, key information extraction, chart understanding, and document VQA.
Purpose:
QIANFAN_TOKEN configured via Baidu Qianfan platformYou can register this repository as a Claude Code Plugin marketplace by running the following command in Claude Code:
/plugin marketplace add baidubce/skills
Then, to install a specific set of skills:
Browse and install pluginsbce-agent-skillsInstall nowClone the repository and copy the skills to your Claude skills directory:
rm -rf ~/.claude/skills/famou-* # remove old version
git clone https://github.com/baidubce/skills.git # download from github
cp -r skills/skills/* ~/.claude/skills/ # install to claude-code config directory
npx skills list -g # view all installed skill
Skills are simple to create - just a folder with a SKILL.md file containing YAML frontmatter and instructions. You can use the template in this repository as a starting point:
---
name: my-skill-name
description: A clear description of what this skill does and when to use it
---
# My Skill Name
[Add your instructions here that Claude will follow when this skill is active]
## Examples
- Example usage 1
- Example usage 2
## Guidelines
- Guideline 1
- Guideline 2
The frontmatter requires only two fields:
name - A unique identifier for your skill (lowercase, hyphens for spaces)description - A complete description of what the skill does and when to use itThe markdown content below contains the instructions, examples, and guidelines that Claude will follow.
| Branch | Purpose |
|---|---|
develop | Default branch for all submissions. All new skills and changes should be submitted here via Pull Request. |
main | Stable branch. Only updated through reviewed merges from develop, and corresponds to official release versions. |
developdevelop branch of baidubce/skillsdevelopdevelop is merged into main to cut a new stable releaseNote: Do not submit PRs directly to
main. All contributions must go throughdevelopfor review.
We welcome contributions from the community! To add a new skill:
developskills/ with your skill nameSKILL.md file following the Agent Skills specificationLICENSE.txt file if applicabledevelop branchSkills in this repository are licensed under the Apache 2.0 License unless otherwise noted. See individual skill directories for specific license information.
Python
85.3%
JavaScript
8.7%
Shell
6.0%