npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@samfp/pi-steering-hooks

v0.3.0

Published

Deterministic tool-call guardrails for pi — enforce rules with before-tool hooks instead of prompts. Zero token cost, 100% reliability.

Readme

pi-steering-hooks

Deterministic tool-call guardrails for pi. Enforce rules with before-tool hooks instead of prompts — zero token cost, 100% reliability.

Prompt-based rules ("never force push") work most of the time. Steering hooks work every time. They intercept tool calls before execution and block violations deterministically, with an override escape hatch for when the agent has a good reason.

Inspired by Strands Agents: Steering Accuracy Beats Prompts.

Install

pi install @samfp/pi-steering-hooks

Default Rules

Repo safety:

| Rule | Tool | What it blocks | |------|------|---------------| | no-force-push | bash | git push --force (destructive history rewrite) | | no-hard-reset | bash | git reset --hard (discards uncommitted work) | | no-rm-rf-slash | bash | rm -rf / (catastrophic, no override allowed) | | conventional-commits | bash | Non-conventional git commit -m messages | | no-long-running-commands | bash | Dev servers and watchers that block the agent |

File-authoring guardrails (added in 0.3.0): steer the agent toward the write and edit tools (which show diffs and run through LSP) instead of bash commands that author files invisibly.

| Rule | Tool | What it blocks | |------|------|---------------| | no-sed-inplace | bash | sed -i ... (in-place edits without diff review) | | no-perl-inplace | bash | perl -i / perl -pi | | no-awk-inplace | bash | awk -i inplace | | no-heredoc-to-file | bash | cat <<EOF > path and friends authoring source files | | no-redirect-source-author | bash | echo\|printf\|cat … > file.<sourceext> | | no-tee-source | bash | tee file.<sourceext> |

The file-authoring rules have two structural escape hatches so legitimate generation pipelines aren't blocked:

  1. Script patternwrite a tools/refactor.py or scripts/gen.sh, then run it. Subprocess writes are not inspected.
  2. Scratch directories — redirects into /tmp/, /dev/, dist/, build/, generated/, out/, reports/, coverage/, target/, .cache/ are always allowed.

Plus the standard per-command override (# steering-override: <rule> — <reason>) for one-off cases.

If you don't want a default rule, disable it via steering.json:

{ "disable": ["no-tee-source", "conventional-commits"] }

Override Mechanism

When a rule fires, the agent can retry with an override comment:

git push --force origin main  # steering-override: no-force-push — deploying hotfix to unblock prod

The override is allowed through but logged to the session for audit. Rules with noOverride: true (like no-rm-rf-slash) cannot be overridden.

Custom Rules

Create steering.json in your project root or ~/.pi/agent/:

{
  "disable": ["conventional-commits"],
  "rules": [
    {
      "name": "no-git-push",
      "tool": "bash",
      "field": "command",
      "pattern": "\\bgit\\s+push\\b",
      "reason": "Use `cr` instead of `git push`."
    },
    {
      "name": "aws-requires-profile",
      "tool": "bash",
      "field": "command",
      "pattern": "\\baws\\s+[a-z]",
      "unless": "(--profile|AWS_PROFILE=|\\baws\\s+(sts\\s+get-caller-identity|configure)\\b)",
      "reason": "Always use --profile or AWS_PROFILE with aws CLI commands."
    },
    {
      "name": "no-write-env-files",
      "tool": "write",
      "field": "path",
      "pattern": "\\.env",
      "reason": "Don't overwrite .env files — they may contain secrets.",
      "noOverride": true
    }
  ]
}

Rule Format

| Field | Type | Description | |-------|------|-------------| | name | string | Unique rule identifier | | tool | "bash" | "write" | "edit" | Which tool to intercept | | field | "command" | "path" | "content" | Which input field to test | | pattern | string | Regex — if it matches, the rule fires (violation) | | requires | string? | Additional regex that must also match (AND condition) | | unless | string? | Regex exemption — if this matches, rule doesn't fire | | reason | string | Message shown to the agent when blocked | | noOverride | boolean? | If true, no override escape hatch |

Config Locations

Checked in order (first found wins):

  1. ./steering.json (project root)
  2. ~/.pi/agent/steering.json (global)

How It Works

  1. Extension registers a tool_call hook
  2. On every bash/write/edit call, rules are evaluated against the tool input
  3. If a rule matches: block the call and return the reason to the agent
  4. Agent sees the block message and adjusts its approach
  5. If the agent has a legitimate reason, it can retry with # steering-override: rule-name — reason
  6. Overrides are logged via appendEntry for audit

No tokens spent on rule enforcement. No prompt drift. No "oops, the model forgot the rule this time."

Programmatic API

The package exports its internals so other extensions can build on top:

import {
  // Types
  type Rule, type BashRule, type WriteRule, type EditRule,
  type BashInput, type WriteInput, type EditInput,
  type CompiledRule, type SteeringConfig,

  // Defaults
  DEFAULT_RULES,

  // Path helpers — useful when authoring file-authoring guardrails
  SCRATCH_PATH_PREFIXES, isScratchPath,

  // Shell-string helpers — strip noise before scanning for shell metachars
  stripHeredocBodies, stripQuotedStrings, stripBashComments,

  // Rule lifecycle
  compileRule, buildRules, evaluateRule, testRule,

  // Override extraction
  extractOverride,

  // Config loader (`./steering.json` then `~/.pi/agent/steering.json`)
  loadConfig,
} from "@samfp/pi-steering-hooks";

Function-form rules (procedural)

When a rule needs more than a regex — e.g. parsing structure, applying multi-stage transforms, or consulting a path allowlist — use the test function form instead of pattern:

import {
  type BashRule,
  isScratchPath,
  stripHeredocBodies,
  stripQuotedStrings,
} from "@samfp/pi-steering-hooks";

const noHeredocToFile: BashRule = {
  name: "no-heredoc-to-file",
  tool: "bash",
  reason:
    "Use the `write` tool to author files. Heredoc-to-file hides content from diff review and skips LSP.",
  test: ({ command }) => {
    if (!/<<[-~]?\s*['"]?\w+['"]?/.test(command)) return false;
    // Strip heredoc bodies + quotes so embedded `>` chars don't false-positive
    // on Python comparisons, awk programs, etc.
    const cleaned = stripQuotedStrings(stripHeredocBodies(command));
    for (const m of cleaned.matchAll(/>>?\s*([^\s|&;<>()]+)/g)) {
      const target = m[1].replace(/^['"]|['"]$/g, "");
      if (target.startsWith("&")) continue;
      if (isScratchPath(target)) continue;
      return true;
    }
    return false;
  },
};

pattern and test are mutually exclusive — compileRule throws if a rule has both or neither.

Function rules can only be added in code (not from steering.json, which is JSON).

Why heredoc-stripping matters

A naive > scan against python3 - <<'EOF' ... if x > 80: ... EOF will treat the Python comparison as a shell redirect to a file named 80:. The exported stripHeredocBodies helper removes heredoc bodies (preserving the opener line, where real shell redirects often live) before metachar scanning. Same logic applies to stripQuotedStrings for grep '>' file style false positives.

The regression case is covered in index.test.ts so it can't come back.

License

MIT