소스 정보
- 저장소
- RedWoodOG/Hermes-Desktop
- 최근 소스 활동
- 2026년 4월 5일 15:04
- 감지된 SKILL.md 언어
- 영어
- 스타
- 178
- 포크
- 23
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/RedWoodOG/Hermes-Desktop --skill xlsx명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | xlsx |
| description | Spreadsheet creation, reading, editing, formula support, and chart generation. |
| tools | bash, read_file, write_file, terminal |
You are an expert at creating and editing Excel spreadsheets using Python. You handle data, formulas, formatting, and charts.
pip install openpyxl pandas 2>/dev/null
import openpyxl
from openpyxl.styles import Font, Alignment, PatternFill, Border, Side
from openpyxl.utils import get_column_letter
wb = openpyxl.Workbook()
ws = wb.active
ws.title = "Data"
# Headers with formatting
headers = ['Name', 'Category', 'Amount', 'Date']
header_font = Font(bold=True, size=12)
header_fill = PatternFill(start_color="4472C4", end_color="4472C4", fill_type="solid")
header_font_white = Font(bold=True, size=12, color="FFFFFF")
for col, header in enumerate(headers, 1):
cell = ws.cell(row=1, column=col, value=header)
cell.font = header_font_white
cell.fill = header_fill
cell.alignment = Alignment(horizontal='center')
# Data rows
data = [
['Item A', 'Category 1', 150.00, '2024-01-15'],
['Item B', 'Category 2', 275.50, '2024-02-20'],
['Item C', 'Category 1', 89.99, '2024-03-10'],
]
for row_idx, row_data in enumerate(data, 2):
for col_idx, value in enumerate(row_data, 1):
ws.cell(row=row_idx, column=col_idx, value=value)
# Auto-fit column widths
for col in range(1, len(headers) + 1):
ws.column_dimensions[get_column_letter(col)].width = 15
# Add a formula
ws.cell(row=len(data) + 2, column=2, value="Total:")
ws.cell(row=len(data) + 2, column=3, value=f"=SUM(C2:C{len(data)+1})")
wb.save("output.xlsx")
import openpyxl
wb = openpyxl.load_workbook("input.xlsx")
print(f"Sheets: {wb.sheetnames}")
ws = wb.active
for row in ws.iter_rows(min_row=1, max_row=ws.max_row, values_only=True):
print(row)
import pandas as pd
df = pd.read_excel("input.xlsx", sheet_name="Sheet1")
print(df.head())
print(df.describe())
import openpyxl
wb = openpyxl.load_workbook("input.xlsx")
ws = wb.active
# Update a specific cell
ws['B2'] = 'New Value'
# Add a new column
ws.cell(row=1, column=ws.max_column + 1, value='New Column')
# Add formulas to new column
for row in range(2, ws.max_row + 1):
ws.cell(row=row, column=ws.max_column, value=f"=C{row}*1.1")
wb.save("output.xlsx")
from openpyxl.chart import BarChart, Reference
wb = openpyxl.load_workbook("data.xlsx")
ws = wb.active
chart = BarChart()
chart.title = "Sales by Category"
chart.x_axis.title = "Category"
chart.y_axis.title = "Amount"
data_ref = Reference(ws, min_col=3, min_row=1, max_row=ws.max_row)
cats_ref = Reference(ws, min_col=1, min_row=2, max_row=ws.max_row)
chart.add_data(data_ref, titles_from_data=True)
chart.set_categories(cats_ref)
chart.style = 10
chart.width = 20
chart.height = 12
ws.add_chart(chart, "E2")
wb.save("with_chart.xlsx")
import openpyxl
wb = openpyxl.Workbook()
ws1 = wb.active
ws1.title = "Summary"
ws2 = wb.create_sheet("Details")
ws3 = wb.create_sheet("Raw Data")
# Cross-sheet formulas
ws1['A1'] = "Total from Details"
ws1['B1'] = "=Details!B10"
wb.save("multi_sheet.xlsx")
import pandas as pd
df = pd.read_csv("input.csv")
df.to_excel("output.xlsx", index=False, sheet_name="Data")
$#,##0.00) and datesws.freeze_panes = 'A2'ws.auto_filter.ref = ws.dimensions