Workspace Git Config Tools

SkillSecurity

Lets your agent set up Git identity and credentials in the workspace, like usernames, tokens, and SSH keys.

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the Workspace Git Config Tools skill

About this capability

Workspace Git identity and credential management. ALWAYS invoke this skill when the user asks about configuring Git user info, adding HTTPS tokens, importing SSH keys, or managing workspace-level Git authentication.

What this skill tells your AI

The instructions your AI receives, as published by yaoapp/yao in tools/skills/yao-workspace-config/SKILL.md and read by ahel’s review.

Manage workspace-level Git configuration, HTTPS credentials, and SSH keys.

workspace_git_config

Get or set workspace-level Git configuration values.

# Get all config
tai tool workspace_git_config '{"workspace_id":"ws-xxx","action":"get"}'

# Get specific key
tai tool workspace_git_config '{"workspace_id":"ws-xxx","action":"get","key":"user.name"}'

# Set config
tai tool workspace_git_config '{"workspace_id":"ws-xxx","action":"set","key":"user.name","value":"John"}'
ParameterTypeRequiredDescription
workspace_idstringyesWorkspace ID
actionstringyesget or set
keystringnoConfig key (e.g. user.name). Empty returns all.
valuestringfor setConfig value

workspace_git_credential

Manage HTTPS Git credentials (personal access tokens).

# Set credential
tai tool workspace_git_credential '{"workspace_id":"ws-xxx","action":"set","host":"github.com","token":"ghp_xxx"}'

# List credentials (tokens are not exposed)
tai tool workspace_git_credential '{"workspace_id":"ws-xxx","action":"list"}'

# Delete credential
tai tool workspace_git_credential '{"workspace_id":"ws-xxx","action":"delete","host":"github.com"}'
ParameterTypeRequiredDescription
workspace_idstringyesWorkspace ID
actionstringyesset, list, or delete
hoststringfor set/deleteGit host (e.g. github.com)
usernamestringnoUsername (defaults to x-access-token)
tokenstringfor setAccess token

workspace_ssh_key

Manage SSH keys for Git authentication.

# Import SSH key
tai tool workspace_ssh_key '{"workspace_id":"ws-xxx","action":"import","name":"github","private_key":"-----BEGIN...","host":"github.com"}'

# List SSH keys (private keys not exposed)
tai tool workspace_ssh_key '{"workspace_id":"ws-xxx","action":"list"}'

# Delete SSH key
tai tool workspace_ssh_key '{"workspace_id":"ws-xxx","action":"delete","name":"github"}'
ParameterTypeRequiredDescription
workspace_idstringyesWorkspace ID
actionstringyesimport, list, or delete
namestringfor import/deleteKey name
private_keystringfor importPEM-encoded private key
public_keystringnoPublic key (derived from private_key if omitted)
hoststringnoGit host to associate (e.g. github.com)

Signals

GitHub stars
8k
Forks
708
Last commit
Sep 2026
Advanced
Catalog kind
skill
Gateway key
yao-workspace-config
Source
github.com/yaoapp/yao