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

talos-cli

v0.0.9

Published

Talos CLI tool for managing development workflows

Readme

talos-cli

Talos is a CLI tool based on Ralph that supports running under Claude Code and Cursor CLI. It enables you to execute multiple Ralph Loop tasks in parallel across multiple repositories.

Installation

# Install globally
npm install -g talos-cli

# Or using pnpm
pnpm add -g talos-cli

# Or using npx (no installation required)
npx talos-cli

Complete Command Reference

Main Process Management

talos start [--silent]              # Start Talos main process
talos stop                          # Stop Talos main process
talos restart                       # Restart Talos main process
talos status                        # Check main process status
talos logs [-f] [-n <number>]       # View logs

Task Management

# Start task
talos task start [--prd <path>] [--tool <tool>] [--debug] [--model <model>]

# Monitor task
talos task monitor [--workspace <name>] [--once] [--all]

# Task list
talos task list [--json] [--all]

# Task operations
talos task attach <taskId> [--follow]
talos task logs <taskId> [-f] [-n <number>]  # View task logs
talos task stop <taskId> [--reason <reason>]
talos task resume <taskId> [--tool <tool>] [--debug] [--model <model>]
talos task health <taskId> [--json]
talos task remove <taskId> [--force]
talos task clear [--force]

Parameter Descriptions:

  • --prd <path> - Specify PRD path
  • --tool <tool> - Specify tool (claude or cursor)
  • --debug - Enable debug mode (capture full output)
  • --model <model> - Specify AI model
    • cursor: composer-1.5, sonnet-4, auto
    • claude: sonnet-4, opus
  • --workspace <name> - Workspace name
  • --once - Single display mode (disable continuous monitoring)
  • --all - Show tasks from all workspaces
  • --follow - Real-time log output tracking
  • --reason <reason> - Stop reason
  • --force - Force execution (skip confirmation)
  • --json - JSON format output

Workspace Management

talos workspace add [--path <path>] [--name <name>]  # Add workspace
talos workspace list [--json]                        # List all workspaces

PRD Management

talos prd                                    # Create PRD through AI conversation
talos ralph --prd <prdFiles...> [--force]     # Convert PRD(s) to Ralph format (merge multiple PRDs into one)
talos archive [identifier] [--all] [--force]  # Archive completed PRDs

PRD Workflow:

  1. talos prd - Generate PRD through AI conversation (saved as tasks/prd-{name}.md)
  2. talos ralph --prd <name> - Convert to Ralph format (saved as ralph/{name}/prd.json)
  3. talos task start --prd <name> - Start task execution

Other Commands

talos health                        # System health check
talos help                          # View help

Advanced Features

Debug Mode

Use --debug flag to capture the complete execution process of Claude Code:

talos task start --prd my-feature --debug
talos task resume <taskId> --debug

Log Content Differences:

  • Normal mode: Only contains final output
  • Debug mode: Includes thinking process, tool call details, tool return results, timestamps

Log Path: .talos/logs/{taskId}.log

Interactive Multi-Select PRD

talos task start supports interactive multi-select for incomplete PRDs:

  • 0 incomplete PRDs: Display "All PRDs completed"
  • 1 incomplete PRD: Start directly
  • 2+ incomplete PRDs: Display interactive multi-select interface

Development Guide

For detailed development documentation: CLAUDE.md