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 🙏

© 2024 – Pkg Stats / Ryan Hefner

talkpile

v0.1.18

Published

Hackable Agentic REPL

Downloads

38

Readme

talkpile

Hackable Agentic REPL

Install

npm i -g talkpile

Setup

talkpile-setup

Start Service

Ensure OPENAI_API_KEY is present in your terminal environment, then run:

talkpile-service # Start the service in one terminal

If you don't have an OpenAI API key, you can get one here.

Start Client

talkpile # Start the client in another terminal

Install as System Daemon (MacOS Only)

# Copy the starter plist file to your LaunchAgents directory.
cp ./etc/talkpile.service.plist ~/Library/LaunchAgents/talkpile.service.plist

# Edit the file, replacing all instances of `your-user-name`
# with your local username as used by your home folder and
# `your-api-key` with your actual OpenAI API key.
# `WorkingDirectory` should specific the directory where you
# cloned this repository.
# Update PATH environment variable to include any extra bin
# directories that you want Talkpile to be able to use.
vim ~/Library/LaunchAgents/talkpile.service.plist

# run...
talkpile-service-init

The talkpile-service-init command will register the service with launchctl, kickstart it, and then tail the logs to get you up and running.

Note that if you already have the service running, the talkpile-service-init command will stop the service, unload it, and then re-register it.

Daemon Commands

Once you have the daemon installed, you can use the following commands to manage it:

# check service status
talkpile-service-info

# start the background service (restart if running)
talkpile-service-start

# tail the logs
talkpile-service-logs

# stop the service
talkpile-service-stop

# kill the service
talkpile-service-kill

# toggle verbose logging
talkpile-service-kill SIGPIPE

# register the service
talkpile-service-load

# unregister the service
talkpile-service-unload

Talkpile Configuration

Configuration is stored in a .talkpile.yaml files.

Files are searched for in the following locations:

  1. The current working directory, or any parent directory of the current working directory
  2. The user's home directory ($HOME or %USERPROFILE%)
  3. The system's config directory (/usr/local/etc or C:\ProgramData)

The data of all found files is deeply merged, with the most specific file taking precedence.

Here's an example .talkpile.yaml file:

user:
  name: Mac
  location: Chicago, IL
context:
  notes_dir: /Users/mac/Library/Mobile Documents/iCloud~md~obsidian/Documents/Green
agents:
  pirate:
    designation: pirate
    name: Jackdaw Hawkins

Check your ~/.talkpile directory after running talkpile-setup for examples of agent configurations and more. The setup creates plenty of examples to get you started.

License

Apache-2.0