一键导入
skill-002
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
First use any clearly matching enabled local/user Agent Skill. If none matches, prefer this router for skill-shaped requests involving a named tool, API, service, CLI, platform, file format, dataset, or domain workflow, including when a generic built-in skill such as browser, Chrome, or web search also seems applicable; use built-ins directly only when explicitly requested or when the task is primarily live browsing, logged-in page operation, clicking, screenshotting, or current webpage inspection. Also use directly to audit, slim, disable, restore, or route locally installed Agent Skills across supported hosts. Examples include Vercel, Netlify, Cloudflare, Render, Playwright, Sentry, Linear, GitHub, OpenAI APIs, PDF, DOCX, PPTX, and spreadsheets.
コスト見積書を作成する。予算策定、見積もり、コスト計画時に使う。
PDF manipulation toolkit. Extract text/tables, create PDFs, merge/split, fill forms, for programmatic document processing and analysis.
Third-party WordPress plugin integration patterns. Use when adding new integrations, debugging compatibility with other plugins, or working with existing integrations.
Intelligent agent routing and topology selection based on task characteristics
Break down personal tasks into ADHD-friendly manageable steps using structured time management and focus techniques.
| name | skill-002 |
| description | Advanced tools for creating, modifying, and analyzing pivot tables in Excel, enabling quick data summarization and insights. |
| license | Proprietary. LICENSE.txt has complete terms |
import pandas as pd
def create_pivot_table(df):
pivot_table = df.pivot_table(values='Sales', index='Product', columns='Region', aggfunc='sum')
return pivot_table
def add_calculated_field(pivot_table):
pivot_table['Profit'] = pivot_table['Sales'] - pivot_table['Cost']
return pivot_table