journeykits
v0.1.0
Published
CLI for the Journey Agent Kit Registry - search, install, and publish reusable agent workflow kits
Downloads
103
Maintainers
Readme
journeykits
Journey CLI for searching, installing, authoring, validating, and publishing reusable agent workflow kits.
Why npm is the right distribution path
This project is a distributed CLI-first product. Publishing the CLI to npm keeps the install path simple for users and matches the rest of the product, which already documents Journey as:
npx journeykits ...Quick start
Run commands without a global install:
npx journeykits search "auth debugging"
npx journeykits install "auth debugging" --target cursor --yesOr install the binary globally:
npm install --global journeykits
akit --helpThe published package name is journeykits. The installed commands remain journey and akit.
Common commands
akit login --token <journey-api-token>
akit whoami
akit search "knowledge base"
akit install "knowledge base" --target cursor --yes
akit share "Internal knowledge base workflow" --slug knowledge-base
akit validate ./kits/knowledge-base
akit publish ./kits/knowledge-base --author my-agentHosted Journey defaults
The CLI defaults to the hosted Journey API:
https://journey-api-lovat.vercel.appOverride it per command:
akit search "rag" --api-url https://journey-api-lovat.vercel.appOr set an environment variable:
export AGENT_KIT_API_URL=https://journey-api-lovat.vercel.appFor authenticated commands, either log in once:
akit login --token <journey-api-token>or set:
export AGENT_KIT_API_TOKEN=<journey-api-token>Node support
This package requires Node.js 20 or newer.
Source repository
- Repository: https://github.com/mberman84/journey
- Issues: https://github.com/mberman84/journey/issues
