Skip to main content

sentrix initiative

Create and manage cross-app initiatives.

sentrix initiative

Create and manage cross-app initiatives. Initiatives are high-level goals that group related requirements under a shared objective.

Subcommands#

sentrix initiative new#

Create a new initiative document using AI.

Aliases: write, create

Usage#

bash
sentrix initiative new --description <description>

Options#

FlagTypeRequiredDescription
--descriptionstringYesNatural language description of the initiative.

Example#

bash
sentrix initiative new --description "Improve developer onboarding experience across all apps"

This generates an initiative document at plans/initiatives/<YYYY-MM>/<issue-name>/00-initiative.md and syncs it to the Sentrix API.


sentrix initiative assign#

Link a requirements document to an initiative.

Usage#

bash
sentrix initiative assign --initiative <path> --requirements <path>

Options#

FlagTypeRequiredDescription
--initiativepathYesPath to the initiative file.
--requirementspathYesPath to a directory containing 00-requirements.md, or a direct path to the requirements file.

Requirements in plans/backlog/ cannot be assigned — they must be activated first.

Example#

bash
sentrix initiative assign \
    --initiative plans/initiatives/2026-02/feature-onboarding/00-initiative.md \
    --requirements plans/website/2026-02/feature-guided-tour/

sentrix initiative unassign#

Remove a requirements document from an initiative.

Usage#

bash
sentrix initiative unassign --initiative <path> --requirements <path>

Options#

FlagTypeRequiredDescription
--initiativepathYesPath to the initiative file.
--requirementspathYesPath to a directory containing 00-requirements.md, or a direct path to the requirements file.

Requirements in plans/backlog/ cannot be unassigned — they must be activated first.

Example#

bash
sentrix initiative unassign \
    --initiative plans/initiatives/2026-02/feature-onboarding/00-initiative.md \
    --requirements plans/website/2026-02/feature-guided-tour/

sentrix initiative delete#

Delete an initiative.

Usage#

bash
sentrix initiative delete <target>

Arguments#

ArgumentTypeRequiredDescription
targetpathYesPath to the initiative file.

Without --force, the command fails if the initiative has assigned requirements. With --force, it cascade-deletes the initiative and archives all associated requirements and their plans.

Examples#

Delete an initiative with no assigned requirements:

bash
sentrix initiative delete plans/initiatives/2026-02/feature-onboarding/00-initiative.md

Force-delete an initiative and cascade-archive all associated requirements and plans:

bash
sentrix initiative delete plans/initiatives/2026-02/feature-onboarding/00-initiative.md --force