Command Code Studio

Studio is the home for managing your Command Code workspace. It gives you a single place to view and control your profile, taste packages, API keys, usage, billing, settings, and more.

When you sign in to Command Code, you’ll land in Studio. Use the left sidebar to move between sections.

At the top, Studio gives you a real-time usage, tokens, and runs with instant access to Billing, API Keys, and detailed Usage analytics.

Studio also includes a lightweight getting started panel with the Command Code CLI. Install, authenticate, and start chat sessions right from your terminal.

Taste Studio is used to manage your taste preferences. You can manage them via npx taste commands.

You can use Taste Studio to:

  • View Taste Profile: See your taste categories (cli, react, typescript)
  • Push taste profiles: Use npx taste push to push taste to studio
  • Pull taste profiles: Use npx taste pull to pull taste from studio
  • Team management: Invite org members to share @teammate-username/taste
1

Push taste profile to the Command Code Studio

You can push a taste profile to the Command Code Studio to share it with your team.

Push a taste profile

npx taste push
2

View all taste profiles

Navigate to the Taste tab in the Studio to see all your taste profiles.

3

Pull a taste

You can pull a taste profile from the Command Code Studio to your different projects.

Pull a taste profile

npx taste pull
4

Explore your taste profile

Click on a taste profile to explore it. This shows you the taste profile's details, the taste.md file, and the confidence scores.

For the full taste workflow and the npx taste command reference, see the Taste docs.

Track your usage for every single request you make in Command Code.

1

Usage Tab

Navigate to the Usage tab in the Studio to see your usage. This shows you the total cost, and the total number of tokens used for each request.

2

Usage Details

Click on a request to see the usage details. This shows you the each request's usage, the total cost, and the total number of tokens used.

For plans, credits, and per-model rates, see Pricing & Limits.

API Keys are used to authenticate you for using Command Code.

How to get your API key

You can get your API key by following these steps:

1

Login

Login to your account on Command Code.

2

Navigate

Navigate to your API keys page.

3

Generate

Click on the Generate API key button to generate a new API key.

4

Manage

From here you can manage your existing API keys.

Using the API key in Provider API

You can utilize the same API key to access the Command Code Provider API. Read the provider API reference here.

Using the API key in CI

For non-interactive environments (CI pipelines, Docker images, scheduled jobs), export the Command Code API key as the COMMAND_CODE_API_KEY environment variable. The CLI reads the env var at startup and uses it as the auth token. No need to run cmd auth login or pre-write an auth.json file to login with Command Code.

export COMMAND_CODE_API_KEY="" # add your API key here cmd "Run my workflow" # already logged in

The env var takes precedence over ~/.commandcode/auth.json. It overrides any local authentication method.

Run cmd auth status to confirm the output which will show Source: $COMMAND_CODE_API_KEY when the env var is the active credential.

Treat the key as a secret: use your CI provider's encrypted-secrets store (GitHub Actions secrets, GitLab CI variables, etc.) rather than committing it to the repo.

Organizations let you group users, projects, and resources into a shared Command Code workspace. They’re built for teams so you can collaborate, manage, and track team-level usage and billing in one place.

Each organization has its own profile, taste studio, API keys, usage & billing, and, settings. You can switch between organizations anytime to work across different teams or projects.

Create an organization

  1. Click your profile avatar in the top-right corner of Studio.
  2. Select Create Organization.
  3. Enter a name and description.
  4. Click Create.

You’ll be redirected to the organization’s profile page, where you can configure taste preferences, manage API keys, review usage and billing, and update settings.

Invite members

  1. Open your organization.
  2. Go to Settings.
  3. Scroll down to Members.
  4. Enter the email addresses of the people you want to invite.
  5. Click Add Member.

Invited members will receive an email with instructions to join your organization.

  • Read the Quickstart to get up and running with Command Code in minutes.
  • Set up and share your Taste profile.
  • Join our Discord community for feedback, requests, and support.