pi-mention-skills
Skill mention autocomplete and expansion extension for pi
Package details
Install pi-mention-skills from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:pi-mention-skills- Package
pi-mention-skills- Version
0.1.6- Published
- Apr 24, 2026
- Downloads
- 370/mo · 170/wk
- Author
- siddr
- License
- MIT
- Types
- extension
- Size
- 26.8 KB
- Dependencies
- 0 dependencies · 2 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
Mention Skills extension
Type $skill-name in the editor to autocomplete and reference discovered skills by name. On submit, $skill-name tokens are replaced with the full path to each skill's SKILL.md.
Install
pi install npm:pi-mention-skills
Usage
- Type
$in the editor, then press Tab to open discovered skills. - Continue typing to filter (for example,
$commatches$commit). - Press Tab again if needed, then select a suggestion to insert the
$skill-nametoken. - On submit, each known
$skill-nameis replaced with its fullSKILL.mdpath.
Example
Typing:
Read $commit before making changes
Submits as:
Read /Users/you/.agents/skills/commit/SKILL.md before making changes
Notes
- Skill discovery reads
pi.getCommands()entries wheresource === "skill"andpathis present. - Unknown
$tokensare left unchanged. $mention detection follows boundary rules: start of line or preceded by whitespace.