- Re-run
npm run bootstrap -- --project /absolute/path/to/project. - Use
--output-env-file /tmp/command-center.envif you want to inspect the generated config before replacing.env. - Run
npm run tracker:guard:statusto confirm the resolved project root, profile, and tracker path.
- For the public
genericprofile, bootstrap now scaffolds starter versions of:docs/roadmap.mddocs/manifesto.md
- Replace the starter roadmap tasks with your real milestone plan before serious build work.
- Check
COMMAND_CENTER_TRACKER_FILEin.env. - Run
npm run tracker:guard:status. - For public installs, the expected default is
command-center-tracker.json. - For JYRY compatibility installs,
jyry-tracker.jsonremains valid and may be preferred when it already exists.
- In
scripts/parse-markdown.mjs,--profilemeans parser profile, not consumer profile. - The markdown parser supports both
genericandjyryparser profiles. Use the package aliases instead of swapping flags manually. - For public installs, keep
COMMAND_CENTER_PROFILE=genericand use the public alias names unchanged. - Use the public parser alias for public installs:
npm run tracker:parse:project-tasks. - Use the compatibility aliases only when you intentionally want the JYRY compatibility wrapper names:
npm run tracker:parse:jyry-tasksandnpm run tracker:parse:jyry-roadmap. - ACI flows remain explicit:
npm run tracker:parse:aci-roadmapandnpm run tracker:seed:aci. - If a public tracker was created before the generic parser cleanup, rerun
npm run tracker:parse:project-tasks:dry-runand thennpm run tracker:parse:project-tasksto restamp it withgeneric-markdown:generic.
If tracker:guard:status resolves the live sibling JYRY tracker, script-side writes are blocked by default.
- Dry-run first.
- Only set
COMMAND_CENTER_ALLOW_TRACKER_WRITES=truewhen you intentionally want a compatibility write. - Do not use that override for a fresh external project.
- Run
npm run bootstrap -- --project /absolute/path/to/this-repo/examples/minimal-command-center-project. - Confirm
examples/minimal-command-center-project/docs/roadmap.mdexists. Public generic installs require that file. - Run
npm run tracker:guard:status. - Run
npm run tracker:parse:project-tasks:dry-run. - Confirm the dry-run output includes
Parser/source pairing: generic-markdown:generic. - If that succeeds, run
npm run tracker:parse:project-tasks.
jyry-command-centeris the public CLI alias.jyryis the compatibility alias.- During the transition window, both names can coexist without implying that JYRY is the platform identity.