altimate-setup
GitHub引导用户配置Altimate平台凭据,包括检查现有配置、收集URL和API Key等信息、写入配置文件并设置权限,最后通过工具验证凭据有效性。
Trigger Scenarios
Install
npx skills add AltimateAI/altimate-code --skill altimate-setup -g -y
SKILL.md
Frontmatter
{
"name": "altimate-setup",
"description": "Configure Altimate platform credentials for datamate and API access"
}
Altimate Setup
Guide the user through configuring their Altimate platform credentials.
Steps
-
Check existing config: Read
~/.altimate/altimate.json. If it exists and is valid, show the current config (mask the API key) and ask if they want to update it. -
Gather credentials: Ask the user for:
- Altimate URL (default:
https://api.myaltimate.com) - Instance name (their tenant/org name, e.g.
megatenant) - API key (from Altimate platform settings)
- MCP server URL (optional, default:
https://mcpserver.getaltimate.com/sse)
- Altimate URL (default:
-
Write config: Create
~/.altimate/directory if needed, then write~/.altimate/altimate.json:{ "altimateUrl": "<url>", "altimateInstanceName": "<instance>", "altimateApiKey": "<key>", "mcpServerUrl": "<mcp-url>" }Then set permissions to owner-only:
chmod 600 ~/.altimate/altimate.json -
Validate: Call the
datamate_managertool withoperation: "list"to verify the credentials work. Report success or failure to the user.
Version History
- 8c9a9a8 Current 2026-07-25 06:35


