Skip to content

Quickstart

Terminal window
genaug auth login
genaug launch \
--app-root . \
--project-name "Commerce App" \
--project-slug commerce-app \
--issuer-url https://app.example.com \
--jwks-url https://app.example.com/.well-known/jwks.json \
--audience commerce-app \
--user-id-claim sub \
--callback-base-url https://app.example.com \
--env-file .env.local \
--wait

launch creates or links the Project, commits its app-backend contract, installs one shared Candidate runtime key into the ignored server environment file, and verifies the binding.

Terminal window
genaug capability import openapi orders \
--spec ./orders.openapi.json \
--operation listOrders=orders.read \
--operation cancelOrder=orders.cancel \
--credential orders-api
genaug credential set orders-api --from-env ORDERS_API_KEY
genaug memory namespace create user-memory --scope user
Terminal window
genaug agent create support \
--purpose "Help signed-in customers manage their orders" \
--soul ./agents/support/SOUL.md \
--skill ./skills/order-support/SKILL.md \
--capability orders.read \
--capability orders.cancel \
--memory user-memory:read-write \
--connection app-backend \
--wait
Terminal window
genaug user link customer_123 --provider app
genaug agent test support --user customer_123 --json
genaug run show <run-id>

The test runs on General Augment infrastructure and produces immutable evidence for the exact Candidate, Agent, and app user.

Terminal window
genaug release diff <release-id>
genaug dashboard open

Workspace owners/admins may also run genaug release promote <release-id> from a freshly authenticated interactive terminal and confirm the complete fingerprint.

Terminal window
genaug agent create sales-assistant \
--purpose "Help customers choose products" \
--soul ./agents/sales/SOUL.md \
--skill ./skills/sales/SKILL.md \
--capability orders.read \
--memory user-memory:read \
--connection app-backend

The second Agent reuses the existing capability, credential, namespace, connection, and Project runtime key. Nothing is reinstalled.