Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add modu-ai/moai-cowork --skill doc-xlsxgit clone --depth 1 https://github.com/modu-ai/moai-coworkWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/modu-ai/moai-cowork/doc-xlsx)<a href="https://agentmods.dev/skills/modu-ai/moai-cowork/doc-xlsx"><img src="https://agentmods.dev/badge/skills/modu-ai/moai-cowork/doc-xlsx/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/modu-ai/moai-cowork/doc-xlsx"><img src="https://agentmods.dev/badge/skills/modu-ai/moai-cowork/doc-xlsx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00235 | $0.02075 |
| Opus 5 | $0.00118 | $0.01038 |
| Sonnet 5 | $0.00047 | $0.00415 |
| Haiku 4.5 | $0.00023 | $0.00208 |
Grade A, and why
doc-xlsx scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 184 lines — stays where its author put it; the contents beside it link to each section on GitHub.
엑셀 생성기 (XLSX Creator)
개요
Python openpyxl 라이브러리를 기반으로 XLSX 형식의 스프레드시트를 생성합니다. 데이터 표, 차트, 수식, 조건부 서식을 포함한 한국 비즈니스 보고서(재무 분석, KPI 대시보드, 예산 계획, 집계표)를 자동 생성합니다.
트리거 키워드
엑셀, xlsx, Excel, 스프레드시트, 표, 차트, 데이터 시트, 집계표, 예산 계획, 재무 분석, KPI 대시보드, 손익계산, 매출 분석
워크플로우
1단계: 보고서 유형 결정
사용자 요청 분석 후 보고서 유형 선택:
- KPI 대시보드: 월별 지표 추적
- 재무/매출 분석: 월별 손익, 예산 대비 실적
- 프로젝트 일정: 간트차트
- 데이터 집계표: 피벗 형식
- 급여/인사 관리: 임금 계산
2단계: 데이터 구조 설계
from openpyxl import Workbook
from openpyxl.styles import Font, PatternFill, Alignment, Border
from openpyxl.chart import BarChart, LineChart, Reference
wb = Workbook()
ws = wb.active
# 헤더, 데이터, 수식, 차트 영역 설계
3단계: 시트 구성 및 데이터 입력
KPI 대시보드 예시:
시트 1: 대시보드 요약
- 핵심 KPI 카드 (목표 vs 실적)
- 월별 추이 꺾은선 차트
- 달성률 게이지 (조건부 서식)
시트 2: 월별 데이터
- 각 KPI 월별 실적 데이터
시트 3: 부서별 분류
재무/매출 분석 예시:
헤더: 구분 | 1월 | 2월 | ... | 12월 | 합계 | 전년 대비
데이터: 매출 | 비용 | 영업이익 | 영업이익률
수식: =SUM(), =AVERAGE(), =(실적-목표)/목표
조건부 서식: 목표 미달 시 빨간색, 초과 달성 시 파란색
프로젝트 간트차트 예시:
행: 업무 항목
열: 날짜 (주 단위 또는 일 단위)
표시: 시작일/종료일에 따른 셀 색상 자동 적용
4단계: 서식 적용
한국 비즈니스 표준 서식을 적용합니다:
| 항목 | 표준 값 |
|---|---|
| 숫자 형식 | #,##0 (천 단위 구분) |
| 통화 형식 | #,##0 "원" 또는 ₩#,##0 |
| 퍼센트 | 0.0% |
| 날짜 | YYYY-MM-DD 또는 YYYY년 M월 D일 |
| 헤더 배경 | 파란 계열 (#4472C4) 또는 회색 계열 |
| 합계 행 | 굵게 + 연한 배경색 |
5단계: 차트 삽입
데이터 범위를 참조하여 차트를 생성합니다:
- 막대형 차트: 월별 매출 비교
- 꺾은선형 차트: KPI 추이
- 원형 차트: 비율 분석
- 분산형 차트: 상관 관계
6단계: 수식 삽입
표준 엑셀 수식을 자동 생성합니다:
- SUM, AVERAGE, COUNT
- VLOOKUP, HLOOKUP
- IF, AND, OR
- CONCATENATE, TEXT
- 날짜/시간 함수
사용 예시
- "KPI 대시보드를 엑셀로 만들어줘 (매출, 신규 고객, 리텐션)"
- "월간 매출 분석표를 생성해줘 (1월-12월)"
- "프로젝트 일정 간트차트를 엑셀로 작성해줘"
- "급여 계산 시트를 만들어줘 (기본급, 수당, 세금)"
- "예산 대비 실적 추적표를 생성해줘"
출력 형식
- 파일 형식:
.xlsx(Excel 2007+ 호환) - 시트 구성: 다중 시트 (요약 + 데이터 + 차트)
- 인쇄 설정: A4 페이지, 페이지 번호, 인쇄 영역
- 수식 설명: 어느 셀에 어떤 수식이 사용되었는지 문서화
주의사항
Microsoft Excel 호환성
openpyxl 생성 파일은 Excel 2016+ 및 Google Sheets에서 정상 열람 가능합니다. 구버전 Excel(2003 이하)에서는 호환성 팩이 필요합니다.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 184 lines · 235 tokens per session scan A c819206fb037
doc-xlsx is a skill published in the GitHub repository modu-ai/moai-cowork (300 stars, last pushed 8d ago), licensed Apache-2.0. It adds 235 tokens to every session and 2,075 once invoked, about $0.0012 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other skills, from other repositories
recipe-backup-sheet-as-csv
Export a Google Sheets spreadsheet as a CSV file for local backup or processing.
recipe-bulk-download-folder
List and download all files from a Google Drive folder.
recipe-copy-sheet-for-new-month
Duplicate a Google Sheets template tab for a new month of tracking.
recipe-create-events-from-sheet
Read event data from a Google Sheets spreadsheet and create Google Calendar entries for each row.
recipe-create-expense-tracker
Set up a Google Sheets spreadsheet for tracking expenses with headers and initial entries.
recipe-generate-report-from-sheet
Read data from a Google Sheet and create a formatted Google Docs report.