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

@easytocloud/claude-personae

v0.2.4

Published

CLI to switch Claude Code provider presets (AWS Bedrock / Anthropic / proxy) — companion to the Claude Code Personae VS Code extension. Operates on the same ~/.claude profile store.

Downloads

577

Readme

claude-personae (ccp)

A small CLI to switch Claude Code provider presets from the shell — the headless companion to the Claude Code Personae VS Code extension.

It operates on the same profile store the extension uses (~/.claude/coder-profiles.json) and writes the same Claude Code config files, so a preset you author in the GUI can be switched from a terminal — over SSH, inside a devcontainer, or from a script.

Authoring stays in the GUI. Create and edit providers, presets, MCP groups and directory groups in the VS Code extension. This CLI is for the operate verbs: switch, apply, sync, list, current, export, import.

Install

npm install -g @easytocloud/claude-personae

Provides two commands: claude-personae and the short alias ccp.

Usage

ccp <command> [options]

| Command | Description | |---|---| | ccp list [presets\|providers\|scopes] | List configured items (default: all). --json for machine output. | | ccp current | Show the active global + workspace preset. | | ccp switch <preset> [scope] | Set the active preset and write the config files. | | ccp apply | Re-apply the global + current-workspace scopes (reprovision a machine / fresh checkout). | | ccp sync | Re-apply every known workspace assignment — propagate a changed preset everywhere. --dry-run previews without writing. | | ccp export | Print the store as JSON with credentials scrubbed (-o <file> to write). | | ccp import <file\|-> | Import a store (--mode merge | replace). - reads stdin. |

Scope (for switch)

By default switch sets the global preset. To target a project instead:

| Flag | Effect | |---|---| | --global, -g | Set the global preset (default). | | --workspace, -w | Set the preset for a workspace (uses the current directory). | | --path <dir> | Workspace directory to target (implies --workspace). | | --inherit | Workspace inherits the global preset (removes its overrides). | | --manual | Workspace is managed manually (the CLI leaves its files alone). |

Examples

ccp list presets
ccp switch bedrock-prod               # set the global preset
ccp switch dev --workspace            # set a preset for the current project
ccp switch --workspace --inherit      # project goes back to inheriting global
ccp apply                             # rewrite config files for this project
ccp sync                              # re-apply every workspace after editing a preset
ccp sync --dry-run                    # preview what sync would rewrite
ccp export -o presets.json            # share presets (keys replaced with <REPLACE_ME>)
cat presets.json | ccp import - --mode replace

What it writes

  • Global scope~/.claude/settings.json (env vars, allowed directories, awsAuthRefresh/apiKeyHelper) and ~/.claude.json (MCP servers).
  • Workspace scope<dir>/.claude/settings.json and <dir>/.mcp.json (only the keys that differ from global). --inherit removes these so global applies.

Presets are resolved by the exact same engine as the extension, so a Bedrock preset sets CLAUDE_CODE_USE_BEDROCK=1, AWS_PROFILE, AWS_REGION, the model overrides, etc.

License

MIT