
Security News
npm Tooling Bug Incorrectly Marks One-Character Packages as Security Holders
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.
@cortexkit/aft-pi
Advanced tools
Pi coding agent extension for Agent File Tools (AFT) — tree-sitter and LSP-powered code analysis
AFT (Agent File Tools) extension for the Pi coding agent
AFT is a high-performance file-manipulation toolkit for AI coding agents. It replaces Pi's built-in read, write, edit, and grep tools with an indexed Rust backend that adds trigram search, semantic search, fuzzy edits, auto-format, LSP diagnostics, call-graph navigation, and more — all backed by one warm long-running aft process per session.
pi install npm:@cortexkit/aft-pi
That's it. The extension auto-downloads the right AFT binary for your platform on first run (cached at ~/.cache/aft/bin/v<version>/aft).
Prefer to pin a specific version?
pi install npm:@cortexkit/aft-pi@0.13.1
Pi's default read, write, edit, and grep are replaced with AFT-backed versions.
| Tool | Pi built-in | AFT replacement |
|---|---|---|
read | Node fs.readFile | Rust reader with line-numbered output, directory listing, binary/image detection |
write | Node fs.writeFile | Atomic write with per-file backup, auto-format (biome/oxfmt/prettier/ruff/rustfmt), LSP diagnostics |
edit | Plain substring replace | Progressive fuzzy match (handles whitespace/Unicode drift), backups, glob-wide edits |
grep | ripgrep shell-out | Trigram-indexed search in-project, ripgrep fallback outside project root |
All four keep the same agent-facing parameters as Pi's built-ins, so your prompts, skills, and muscle memory don't change.
| Tool | What it does |
|---|---|
aft_outline | Structural outline (functions, classes, headings) for files or directories |
aft_zoom | Symbol-level inspection with call-graph annotations |
aft_search | Semantic code search (embeddings, local ONNX or OpenAI-compatible) |
aft_callgraph | Call-graph navigation: callers, call_tree, impact, trace_to, trace_data |
aft_conflicts | One-call merge-conflict inspection across all conflicted files |
aft_import | Language-aware import add / remove / organize (TS, JS, Python, Rust, Go) |
aft_safety | Per-file undo, named checkpoints, restore |
ast_grep_search | AST-aware pattern search across the filesystem |
ast_grep_replace | AST-aware pattern rewrite |
lsp_diagnostics | On-demand LSP diagnostics (edit/write already inline diagnostics automatically) |
aft_delete | Delete a file with backup (surface: all) |
aft_move | Move/rename a file (surface: all) |
aft_transform | Scope-aware structural transformations (surface: all) |
aft_refactor | Workspace-wide refactor: move symbol, extract function, inline call (surface: all) |
/aft-status — show AFT version, search/semantic index state, LSP servers, storage pathsAFT reads config from two levels, project overrides user:
~/.pi/agent/aft.jsonc (or .json)<project>/.pi/aft.jsonc (or .json)All keys are optional. Example:
{
// "minimal" | "recommended" (default) | "all"
"tool_surface": "recommended",
// Auto-format on write/edit using project formatter config.
"format_on_edit": true,
// "syntax" (tree-sitter parse) | "full" (LSP typecheck)
"validate_on_edit": "syntax",
// When true, write-capable commands reject paths outside project_root.
// Defaults to false to match Pi's built-in behavior.
"restrict_to_project_root": false,
// Enable the trigram-indexed grep/glob (hoists them when true).
"experimental_search_index": true,
// Enable semantic search (aft_search). Requires ONNX runtime for local
// embeddings; downloaded automatically on supported platforms.
"experimental_semantic_search": true,
// Disable specific tool names (applied after tool_surface selection).
"disabled_tools": ["aft_transform", "aft_refactor"],
"formatter": {
"typescript": "biome",
"python": "ruff",
"rust": "rustfmt"
},
"checker": {
"typescript": "biome"
},
// Missing formatter/checker/LSP warnings after configure: "toast" (default), "log", or "chat".
"configure_warnings_delivery": "toast",
// Semantic backend (when experimental_semantic_search=true).
// "fastembed" (default, local ONNX) | "openai_compatible" | "ollama"
"semantic": {
"backend": "fastembed",
"model": "all-MiniLM-L6-v2",
"timeout_ms": 25000,
"max_batch_size": 64
}
}
Sensitive semantic backend fields (backend, base_url, api_key_env) are only read from user-level config. Project configs that try to set them are ignored with a warning to prevent credential-exfiltration via malicious repos.
| Tier | Tools |
|---|---|
minimal | aft_outline, aft_zoom, aft_safety |
recommended (default) | minimal + hoisted read/write/edit + aft_import + ast_grep_* + lsp_diagnostics + aft_conflicts + (optional) grep + (optional) aft_search |
all | recommended + aft_callgraph + aft_delete + aft_move + aft_transform + aft_refactor |
aft binary for the session's working directory and keeps it alive. Trigram index, semantic index, tree-sitter caches, and LSP servers all stay warm.session_shutdown event triggers clean bridge shutdown — undo history, checkpoints, and LSP state don't leak across sessions.PATH → ~/.cargo/bin/aft → GitHub release download. Mismatched binaries hot-swap transparently.Plugin logs go to $TMPDIR/aft-pi.log. Rust backend logs are forwarded into the same file with an [aft] tag.
Set AFT_LOG_STDERR=1 to route logs to stderr instead (useful for piping or subprocess tests).
MIT
Main project: https://github.com/cortexkit/aft Issues / feature requests: https://github.com/cortexkit/aft/issues
FAQs
Pi coding agent extension for Agent File Tools (AFT) — tree-sitter and LSP-powered code analysis
The npm package @cortexkit/aft-pi receives a total of 834 weekly downloads. As such, @cortexkit/aft-pi popularity was classified as not popular.
We found that @cortexkit/aft-pi demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
npm confirmed a tooling bug incorrectly marked several one-character packages as security holders and said it was working on a rollback.

Research
/Security News
Newer packages in this compromise use native extensions and .pth loaders to execute JavaScript stealers in developer environments.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.