NPX Usage
After the package is published, you can use AIProfile without cloning the repository:
bash
npx --yes --ignore-scripts=false aiprofile setup-model
npx --yes --ignore-scripts=false aiprofile serveThe --ignore-scripts=false flag is intentional. It avoids missing native bindings when your user or environment npm config disables install scripts.
Create an owner grant
bash
npx --yes --ignore-scripts=false aiprofile auth grant add \
--subject owner \
--preset owner-fullUse the printed one-time approval code when your MCP client opens the AIProfile OAuth authorization page.
Export and import memory
bash
npx --yes --ignore-scripts=false aiprofile memory export --format jsonl
npx --yes --ignore-scripts=false aiprofile memory import memory-backup.mdIf npx reports an unsupported Node.js version, use Node.js 22 or later.