doc-xlsx

doc-xlsx is a skill for Claude Code from modu-ai/moai-cowork. It costs 235 tokens per session (2,075 once invoked), scanned A, original, Apache-2.0.

A spreadsheet generator that creates Excel (.xlsx) files with tables, charts, formulas, and conditional formatting. It can structure reports such as KPI dashboards, sales analyses, budgets, payroll sheets, and project timelines.

In plain words
What is it for?
It helps create KPI dashboards, monthly sales and profit reports, budget-versus-actual trackers, summary tables, payroll sheets, and Gantt charts for project schedules.
Why use it?
It removes the manual work of laying out business data, writing common calculations, and formatting reports. The result is a ready-to-use workbook with Korean business number, currency, date, and percentage formats.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the moai-officer plugin — 13 skills, 2 agents shipped together

Good fit It helps create KPI dashboards, monthly sales and profit reports, budget-versus-actual trackers, summary tables, payroll sheets, and Gantt charts for project schedules.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/modu-ai/moai-cowork/doc-xlsx
Install

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.

Any agent
npx skills add modu-ai/moai-cowork --skill doc-xlsx
Clone the repo
git clone --depth 1 https://github.com/modu-ai/moai-cowork

Made for: Claude Code.

Or install moai-officer, the plugin that ships this one along with the rest of its 13 skills, 2 agents.

Wrote 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.

agentmods badge for doc-xlsx

README.md
[![agentmods](https://agentmods.dev/badge/skills/modu-ai/moai-cowork/doc-xlsx/github.svg)](https://agentmods.dev/skills/modu-ai/moai-cowork/doc-xlsx)
Your own site
<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.

agentmods 80×15 button for doc-xlsx

Your own site · 80×15
<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>
Per session 235 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,075 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 7d ago against content hash c819206fb037, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

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.

plugins/moai-officer/skills/doc-xlsx/SKILL.md · 184 lines

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 이하)에서는 호환성 팩이 필요합니다.

Read the full file on GitHub · 184 lines

Changes

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.

  1. 7d ago First seen · 184 lines · 235 tokens per session scan A c819206fb037

Subscribe to this mod's changes

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.