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

@felan-ai/felan

v0.13.1

Published

Local Felan terminal agent

Downloads

5,466

Readme

@felan-ai/felan

Local, account-free Felan terminal agent built on @felan-ai/agent-core and Pi's interactive TUI.

npx @felan-ai/felan

The package exposes the felan binary. It owns local credentials, settings, session and agent storage paths, built-in extension selection, dependency onboarding, lifecycle, and TUI presentation. Portable feature behavior remains in the @felan-ai/ext-* packages.

[!IMPORTANT] The local host uses the current user's filesystem and process permissions. It is not a sandbox.

Requirements and quick start

Felan supports Node.js 22.19.0 or newer. Repository development and CI use Node.js 22.20.0 with pnpm 9.15.5.

felan
/login

Run an initial prompt or continue the most recent session for the current directory:

felan "inspect this project"
felan --continue

CLI

felan [options] [message]

-c, --continue     Continue the most recent session for this directory
--diagnostics      Print runtime versions and configuration mode
update             Update a global npm installation of Felan
-h, --help         Show help
-v, --version      Print the Felan version
--verbose          Show verbose startup details

Run felan update to check the stable npm release. It updates only a verified global npm installation, reports when the installation is current, and tells you to restart after a successful update. npx, local/source, and other package-manager installations are not changed; update those with the command that installed them.

Interactive startup also checks npm once, asynchronously, for a newer stable release. If one is available, Felan tells you to exit all Felan sessions and run felan update for a global npm installation, or use the package manager that launched Felan. Offline, failed, and malformed responses stay silent, and Felan never installs an update automatically. Set FELAN_SKIP_VERSION_CHECK=1 to disable this startup request.

Invocations that start or continue an agent session launch the interactive TUI. felan update and informational flags exit without starting a session. Internal headless modes used by subagents and extension adapters are not public CLI entry points.

felan --diagnostics reports Felan, Agent Core, Pi, and Node.js versions plus runtime and credential modes.

Local state and policy

The default agent directory is ~/.felan; set FELAN_AGENT_DIR to change it. It contains local credentials, settings, sessions, agents, extension storage, and project memory. Root-session storage is scoped under $FELAN_AGENT_DIR/storage/sessions/<encoded-root-session-id> and longer-lived extension state under $FELAN_AGENT_DIR/storage/agent.

The local host loads only source-controlled Felan built-ins, Felan-owned settings and prompt appends, explicit Felan agents and Agent Skills, and the Agent Core-selected cwd instruction file. Ambient Pi extensions, packages, prompts, themes, project settings, and package resources are filtered.

All built-ins are enabled by default, including the Powerline footer in TUI sessions. Binary-backed features can remain inactive until their dependency is installed or the feature is disabled through /dependencies.

Model responses use the built-in concise output style by default. Set the global outputStyle setting to explanatory for more reasoning and context; the configuration guide documents validation and session-lifecycle behavior.

Canonical user documentation

The package README intentionally stays short. Use these guides for operational details:

Development

Source: apps/tui in https://github.com/felan-ai/felan.

corepack enable
pnpm install --frozen-lockfile
pnpm --filter @felan-ai/felan build
pnpm --filter @felan-ai/felan type-check
pnpm --filter @felan-ai/felan test

Run pnpm verify from the repository root for cross-package and packed-binary coverage.