office-open CLAUDE.md

office-open CLAUDE.md is an instructions file for coding agents from DemoMacro/office-open. It costs 3,350 tokens per session, scanned A, original, MIT.

Project instructions for office-open, a TypeScript monorepo—a single repository containing multiple related packages—for creating and reading Word, PowerPoint, and Excel files. They describe its shared structure, two-way JSON/XML conversion, measurement units, and options design.

In plain words
What is it for?
Use them when adding or reviewing features in the core, DOCX, PPTX, or XLSX packages, especially around XML parts, parsing, generation, shared types, and options.
Why use it?
They give a coding agent the project’s architecture and conventions so changes fit the existing packages and document-processing approach.

Instructions file

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.

agentmods
npx agentmods add instructions/demomacro/office-open/claude-md
Clone the repo
git clone --depth 1 https://github.com/DemoMacro/office-open

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 office-open CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/demomacro/office-open/claude-md.svg)](https://agentmods.dev/instructions/demomacro/office-open/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/demomacro/office-open/claude-md"><img src="https://agentmods.dev/badge/instructions/demomacro/office-open/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,350 This file is loaded in full into every session.
When invoked 3,350 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
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.03350 $0.03350
Opus 5 $0.01675 $0.01675
Sonnet 5 $0.00670 $0.00670
Haiku 4.5 $0.00335 $0.00335

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

Security

Grade A, and why

office-open CLAUDE.md 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 5d 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.

CLAUDE.md · 59 lines

How it starts

The opening of the file, as written. The whole thing — 59 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior TypeScript developer.

Project

office-open is a monorepo for generating and parsing Office Open XML documents (.docx, .pptx, .xlsx) with JS/TS. Declarative API, works in Node.js and browsers. Bidirectional: stringify (JSON → XML) and parse (XML → JSON).

Architecture

  • Packages: core/ (shared OOXML domains — descriptor runtime, drawing/, chart/, table/, picture/, connector/, group/, smartart, OPC), xml/, docx/, pptx/, xlsx/. The three format packages are peers: same src/ layout (parts/, shared/, compiler.ts, context.ts, generate.ts, parse.ts, patch.ts, index.ts) and one **Options name per shared concept.
  • Parts: one module per OOXML XML part. docx/xlsx co-locate types and the <part>Desc descriptor; pptx keeps descriptors in parts/descriptors/ with public types in shared/<domain>/. Cross-part shared types live in shared/.
  • Descriptor pattern: every part is a CustomDescriptor<T> with hand-written stringify(opts, ctx) + parse(el, ctx) (bidirectional). Runtime at packages/core/src/descriptor/.
  • Cross-format copy reuses core's shared domains + package-to-package conversion in packages/office-open/src/convert/no unified document-model layer. The conversion mode follows how the concept's XML maps across packages:
    • Identical XML (chart: one c:chartSpace part) → shared core model, no conversion.
    • Same element, different anchoring (picture pic:pic/p:pic/xdr:pic; shapes; text) → each package owns an *Options reflecting its anchor model (docx wp:inline/wp:anchor, pptx spTree, xlsx cell anchor) + pairwise convert/* functions; N is small, so pairwise beats a hub-spoke intermediate. The shared payload still lands in core: core/picture/ BasePictureOptions (data/type + cNvPr via NonVisualDrawingPropertiesOptions) is extended by pptx/xlsx PictureOptions, while docx stays a format discriminated union bridged through its altText; convert/picture.ts threads the cNvPr fields (name/description/title/hidden) straight through every leg. The same NonVisualDrawingPropertiesOptions (a:CT_NonVisualDrawingProps) backs every drawing's cNvPr/docPr across all three packages via core/drawing/non-visual/.
    • Structurally different XML (table: w:tbl flow / a:tbl graphic / sml cell-range) → core/table/ defines the shared structural base (BaseTableOptions/BaseTableRowOptions/BaseTableCellOptions: rows/cells/span/6-flags/columnWidths/vertical-align); docx/pptx TableOptions extends Base* add domain-specific style/position, xlsx is independent (its sml Table is a data range, restored visually via convert/table.ts). convert/table.ts passes the structural base through directly and translates only cell content (w:p↔a:p via convert/text), units (twip↔EMU via core/util/converters), and pptx fill/scheme-color → docx shading/themeColor.
    • Connector (cxnSp: p:cxnSp/xdr:cxnSp; docx has no standalone cxnSp) → core/connector/ BaseConnectorOptions extends NonVisualDrawingPropertiesOptions (cNvPr + locking + start/end connection endpoints; no spPr — pptx top-level convenience vs xlsx spPr asymmetry, kept per-package). pptx ConnectorOptions/LineShapeOptions and xlsx ConnectorOptions extend base; convert/connector.ts threads cNvPr + locking + endpoints via pickConnectorBase.
    • Group (grpSp: p:grpSp/xdr:grpSp/wpg:wgp) → core/drawing/group-shape-properties-desc.ts GroupShapePropertiesOptions (CT_GroupShapeProperties: xfrm/fill/effects/scene3d — no geometry/ln/sp3d, distinct from CT_ShapeProperties) + core/group/ BaseGroupOptions extends NonVisualDrawingPropertiesOptions (cNvPr only; grpSpPr content/children/position stay per-package). pptx/xlsx/docx all use GroupOptions (docx bridged through altText like picture). convert/group.ts threads container + child cNvPr via pickGroupBase/pickNonVisualDrawingProperties.
    • Shape base is YAGNI: cNvPr is already unified via NonVisualDrawingPropertiesOptions (Phase 2), spPr/textBody already live in core, there are no scattered convert adapters and no shape-specific public field worth lifting — so no BaseShapeOptions is introduced.
  • OOXML XSD (ooxml-schemas/transitional/) is the golden source of truth — wml.xsd (DOCX), pml.xsd (PPTX), sml.xsd (XLSX), dml-main.xsd (DrawingML). Validate XML output against it.

Read the full file on GitHub · 59 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. 5d ago First seen · 59 lines · 3,350 tokens per session scan A ba212a086c21

Subscribe to this mod's changes

office-open CLAUDE.md is an instructions file published in the GitHub repository DemoMacro/office-open (29 stars, last pushed 3d ago), licensed MIT. It adds 3,350 tokens to every session, about $0.0168 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-08-30.