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

pac-sdet-personas

v1.0.0

Published

Interactive launcher for Claude Code agent sessions with personas, configs

Readme

Claude Agents Launcher

This package provides an interactive launcher for Claude Code agent sessions with predefined personas, configurations, and project templates.

Generating the Docker-ready Tarball

To bundle everything into a portable, standalone tarball (.tgz) for installation anywhere (including lightweight Docker images without development tools):

  1. Build and pack the project:
    npm pack
    This automatically compiles the TypeScript source into a standard Node compatible Javascript format and bundles everything into something like claude-agents-1.0.0.tgz.

Installing and Running in Docker

You can copy the generated .tgz archive to your Docker container and install it globally via npm. Here is an example Dockerfile snippet showing how you would install it:

# Start from your preferred Node.js image
FROM node:20-alpine

# Set the working directory
WORKDIR /app

# Copy the bundled agents tarball generated by npm pack into the image
COPY claude-agents-1.0.0.tgz .

# Install the tarball globally so the CLI command is available system-wide
RUN npm install -g ./claude-agents-1.0.0.tgz

# (Optional) Verify that the command is available
RUN agent --help || true

# Any other setup...

Running the Agent

With the package installed globally in the container, you can run the launcher from any directory by simply calling:

agent

When you start the agent, it will launch an interactive CLI that will prompt you to:

  1. Select a Config (behavior & standards)
  2. Select a Persona (agent role & expertise)
  3. Select a Mode:
    • Interactive: Starts a standard claude chat session populated with the chosen persona and config context.
    • One-shot: Asks for a specific Task, passes it to Claude, runs to completion, and then exits automatically.

Automated/Non-Interactive Execution

If you want to use this launcher from another automation script or bypass the interactive prompts entirely, you can pass your selections directly as CLI flags:

agent --config="strict" --persona="automation-expert" --mode="one-shot" --prompt="Build a deployment bash script"

Or use positional arguments for the prompt:

agent --config="strict" --persona="automation-expert" --mode="one-shot" Build a deployment bash script

Available flags:

  • --config=<name>: The behavior config to use (e.g., default, strict, creative).
  • --persona=<name>: The persona to adopt (e.g., backend-rest, react-expert).
  • --mode=<mode>: Set to interactive or one-shot.
  • --prompt=<text>: The task to run (only used if mode is one-shot).

If you omit any of these flags, the CLI will interactively ask you for the missing information.

Environment Variables

If you choose to run the tool from a directory or installation method where it cannot automatically find the personas, configs, and projects folders, you can explicitly map them to an absolute path by defining the following environment variable:

export CLAUDE_AGENTS_DIR=/path/to/extracted/agents/data