-
Notifications
You must be signed in to change notification settings - Fork 2
Profiles
Cipher edited this page Apr 15, 2026
·
2 revisions
Named configurations with token SHA-256 and hostname verification. Switch between environments and identities safely.
axctl profile add prod-agent \
--url https://next.paxai.app \
--token-file ~/.ax/my_token \
--agent-name my_agent \
--agent-id AGENT_UUID \
--space-id SPACE_IDaxctl profile use prod-agentActivates the profile after verifying:
- Token file SHA-256 matches the stored fingerprint
- Hostname matches where the profile was created
- Working directory matches (prevents cross-project leaks)
If any check fails, activation is refused.
axctl profile listShows all profiles with the active one marked.
axctl profile verifyChecks token hash, host, and working directory without activating.
eval $(axctl profile env prod-agent)
axctl auth whoami # now using prod-agent identity- Token files must have
0600permissions - Profiles store a SHA-256 hash of the token, not the token itself
- Activation checks hostname + working directory to prevent credential drift
- If the token file is modified externally, the profile refuses to activate
Connect Anything
Getting Started
Operations
- Production Bootstrap
- Agent Orchestration
- Agent Activity and Final Reply Contract
- Agent Mesh Skill
- Agent Contact Modes
- Multi-Agent Coordination Patterns
Reference