asc projects

Create, manage, and switch between projects.

asc projects list

List all projects in your account.

Usagebash
asc projects list
# Output:
# ID NAME APP STORE ID PLAY STORE PKG
# proj_abc123 My Awesome App 123456789 com.example.app
# proj_def456 Another App 987654321 com.example.other
# * proj_ghi789 Current Project 555555555 com.example.current

asc projects create

Create a new project.

Usagebash
# Interactive creation
asc projects create
# With options
asc projects create --name "My New App" --appstore-id 123456789
# Full example
asc projects create \
--name "My New App" \
--appstore-id 123456789 \
--playstore-pkg com.example.newapp

Options

OptionDescription
--name, -nProject name (required)
--appstore-idApp Store app ID
--playstore-pkgPlay Store package name

asc projects use

Set the active project for subsequent commands.

Usagebash
# By project ID
asc projects use proj_abc123
# By project name
asc projects use "My Awesome App"
# Verify current project
asc projects current

asc projects info

Show detailed information about a project.

Usagebash
asc projects info proj_abc123
# Output:
# Project: My Awesome App
# ID: proj_abc123
#
# App Store:
# App ID: 123456789
# Status: Connected
# Locales: 12
#
# Play Store:
# Package: com.example.app
# Status: Connected
# Locales: 12
#
# Last Sync: 2024-01-20 14:30:00

asc projects delete

Delete a project. This removes all metadata and settings.

Usagebash
# With confirmation prompt
asc projects delete proj_abc123
# Skip confirmation (use with caution)
asc projects delete proj_abc123 --force