EveryDev.ai
Subscribe
Home
Tools

3,107+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2063
  • Coding1441
  • Infrastructure665
  • Marketing524
  • Projects470
  • Research437
  • Design408
  • Analytics371
  • MCP268
  • Security265
  • Testing255
  • Data249
  • Integration183
  • Prompts183
  • Communication172
  • Learning166
  • Extensions163
  • Voice146
  • Commerce132
  • DevOps115
  • Web84
  • Finance24
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. OfficeCLI
    OfficeCLI icon

    OfficeCLI

    Command Line Assistants
    Featured

    An open-source CLI tool that gives AI agents full control over Word, Excel, and PowerPoint files — no Office installation required.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Fully free and open-source under Apache 2.0. All features included.

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Command Line AssistantsTask AutomationMCP Servers

    Alternatives

    DembrandtAsk Oraclemcp2cli
    Developer
    iOfficeAIRemote / OnlineEst. 2024

    Listed Jul 2026

    About OfficeCLI

    OfficeCLI is an open-source, single-binary command-line tool built specifically for AI agents to create, read, modify, and automate Word (.docx), Excel (.xlsx), and PowerPoint (.pptx) files. It ships under the Apache 2.0 license and requires no Microsoft Office installation or external runtime dependencies. The project is maintained by iOfficeAI on GitHub and reached v1.0.129 as of July 2026.

    What It Is

    OfficeCLI is an AI-native Office automation CLI that replaces multi-library Python scripts with single commands. Where manipulating a PowerPoint slide previously required 50+ lines of python-pptx code, OfficeCLI reduces it to one command like officecli add deck.pptx / --type slide --prop title="Q4 Report". It operates on all three major Office formats with full read, modify, and create support, and exposes every operation as deterministic JSON output — making it straightforward for AI agents to parse results without regex scraping.

    Three-Layer Architecture

    OfficeCLI organizes its commands into three progressive layers so agents and developers can start simple and go deep only when needed:

    • L1 (Read): Semantic views via view — modes include text, outline, annotated, stats, issues, html, svg, and screenshot
    • L2 (DOM): Structured element operations — get, query, set, add, remove, move, swap — using stable path-based addressing like /slide[1]/shape[2]
    • L3 (Raw XML): Direct XPath access via raw, raw-set, add-part, and validate — a universal fallback when L2 isn't sufficient

    Built-in Engines

    The binary ships several self-contained engines that require no external tools:

    • Rendering engine: A from-scratch HTML renderer that converts .docx/.xlsx/.pptx to HTML or per-page PNG screenshots, enabling the render → look → fix loop in headless CI/Docker environments. The watch command starts a local HTTP server with auto-refresh on every edit.
    • Formula & pivot engine: 350+ Excel functions auto-evaluated on write, including spilling dynamic arrays (FILTER, SORT, UNIQUE, LAMBDA), financial math (XIRR, PRICE, YIELD), and statistical functions. Native OOXML pivot tables can be created from a source range with a single command.
    • Template merge: The merge command replaces {{key}} placeholders in any .docx/.xlsx/.pptx with JSON data across paragraphs, table cells, shapes, headers, footers, and chart titles.
    • Round-trip dump: dump serializes any document or subtree into replayable batch JSON; batch replays it — enabling agents to learn from human-authored templates.

    AI Agent Integration

    OfficeCLI is designed to integrate directly with AI coding agents. Running officecli install auto-detects Claude Code, Cursor, Windsurf, GitHub Copilot, and similar tools and installs its skill file into each. A built-in MCP server can be registered with a single command (officecli mcp claude, officecli mcp cursor, etc.), exposing all document operations as JSON-RPC tools. The SKILL.md file at officecli.ai/SKILL.md teaches any agent how to install the binary and use all commands in one curl fetch. Structured error codes (not_found, invalid_value, unsupported_property) include suggestions and valid ranges so agents can self-correct without human intervention.

    Installation and Platform Support

    OfficeCLI ships as a self-contained binary with the .NET 10 runtime embedded — nothing to install at runtime. It is available for macOS (Apple Silicon and Intel), Linux (x64 and ARM64), and Windows (x64 and ARM64). Installation options include a one-line shell/PowerShell script, Homebrew (brew install officecli), npm (npm install -g @officecli/officecli), or manual binary download from GitHub Releases. Python and Node.js thin SDKs (officecli-sdk / @officecli/sdk) wrap the binary via resident named pipes for near-zero per-call latency.

    Update: v1.0.129

    The latest release is v1.0.129, published July 6, 2026, with 5,572 commits and 130 tags across 124 releases. Recent commits show active development across all three formats: Word mermaid diagram support (native editable shapes and full-fidelity PNG), Excel worksheet dump coverage for .xlsx, PowerPoint group ungroup, macOS notarization fixes for CoreCLR JIT on Hardened Runtime, and Node SDK quoting fixes for cmd.exe. The repository has 13 contributors and is written primarily in C# (94.4%).

    OfficeCLI - 1

    Community Discussions

    Be the first to start a conversation about OfficeCLI

    Share your experience with OfficeCLI, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Fully free and open-source under Apache 2.0. All features included.

    • Full Word, Excel, and PowerPoint support
    • Single self-contained binary
    • Built-in rendering engine
    • MCP server integration
    • Python and Node.js SDKs

    Capabilities

    Key Features

    • Create, read, and modify Word (.docx), Excel (.xlsx), and PowerPoint (.pptx) files
    • Single self-contained binary — no Office installation or runtime required
    • Built-in high-fidelity HTML rendering engine for document preview and PNG screenshots
    • 350+ Excel functions auto-evaluated on write including dynamic arrays and financial math
    • Native OOXML pivot table creation from a source range with one command
    • Template merge with {{key}} placeholders across all three Office formats
    • Round-trip dump/batch JSON for learning from and replaying existing documents
    • Path-based element addressing (/slide[1]/shape[2]) for stable AI agent navigation
    • Deterministic JSON output for all commands via --json flag
    • Built-in MCP server for Claude Code, Cursor, VS Code, and LM Studio integration
    • Auto-installs skill file into detected AI coding agents on first run
    • Resident mode via named pipes for near-zero latency multi-step workflows
    • Batch mode for applying multiple operations in a single pass
    • Live preview with auto-refresh via `watch` command
    • Three-layer architecture: semantic views, DOM operations, raw XML fallback
    • CSS-like query selectors with boolean and/or operators
    • Full i18n and RTL support for Word documents
    • LaTeX equation input for Word and PowerPoint
    • Mermaid diagram rendering to native editable shapes or PNG
    • Cross-platform: macOS (Apple Silicon/Intel), Linux (x64/ARM64), Windows (x64/ARM64)
    • Python SDK (officecli-sdk) and Node.js SDK (@officecli/sdk)
    • Homebrew and npm package manager installation support
    • Structured error codes with suggestions for agent self-correction
    • OpenXML schema validation via `validate` command
    • Plugin system for extending format support (PDF export, .doc, .hwpx)

    Integrations

    Claude Code
    Cursor
    Windsurf
    GitHub Copilot
    VS Code
    LM Studio
    Codex
    AionUi
    Homebrew
    npm
    Python (subprocess / officecli-sdk)
    Node.js (@officecli/sdk)
    Docker / CI/CD pipelines
    MCP (Model Context Protocol)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate OfficeCLI and help others make informed decisions.

    Developer

    iOfficeAI

    iOfficeAI builds OfficeCLI, an open-source Office automation suite purpose-built for AI agents. The project provides a single binary that gives AI agents full programmatic control over Word, Excel, and PowerPoint files without requiring Microsoft Office. The team ships a built-in rendering engine, formula evaluator, and MCP server integration, making OfficeCLI a complete document automation layer for AI-driven workflows.

    Founded 2024
    Remote / Online
    Read more about iOfficeAI
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Dembrandt icon

    Dembrandt

    Extract any website's design system into design tokens in seconds — logo, colors, typography, borders, and more — with a single CLI command.

    Ask Oracle icon

    Ask Oracle

    A CLI tool that bundles your prompt and files to query frontier AI models (GPT-5.5 Pro, Gemini 3.1 Pro, Claude Opus) via API or browser automation, with session management and MCP support.

    mcp2cli icon

    mcp2cli

    A CLI tool that converts MCP (Model Context Protocol) servers into command-line interfaces, enabling direct terminal access to MCP server capabilities.

    Browse all tools

    Related Topics

    Command Line Assistants

    AI-powered command-line assistants that help developers navigate, search, and execute terminal commands with intelligent suggestions and context awareness.

    178 tools

    Task Automation

    Agent-powered tools that automate routine project tasks and workflows with intelligent prioritization, dependency management, and contextual assignment of work across teams.

    100 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    134 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions