惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

雷峰网
雷峰网
B
Blog
博客园_首页
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
罗磊的独立博客
Jina AI
Jina AI
C
Check Point Blog
Martin Fowler
Martin Fowler
J
Java Code Geeks
博客园 - 司徒正美
美团技术团队
MongoDB | Blog
MongoDB | Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
有赞技术团队
有赞技术团队
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
小众软件
小众软件

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
GitHub - damianofalcioni/pi-for-word: Pi Agent as add-in ...
damianofalci · 2026-05-05 · via Hacker News - Newest: "AI"

Pi4Word

Pi4Word is a Microsoft Word task pane add-in that embeds a Pi Agent-powered assistant using @mariozechner/pi-agent-core.

Pi4Word task pane

For architecture, runtime behavior, tools, storage, and streaming details, see SPECS.md.

Manifests

File Purpose Task pane URL
manifest.xml Local development and Word sideloading https://localhost:3000/public/index.html
manifest.production.xml Production usage in Word https://damianofalcioni.github.io/pi-for-word/public/index.html

Requirements

  • Node.js and npm
  • Desktop Microsoft Word for local sideloading
  • HTTPS on https://localhost:3000 for local development

On Windows, npm run cert creates the local TLS material expected by npm run serve.

Local Development

npm install
npm run build
npm run cert
npm run word

npm run word starts the HTTPS dev server and sideloads manifest.xml into Word.

Build

npm run build

The build runs tests, linting, and scripts/esbuild.mjs. Output is written to public/, including:

  • public/index.html
  • public/index.min.js
  • public/index.min.css
  • copied runtime assets under public/assets/ and public/pdfjs-dist/

Production Usage

Use manifest.production.xml to load the production add-in in Word. This manifest points Word to the public GitHub Pages build at https://damianofalcioni.github.io/pi-for-word/public/.

Word on the Web

  1. Open a document in Word on the web.
  2. Open Insert > Add-ins > Advanced....
  3. Choose Upload My Add-in.
  4. Select manifest.production.xml.

After the add-in is loaded, use Open Pi4Word from the Word ribbon.

Word on Windows

  1. Create a local folder for the add-in catalog, for example C:\OfficeAddinCatalog.
  2. Copy manifest.production.xml into that folder.
  3. Right-click the folder, open Properties > Sharing > Advanced Sharing, enable Share this folder, and make sure your Windows user has at least read access.
  4. Copy the folder's network path from the Sharing tab, for example \\YOUR-PC\OfficeAddinCatalog. Use this network path in Word, not the local C:\... path.
  5. In Word, open File > Options > Trust Center > Trust Center Settings > Trusted Add-in Catalogs.
  6. Paste the network path into Catalog Url, select Add catalog, enable Show in Menu for that catalog, select OK, then restart Word.
  7. Open Home > Add-ins > Shared Folder, select Pi4Word, and add it to the document.

After the add-in is loaded, use Open Pi4Word from the Word ribbon.

Scripts

Command Description
npm run cert Creates local HTTPS certificate material on Windows.
npm run serve Serves the repository over HTTPS on port 3000.
npm run word Starts Word sideloading with manifest.xml.
npm run test Runs Node tests.
npm run eslint Runs ESLint.
npm run esbuild Bundles the task pane into public/.
npm run build Runs tests, linting, and bundling.

License

MIT