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

@hellohelen-ai/expo-template-goliath

v0.3.0

Published

An Expo starter with Goliath, on-device tools, conversations, and local storage.

Readme

Your Goliath app

An Expo app with an on-device agent, conversations, approval buttons, Zustand state, SQLite storage, and task/file tools. This project is yours to edit.

Run it

Use Bun, Node.js 24, and Xcode 26.4 or newer on a Mac. The app targets iOS 26+ and needs Apple Intelligence enabled on a compatible iPhone, or a compatible iOS simulator and Mac. Expo Go cannot run the native model or context module: build a development client.

bun install
bun run ios

For your own iPhone, use bun run ios --device and follow Xcode signing setup. After the first build, use bun run start for JavaScript edits. Rebuild with bun run ios after native dependencies or modules/ change.

Before distributing the app, choose your own name, slug, scheme, and ios.bundleIdentifier in app.json; the first device build can prompt for a bundle identifier.

Make it yours

  • src/agents/goliath/agent.ts: instructions, model, tools, and memory configuration.
  • src/agents/goliath/tools/: replace the demo tools with your own app functions.
  • src/agents/goliath/filesystem/: read-only reference documents, saved notes, and scratch files.
  • src/agents/goliath/lifecycle/: lifecycle hooks and development logging.
  • src/screens/home/: screens and child components.
  • src/hooks/ and src/stores/: UI coordination and Zustand state.
  • src/storage/: SQLite persistence for conversations and agent memory.
  • modules/goliath-context/: the local native module for context capacity and token counting.
  • assets/stone.svg: replaceable branding.

Demo tasks reset when the app restarts; conversations and files under /notes persist. Scratch files are temporary and separate for each conversation. The app asks before writes. The agent has no cloud fallback configured and does not resume interrupted work automatically.

Check your changes

bun run typecheck
bun run test
bun run doctor
bun run bundle

Tests use a scripted model and real SQLite storage. Bundling verifies imports; neither proves that the on-device model chooses correct actions. Try representative requests on your device.

Update the harness

Goliath is a normal npm dependency pinned to the version used to produce this starter. Choose a newer version after reviewing its release notes, then run the checks above:

bun add @hellohelen-ai/goliath@<version>

Package upgrades do not overwrite your screens, tools, or configuration. New template versions only change newly generated apps; apply any desired app changes yourself.

Harness documentation