Quickstart
Use this page to get from a clean repository to a tracked, verified item.
Agent Quick Context
- Start with
pm init. - Create items with enough metadata to route work, then enrich later.
- Claim before implementation.
- Link changed files, docs, and tests to the item.
- Close only after evidence is recorded.
- Use
pm install guide-shell --projectbeforepm guide quickstartorpm guide workflowswhen you need local docs routing.
Tracked documentation work: pm-u9d0.
Install
npm install -g @unbrained/pm-cli
pm --version
For updates, use the registry package again:
pm upgrade --cli-only
pm upgrade uses npm install -g @unbrained/pm-cli@latest for the CLI/SDK and can also refresh installed pm packages. Do not use the GitHub git URL as the normal global update path. If a previous git-sourced install left a stale pm shim, run pm upgrade --cli-only --repair, run bash scripts/install.sh --repair from a checkout, or uninstall the package before reinstalling from npm.
For one-off use:
npx --yes @unbrained/pm-cli@latest --help
Optional first-party packages are installable during init or on demand:
pm init --defaults --with-packages
pm package catalog --project
pm install '*' --project
pm install all --project
pm package doctor --project --detail summary
Initialize a Repository
pm init
pm init --defaults --type-preset agile
pm health --check-only
pm init --agent-guidance status
pm init --agent-guidance add
pm init creates .agents/pm/ with settings, item folders, history, locks, search cache directories, and project extension storage.
When AGENTS/CLAUDE guidance is missing, default pm init uses --agent-guidance ask: it prompts only in TTY, never blocks non-interactive runs, and records declined prompts.
Use pm init --agent-guidance add to write the compact workflow block later, or pm init --agent-guidance status to inspect guidance state without changing files.
Use pm init --defaults --with-packages when agents should get bundled commands such as calendar, templates, advanced search, and governance helpers in one non-interactive setup step.
Use pm init --type-preset agile|ops|research when a fresh project should start with domain item types such as Story/Spike, Incident/Runbook, or Experiment/Hypothesis.
Create Your First Item
Use strict create mode when all required fields are ready. Use progressive mode for staged triage.
pm create \
--title "Add restore retry logging" \
--description "Restore should explain stale lock retry behavior." \
--type Task \
--status open \
--priority 1 \
--tags "restore,locks" \
--ac "Retry logs are visible and regression coverage passes." \
--create-mode progressive
Useful item types:
| Type | Use |
|---|---|
Epic |
broad outcome or initiative |
Feature |
user-facing capability or major slice |
Task |
implementation work |
Issue |
bug or defect |
Decision |
recorded choice and rationale |
Event, Reminder, Milestone, Meeting |
calendar-aware planning |
Find and Claim Work
pm context --limit 10
pm search "restore lock retry" --limit 10
pm list-open --limit 20
pm claim <item-id>
pm update <item-id> --status in_progress --message "Start implementation"
pm update <item-id> --add-tags urgent,backend
Do not create a duplicate item until context, search, and list commands show no relevant active item.
--tags replaces the whole tag list; use --add-tags <value> to add tags without replacing them and --remove-tags <value> to prune them (both on update/update-many; create supports --add-tags). On create/update/update-many, --expected/--actual are short aliases for --expected-result/--actual-result.
Link Work Artifacts
pm files <item-id> --add path=src/core/lock/lock.ts,note="implementation"
pm docs <item-id> --add path=docs/ARCHITECTURE.md,note="design context"
pm test <item-id> --add command="node scripts/run-tests.mjs test -- tests/unit/lock.spec.ts",timeout_seconds=240
Use node scripts/run-tests.mjs ... for linked tests so tracker data is sandboxed.
Record Evidence and Close
pm test <item-id> --run --progress
pm comments <item-id> "Evidence: linked lock regression passed."
pm close <item-id> "Acceptance criteria met; linked regression passed." --validate-close warn
pm release <item-id>
For broad readiness checks:
pnpm build
node scripts/run-tests.mjs coverage
pm validate --check-resolution --check-history-drift
Next Pages
- Agent Guide for the full canonical workflow.
- Command Reference for command families and examples.
- Configuration for output, storage, search, and validation settings.
- Testing for sandbox and linked-test details.