This is the smallest public example project for JYRY Command Center (jyry-command-center).
It is intentionally simple:
- local-file based
- no live JYRY repo dependency
- uses the public
genericprofile path first - demonstrates bootstrap, parser, tracker, and dashboard flow
docs/roadmap.mddocs/submission-checklist.mddocs/manifesto.md
From the jyry-command-center repo root:
npm run bootstrap -- --project ./examples/minimal-command-center-projectThat generates .env with:
COMMAND_CENTER_PROFILE=genericCOMMAND_CENTER_PROJECT_ROOTpointed at this example projectCOMMAND_CENTER_TASKS_DOC=docs/roadmap.md- default public doc paths for checklist and manifesto
- no
JYRY_PROJECT_ROOTentry
If you want to inspect the generated env first, add --output-env-file /tmp/command-center.env.
- Run
npm run tracker:guard:status. - Dry-run the parser before any write:
npm run tracker:parse:project-tasks:dry-runThe dry-run output should include Parser/source pairing: generic-markdown:generic.
The public generic path always reads docs/roadmap.md as the task source for the tracker.
- Write the tracker:
npm run tracker:parse:project-tasks- Start the desktop app.
JYRY remains the compatibility profile for existing installs.
This example is the public walkthrough and should not require JYRY_PROJECT_ROOT, jyry-tracker.json, or a sibling JYRY checkout.
The tracker written by the public path is stamped with parser_id=generic-markdown and parser_profile=generic.
The legacy tracker:parse:jyry-tasks alias still exists for compatibility, but new users should follow the public tracker:parse:project-tasks path first.