Skills give your agents new capabilities. Browse the catalog, pick what you need, and install with a single command.
Featured
Create and configure a GitHub App so the assistant can push commits, open PRs, and comment under its own bot identity. Use when the user wants the assistant to have its own GitHub identity, or when setting up git push access for the first time.
assistant skills install vellum-github-app-setupThis skill creates a GitHub App under a GitHub organization, giving the assistant its own bot identity for git operations. After setup, commits, PRs, and comments will attribute to <app-name>[bot] instead of the user's personal account.
Total manual effort: 7 interactions — Continue to GitHub → Create App → 3 secure credential prompts → Install on repo → (optional) upload avatar. Everything else is automated.
Note: This skill currently supports GitHub organizations only, not personal accounts.
contents:write, pull_requests:write, checks:read, metadata:read)bin/gh-app-token.mjs (in the workspace root) for refreshing auth tokensassistant credentials CLI must be availablebun in the container (for the token helper script)Run the manifest flow script on the user's host machine (it needs to open a browser and catch a localhost callback):
python3 scripts/create-github-app.py \
--org=ORG_NAME \
--name=APP_NAME \
--url="https://example.com" \
--output=/tmp/github-app-credentials.json
This starts a local server on localhost:29170, opens the browser, and guides the user through two clicks:
The callback server catches the redirect and exchanges the code for credentials automatically. The credentials JSON is saved to --output.
Important manifest details (learned the hard way):
hook_attributes MUST include a nested url field, even if webhooks are disabled. Without it, GitHub rejects the manifest with a misleading "url" wasn't supplied error — it's not about the top-level url.<input type="text"> (not hidden) with the value set via JSON.stringify() in JavaScript.state query parameter must be included on the form action URL.redirect_url must point to the local callback server.The credentials JSON from Step 1 lives on the user's host. Store the non-secret identifier fields inline, then collect the secret fields from the user via the secure prompt.
Non-secret fields — read them from the credentials JSON and store them inline. These values come from the manifest API exchange (never typed or pasted by the user), so pass --generated:
assistant credentials set --service github-app --field app_id "APP_ID" --generated
assistant credentials set --service github-app --field app_slug "APP_SLUG" --generated
assistant credentials set --service github-app --field client_id "CLIENT_ID" --generated
Secret fields (client_secret, webhook_secret, and the private key) — never read these into the conversation, ask for them in chat, or pass them inline to assistant credentials set (the CLI refuses inline user-supplied secrets). Collect each one with assistant credentials prompt — a secure input whose value never enters the chat transcript — and have the user copy the values out of the credentials JSON on their host:
assistant credentials prompt --service github-app --field client_secret \
--label "GitHub App Client Secret" \
--description "Copy the client_secret value from the credentials JSON (e.g. /tmp/github-app-credentials.json)"
assistant credentials prompt --service github-app --field webhook_secret \
--label "GitHub App Webhook Secret" \
--description "Copy the webhook_secret value from the credentials JSON"
For the PEM (private key), the secure prompt input is single-line — pasting a multi-line key strips its newlines and the mangled key fails JWT signing. Have the user base64-encode the key to a single line on their host and paste that into the secure prompt. It is stored as field pem_b64; scripts/gh-app-token.mjs (copied into the workspace in Step 4) is the sole decode site — it reveals and base64-decodes the key internally at JWT-signing time, so the plaintext PEM never appears anywhere. If a step genuinely needs the decoded key in a shell, capture it in a variable — PEM="$(assistant credentials reveal --service github-app --field pem_b64 | base64 -d)" — and never run the reveal|decode pipeline bare: it prints the private key into the transcript, evading every redaction layer. Print the single-line value for copying:
jq -r .pem /tmp/github-app-credentials.json | base64 | tr -d '\n'
assistant credentials prompt --service github-app --field pem_b64 \
--label "GitHub App Private Key (base64-encoded PEM)" \
--description "Paste the single-line output of: jq -r .pem /tmp/github-app-credentials.json | base64 | tr -d '\n'"
Note: The
installation_idcredential is stored in Step 3 after installing the app.
Open the installation page for the user:
https://github.com/apps/APP_SLUG/installations/select_target
The user selects the org, chooses "Only select repositories", picks the target repos, and clicks Install.
After installation, retrieve the installation ID using the app's JWT auth. Generate a JWT from the stored credentials:
// Use the JWT generation logic from gh-app-token.mjs,
// but call /app/installations instead of /access_tokens
const resp = await fetch("https://api.github.com/app/installations", {
headers: {
Authorization: `Bearer ${jwt}`,
Accept: "application/vnd.github+json",
},
});
const installations = await resp.json();
// installations[0].id is the installation ID
Then store it (an API-derived identifier, so --generated applies):
assistant credentials set --service github-app --field installation_id "INSTALLATION_ID" --generated
Copy the token helper to the workspace:
cp scripts/gh-app-token.mjs "$WORKSPACE_ROOT/bin/gh-app-token.mjs"
chmod +x "$WORKSPACE_ROOT/bin/gh-app-token.mjs"
Configure the local repo clone:
cd "$WORKSPACE_ROOT/REPO_NAME"
git config user.name "APP_SLUG[bot]"
git config user.email "APP_ID+APP_SLUG[bot]@users.noreply.github.com"
Before each push, refresh the remote URL with a fresh token (tokens expire after 1 hour):
TOKEN=$(bun "$WORKSPACE_ROOT/bin/gh-app-token.mjs")
git remote set-url origin "https://x-access-token:${TOKEN}@github.com/OWNER/REPO.git"
git push origin BRANCH
The manifest flow does not support setting a logo — there's no field for it and no REST API endpoint. The logo can only be uploaded through the GitHub web UI.
If the assistant has an avatar (typically at data/avatar/avatar-image.png in the workspace root), send it to the user as a chat attachment:
<vellum-attachment source="sandbox" path="data/avatar/avatar-image.png" />
Then direct them to the app settings page to upload it:
https://github.com/organizations/ORG/settings/apps/APP_SLUG
Scroll to "Display information" → "Upload a logo" → drag in the image file → Save.
Test the full flow:
APP_SLUG[bot]Installation tokens expire after 1 hour. The helper script gh-app-token.mjs generates a fresh one each time by:
app_id and pem_b64 from the vault (base64-decoding the key before signing)POST /app/installations/{id}/access_tokensAlways refresh before pushing:
TOKEN=$(bun "$WORKSPACE_ROOT/bin/gh-app-token.mjs")
git remote set-url origin "https://x-access-token:${TOKEN}@github.com/OWNER/REPO.git"
The default permission set covers the full range of actions the assistant may need to perform on a repository:
| Permission | Level | Purpose |
|---|---|---|
contents | write | Push commits, create/delete branches |
pull_requests | write | Open PRs, post PR comments and reviews |
checks | read | Read CI check-run status (e.g. gh pr checks) |
metadata | read | Required by GitHub for all App installations (auto-added) |
All credentials are stored under service: github-app:
| Field | Description | When Set |
|---|---|---|
app_id | Numeric GitHub App ID | Step 2 |
app_slug | URL-friendly app name (e.g. credence-the-bot) | Step 2 |
client_id | OAuth client ID | Step 2 |
client_secret | OAuth client secret | Step 2 |
pem_b64 | Base64-encoded (single-line) RSA private key; decoded at JWT-signing time | Step 2 |
webhook_secret | Webhook verification secret | Step 2 |
installation_id | Numeric installation ID for the org | Step 3 |
The manifest JSON must include hook_attributes.url — a nested URL inside the hook_attributes object. GitHub's error message is misleading; it's not referring to the top-level url field.
Check that all three required credentials are set: app_id, pem_b64, installation_id. Use assistant credentials list --search github-app to verify.
The installation token may have expired (1-hour lifetime). Regenerate with bun bin/gh-app-token.mjs (from the workspace root) and update the remote URL.
The secure prompt input is single-line, so a raw multi-line PEM cannot be pasted into it — newlines are stripped and the mangled key fails JWT signing. Re-store the key base64-encoded as pem_b64 using the procedure in Step 2. Never paste the PEM into chat, write it to a host file the agent reads, pass it inline to assistant credentials set, or run the reveal|decode pipeline bare — those paths leak the key into the transcript.
Another process is using the callback port. Either kill it or pass --port=DIFFERENT_PORT to the creation script.
The manifest flow script currently only supports organization-owned apps (it uses the /organizations/{org}/settings/apps/new endpoint). Personal account apps would use /settings/apps/new instead — this is not yet implemented.