Overview
The excel-analyzer allows your agent to seamlessly interact with .xlsx and .xls files. It utilizes pandas under the hood to execute robust data tasks.
Example Usage
- name: Analyze Sales Data
use: anthropics/excel-analyzer@v1
A powerful AI agent skill to read, analyze, and generate insights from Excel files directly without writing python scripts.
将此提示词发送给你的 Agent,它将自动完成安装:
请先检查是否已安装 SkillHub 商店。若未安装,请根据官方指南安装 CLI。
若已安装,请直接帮我下载并配置 `excel-analyzer` 技能。
人类开发者专用,使用终端执行以下命令:
npx skills add excel-analyzer
The excel-analyzer allows your agent to seamlessly interact with .xlsx and .xls files. It utilizes pandas under the hood to execute robust data tasks.
- name: Analyze Sales Data
use: anthropics/excel-analyzer@v1
# main_skill_code 字段内容
import pandas as pd
def analyze_excel(file_path):
df = pd.read_excel(file_path)
return df.describe().to_json()
if __name__ == "__main__":
print("Agent Skill Loaded Successfully.")