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

takos-cli

v0.1.1

Published

CLI tool for Takos AI platform - deploy, manage workers, and interact with cloud resources

Readme

takos-cli

Task-oriented unified CLI for Takos.

Installation

npm install -g takos-cli

Authentication

takos login
takos whoami
takos logout

Endpoint Switching

takos endpoint use test
takos endpoint use prod
takos endpoint use https://api.takos.dev
takos endpoint show

takos login without --api-url uses the endpoint saved by takos endpoint use ....

Task-Oriented Commands

takos no longer exposes api direct-call commands. Use domain + task verbs.

# Workspace tasks
takos workspace list
takos workspace create --body '{"name":"my-workspace"}'
takos workspace view /WORKSPACE_ID/members

# Repository tasks
takos repo list
takos repo create --body '{"name":"my-repo"}'
takos repo update /REPO_ID --body '{"description":"updated"}'

# Thread / run tasks
takos thread create /THREAD_ID/messages --body '{"content":"hello"}'
takos run list /THREAD_ID

# App deploy
takos deploy --space SPACE_ID --repo REPO_ID --ref main
takos deploy validate
takos deploy status --space SPACE_ID
takos deploy rollback APP_DEPLOYMENT_ID --space SPACE_ID

Common task verbs:

  • list
  • view
  • create
  • replace
  • update
  • remove
  • probe (HEAD)
  • describe (OPTIONS)

Streaming (WebSocket + SSE)

# Generic stream watcher on stream-capable domains
takos run watch /RUN_ID/ws --transport ws
takos run watch /RUN_ID/events --transport sse

# Dedicated run follow task
takos run follow RUN_ID --transport ws
takos run follow RUN_ID --transport sse --last-event-id 0

# GitHub Actions-compatible run stream (now under repo)
takos repo follow REPO_ID RUN_ID --transport ws

Domains

Available domains include:

  • me, setup, workspace (ws), project, thread, run, artifact, task
  • repo, worker, app, resource, git
  • capability (cap), context (ctx), shortcut, notification
  • public-share, auth, discover

Consolidated domains (old names show a redirect with migration guidance):

  • pr, actions merged into repo
  • memory, reminder merged into context
  • skill, tool merged into capability
  • oauth merged into auth
  • search, install merged into discover

Request Options

For request tasks (list/view/create/replace/update/remove/probe/describe):

  • --query key=value (repeatable)
  • --header key=value (repeatable)
  • --body <json> / --body-file <path>
  • --raw-body <text> / --raw-body-file <path>
  • --form key=value (repeatable)
  • --form-file key=path (repeatable)
  • --workspace <id>
  • --output <path>
  • --json

For stream tasks (watch/follow):

  • --transport ws|sse
  • --query key=value (repeatable)
  • --header key=value (repeatable)
  • --workspace <id>
  • --json
  • --last-event-id <id> (SSE)
  • --send <message> (WebSocket, repeatable)

Removed Legacy Commands

The following are removed intentionally:

  • takos api ...
  • Domain HTTP-verb style subcommands (get/post/put/patch/delete/head/options/call/sse/ws)
  • Old legacy command groups (takos workers, takos apps, takos resources)

App Deploy Contract

takos deploy is the canonical repo-local app deploy flow.

  • Source of truth: .takos/app.yml
  • Build model: deploy references latest successful workflow artifact defined in app.yml
  • Deploy request: repo_id + ref + ref_type to /api/spaces/:spaceId/app-deployments
  • Internal transport: control-plane generated internal package

Container Mode

When running inside a Takos session container, authentication is automatic via:

  • TAKOS_SESSION_ID
  • TAKOS_WORKSPACE_ID
  • TAKOS_API_URL

Configuration

Credentials are stored in ~/.takos/config.json.

License

GNU AGPL v3