Skip to main content

hermesoffice-documents

Produce and edit Word documents in HermesOffice Docs — block editing, tracked changes, reports, and the templates/docs library (meeting notes, business plan, PRD, decision memo, and more). Load for any request that creates or restructures a document.

설치로 이동

소스 정보

저장소
criptogus/HermesOffice
최근 소스 활동
2026년 8월 6일 13:28
감지된 SKILL.md 언어
영어
스타
580
포크
77

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
hermesoffice-documents
description
Produce and edit Word documents in HermesOffice Docs — block editing, tracked changes, reports, and the templates/docs library (meeting notes, business plan, PRD, decision memo, and more). Load for any request that creates or restructures a document.
# Producing documents ## Editing the open document (in-app tools) - Orient first: `get_document_context`, then `read_blocks` for the regions you will touch. - Edit at block granularity: `replace_blocks` / `insert_content` / `apply_commands`. Only reference styles that already exist in the document. - Respect tracked changes: when the document has revisions enabled, your edits are recorded as proposals for the user to accept — do not try to bypass that. - Charts and images: `insert_chart` needs real data (from the document, the user, or `web_search`); never invent figures. ## Creating a new document (file-level tools) Flow for "write me a report / plan / memo": 1. Read the sources (`hermesoffice_extract_text` on the referenced files, or the in-app read tools). 2. Pick the closest template from `templates/docs/` and follow its structure: | Template | Use for | | --------------------------- | ------------------------------------------------ | | `meeting-notes.docx` | Minutes: agenda, decisions, action items | | `idea-brief.docx` | Pitching a concept and its next experiment | | `business-plan.docx` | Full plan through financials and the ask | | `project-proposal.docx` | Scoped proposal with milestones and risks | | `status-report.docx` | Weekly status: TL;DR, done/planned, blockers | | `product-requirements.docx` | PRD: stories, requirements, rollout | | `decision-memo.docx` | Options table + recommendation + decision record | | `one-pager.docx` | Single-page executive summary with an ask | 3. Replace every `[placeholder]` and italic guidance line with real content; keep the heading structure; delete the template note. 4. Write the result as a **new** `.docx` (`hermesoffice_docx_create`), open it with `hermesoffice_app_open_file`, and reply with the path. ## Style Professional, concrete, and tight: numbers over adjectives, one idea per paragraph, tables for anything enumerable. Match the language the user is writing in; the templates are English but the content follows the user.
GitHub에서 보기