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

@joshuacc/recon

v0.3.0

Published

Gather background information to prompt LLMs

Downloads

117

Readme

recon - Gather background information to prompt LLMs

LLMs like Claude and ChatGPT can be extremely useful. But gathering up all the background information they need to provide appropriate answers can be painful. That's where recon comes in.

Running a simple command like recon --file ./docs --prompt "What are the addresses for all of our internal servers?" | llm beats manually looking through everything in the docs folder.

Installation

  • global: npm install -g @joshuacc/recon - This will add a recon command for you to use anywhere on your system
  • local: npm install --save-dev @joshuacc/recon - This will add a recon command that you can use within npm scripts or by referencing ./node_modules/.bin/recon

Basic Usage

The recon command gathers information from various sources and combines it into a single prompt for use with an LLM. You can paste it to your clipboard for use with ChatGPT, write it to a file, or send it via stdout to combine it with other tools.

Output

The recon command will output a text prompt in one of three ways:

  • Clipboard: If the --clipboard flag is provided, the prompt will be copied to your clipboard.
  • File: If the --output flag is provided, the prompt will be written to the specified file.
  • Stdout: Recon will automatically detect if it is being piped to another command and will output the prompt to stdout in that case. This can be useful for combining with other tools, like llm. Example: recon --file ./docs --prompt "How do I debug docker problems for this project?" | llm.

Specifying what you want from the LLM (prompt)

Example: recon --file ./docs --prompt "What are the addresses for all of our internal servers?"

In addition to the background information that recon gathers, you can optionally provide a prompt for the LLM which will be included in the final text.

Gathering files

Example: recon --file ./docs

You can specify files for recon to gather in several ways.

  • Directories: You can provide the path to a directory, and recon will recursively search through all the files in that directory.

  • Globs: Globs are like wildcards, and can be used to specify multiple files or directories. For example, recon --file ./docs/**/*.md will gather information from all markdown files in the docs directory and its subdirectories.

  • Files: You can specify a single file, and recon will gather information from that file. For example, recon --file ./docs/server_info.md.

  • Comma Separated: To provide multiple sources, you can provide them as a comma-separated list. For example, recon --file ./docs,./src/**/*.tsx.

  • Exclusions: You can exclude files or directories by prefixing them with a !. For example, recon --file ./docs,./src/**/*.tsx,!./src/secret.tsx.

NOTE: recon excludes some files and directories by default. These are .git, node_modules, and others. To see the complete list, see src/defaultExclusions.ts.

Gathering urls

Example: recon --urls https://example.com

To gather information from a website, use the --urls option followed by the URL. recon will send a GET request to the URL and place the response into the prompt.

Gather from multiple sources

Example: recon --file ./docs --urls https://example.com

You can gather information from multiple sources by providing multiple --file and --urls options.

Creating recon commands as shortcuts

If you have a specific set of sources you want to gather information from frequently, you can define your own recon commands.

Create a .recon.config.mjs file in the root of your project or in your home directory. For example:

export default {
  commands: {
    // The key is the name of the command
    docs: {
      gather: {
        files: ['./docs'],
        urls: ['https://example.com/some-more-docs']
      }
    }
  }
};

You can then run your command with recon docs and pass in any additional arguments, such as a prompt with custom directions. For example: recon docs --prompt "How do I reset my local db?". If you pass in more --files or --urls options, they will be merged with the ones defined in the command.

Config merging

If you have a .recon.config.mjs file in your home directory and one in the root of your project, the two will be merged. The project-level config will take precedence over the home-level config. Though it will print a warning if there are conflicting command definitions.

Advanced usage

Creating your own recon agents

You can create your own recon agents by implementing the ReconAgent interface.

Configuration format

// This is a hypothetical recon agent for accessing database information
import myDbAgent from './myDbAgent';

export default {
  agents: [myDbAgent]
  commands: {
    // The key is the name of the command
    growth: {
      // The default prompt for this command
      prompt: "How are we doing on our growth goals?",
      // The `gather` object must be provided, and must have at least one key
      // specifying an agent to use
      gather: {
        // The default set of files to gather information from
        files: ['./docs/business-plan.md'],
        // The default set of urls to gather information from
        urls: ['https://example.com/'],
        // This will be used by MyDbAgent to gather more information for the prompt
        myDb: {
          query: 'SELECT COUNT(*) FROM users',
        }
      }
    },
  }
};

For full details on the configuration format, see src/config.ts.

Future features

  • Additional built-in agents
  • Giving custom agents the ability to plug their own flags into the CLI. e.g. recon --agent:db "SELECT COUNT(*) FROM users"
  • Improved documentation