@neuralworklabs/artifactos-cli
v0.1.1
Published
Agent-friendly command line interface for ArtifactOS.
Maintainers
Readme
ArtifactOS CLI
Agent-friendly CLI for ArtifactOS. It uses the same /api/v1 surface as external
integrations and emits JSON for automation.
Install
npx @neuralworklabs/artifactos-cli --help
npm install -g @neuralworklabs/artifactos-cliAuthenticate
Use an API token from Agent access:
artifactos login --token artifactos_pat_xxxOr create a CLI token from email/password:
artifactos login --email [email protected]Non-interactive environments can use:
export ARTIFACTOS_TOKEN=artifactos_pat_xxxThe CLI always connects to https://artifactos.dev/.
Commands
artifactos whoami
artifactos workspace list
artifactos workspace bootstrap
artifactos folder list
artifactos folder create agent-tasks
artifactos artifact list
artifactos artifact create notes.md --folder <folder-id> --body "# Notes"
artifactos artifact create --file ./brief.md --folder-label agent-tasks --create-folder
artifactos artifact get <artifact-id>
artifactos artifact get <artifact-id> --raw
artifactos artifact update <artifact-id> --file ./brief.md
artifactos artifact share <artifact-id>
artifactos activity get
artifactos api GET /api/v1/meConfig is stored at $XDG_CONFIG_HOME/artifactos/config.json or
~/.config/artifactos/config.json with mode 0600. Flags override environment,
and environment overrides config.
