@agimon-ai/doompi-hashline
Shared snapshot-bound file tags and line anchors for DoomPi tools.
Package details
Install @agimon-ai/doompi-hashline from npm and Pi will load the resources declared by the package manifest.
$ pi install npm:@agimon-ai/doompi-hashline- Package
@agimon-ai/doompi-hashline- Version
0.0.1-alpha.39- Published
- Sep 9, 2026
- Downloads
- 8,466/mo · 4,080/wk
- Author
- agiflow-ai
- License
- MIT
- Types
- package
- Size
- 60.7 KB
- Dependencies
- 0 dependencies · 0 peers
Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
@agimon-ai/doompi-hashline
Shared snapshot-bound file tags and line anchors for DoomPi tools.
This is a foundation library, not a Pi extension. It has no pi.extensions entry, Cordis service,
or Pi peer dependency. Tool packages use the same protocol implementation without importing one
another.
Protocol
The root export contains pure string and edit operations:
import { formatFileHeader, formatTaggedLine, parseFileHeader, parseTaggedLine } from '@agimon-ai/doompi-hashline';
const header = formatFileHeader('src/example.ts', 'A1b2C3d4');
const line = formatTaggedLine('const value = 1;', 1);
parseFileHeader(header);
parseTaggedLine(line);
File headers use an eight-character base64url SHA-256 prefix of the exact file bytes. Tagged lines
use a three-letter, whitespace-insensitive FNV-1a64 anchor. Match rows start with >> , and context
rows start with three spaces.
The root also exports anchor parsing, newline normalization, and pure original-snapshot range application.
File adapters
Node-specific helpers are isolated at the /files subpath:
import {
computeFileTag,
decodeUtf8,
displayPath,
isWritableFile,
resolveInputPath,
resolveReadInputPath,
} from '@agimon-ai/doompi-hashline/files';
decodeUtf8 rejects invalid UTF-8. isWritableFile gates anchors to content the
agent can edit. resolveInputPath, resolveReadInputPath, and displayPath
preserve Pi-compatible path behavior across the read, grep, and edit tools.
Attribution
The hashline protocol and FNV anchor approach are adapted from Phi's writetool, licensed under MIT by pulseaiclub. DoomPi uses an exact-byte SHA-256 file tag as an intentional compatibility boundary.
Development
pnpm build
pnpm typecheck
pnpm test
pnpm lint
License
MIT