@ntimpano/pi-flint

flint memory tools for Pi coding agent — save, recall, get, and list notes via local SQLite

Packages

Package details

extension

Install @ntimpano/pi-flint from npm and Pi will load the resources declared by the package manifest.

$ pi install npm:@ntimpano/pi-flint
Package
@ntimpano/pi-flint
Version
0.1.0
Published
May 20, 2026
Downloads
not available
Author
ntimpano
License
MIT
Types
extension
Size
10.9 KB
Dependencies
0 dependencies · 3 peers
Pi manifest JSON
{
  "extensions": [
    "./extensions/index.ts"
  ]
}

Security note

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

README

@ntimpano/pi-flint

flint memory tools for Pi coding agent. Persist and recall context via local SQLite — no bash hacks needed.

Install

pi install npm:@ntimpano/pi-flint

Or from source:

pi install ./path/to/pi-flint

Tools

Tool Description
local_save Save a note to local SQLite
local_recall Search notes by text query
local_get Get a single note by ID
local_list List recent notes

Usage

# Save a discovery
local_save(content="Found auth pattern in middleware.ts...", title="auth pattern", topic_key="project/auth/middleware")

# Search prior context
local_recall(query="auth middleware pattern")

# Read full note
local_get(id=42)

# Browse recent
local_list(limit=5)

Requirements

  • /opt/flint/flint binary must be installed (or flint on PATH)