pi-spell-check

Spell-check extension for pi coding agent. Press Ctrl+Shift+S to fix spelling and grammar in the editor.

Package details

extension

Install pi-spell-check from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:pi-spell-check
Package
pi-spell-check
Version
0.1.0
Published
Apr 12, 2026
Downloads
128/mo · 2/wk
Author
manuranga
License
MIT
Types
extension
Size
4.4 KB
Dependencies
0 dependencies · 0 peers
Pi manifest JSON
{
  "extensions": [
    "./index.ts"
  ]
}

Security note

Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.

README

pi-spell-check

Spell-check extension for pi coding agent.

Press Ctrl+Shift+S to fix spelling and grammar in the editor. Uses the current model via a tool call for reliable structured extraction.

Install

pi install npm:pi-spell-check

How it works

  1. Reads the current editor text
  2. Sends it as JSON ({ "text": "..." }) to the active model with a spell-correction tool
  3. Extracts the corrected text from the tool call response
  4. Replaces the editor content

Works with any editor, including custom editors like vim mode extensions.

License

MIT