Skills
- adiact list, adiact search <query>
- adiact pull <slug>, adiact use <slug>
- adiact save <path> with tags, visibility, collection and dry-run
Adiact docs / CLI
End-to-end guide based on the Adiact CLI reference: install, authenticate, save skills, publish bundles, activate versions, sync across machines, and configure MCP clients.
Step 1
Install the published npm package and use adiact globally right away.
Step 2
Use API token login once and keep credentials in secure keychain storage.
Step 3
Publish versions, activate in workspace, then sync local and remote safely.
# Install from npm registry
npm install -g adiact-cli
# Verify installation
adiact --helpThis installs the published CLI package and exposes adiact globally.
adiact login
adiact login --token adiact_xxxxxxxx
adiact logoutGet your token from dashboard Settings > API Token.
# 1) Login
adiact login --token YOUR_TOKEN
# 2) Save local skill content (file or folder with SKILL.md)
adiact save ./my-skill --tags ops,deploy --visibility PRIVATE
# 3) Upload and publish a versioned bundle
adiact upload my-skill ./my-skill --version 1.0.0
adiact publish my-skill VERSION_ID
# 4) Activate the version in your workspace
adiact activate my-skill VERSION_ID
# 5) Sync between local and cloud
adiact sync --pro
# 6) Generate MCP config for your agent
adiact mcp -a cursor -o .cursor/mcp.jsonUse strict semantic versioning: patch for fixes, minor for backward compatible features, major for breaking changes.